summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/miplib-opt1217--27.smt
blob: 4bb2846fe806dc77fa5cebeb44774a717fc8b58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
; COMMAND-LINE: --miplib-trick
; EXPECT: unsat

(benchmark mip_opt1217
:source {
Relaxation of the Mixed-Integer Programming
optimization problem opt1217 from the MIPLIB (http://miplib.zib.de/)
by Enric Rodriguez-Carbonell (erodri@lsi.upc.edu)
}
  :status unsat
  :category { industrial }
  :difficulty { 5 }
  :logic QF_LRA

  :extrafuns ((tmp766 Real))
  :extrafuns ((tmp765 Real))
  :extrafuns ((tmp764 Real))
  :extrafuns ((tmp763 Real))
  :extrafuns ((tmp762 Real))
  :extrafuns ((tmp761 Real))
  :extrafuns ((tmp760 Real))
  :extrafuns ((tmp759 Real))
  :extrafuns ((tmp758 Real))
  :extrafuns ((tmp757 Real))
  :extrafuns ((tmp756 Real))
  :extrafuns ((tmp755 Real))
  :extrafuns ((tmp754 Real))
  :extrafuns ((tmp753 Real))
  :extrafuns ((tmp752 Real))
  :extrafuns ((tmp751 Real))
  :extrafuns ((tmp750 Real))
  :extrafuns ((tmp749 Real))
  :extrafuns ((tmp748 Real))
  :extrafuns ((tmp747 Real))
  :extrafuns ((tmp746 Real))
  :extrafuns ((tmp745 Real))
  :extrafuns ((tmp744 Real))
  :extrafuns ((tmp743 Real))
  :extrafuns ((tmp742 Real))
  :extrafuns ((tmp741 Real))
  :extrafuns ((tmp740 Real))
  :extrafuns ((tmp739 Real))
  :extrafuns ((tmp738 Real))
  :extrafuns ((tmp737 Real))
  :extrafuns ((tmp736 Real))
  :extrafuns ((tmp735 Real))
  :extrafuns ((tmp734 Real))
  :extrafuns ((tmp733 Real))
  :extrafuns ((tmp732 Real))
  :extrafuns ((tmp731 Real))
  :extrafuns ((tmp730 Real))
  :extrafuns ((tmp729 Real))
  :extrafuns ((tmp728 Real))
  :extrafuns ((tmp727 Real))
  :extrafuns ((tmp726 Real))
  :extrafuns ((tmp725 Real))
  :extrafuns ((tmp724 Real))
  :extrafuns ((tmp723 Real))
  :extrafuns ((tmp722 Real))
  :extrafuns ((tmp721 Real))
  :extrafuns ((tmp720 Real))
  :extrafuns ((tmp719 Real))
  :extrafuns ((tmp718 Real))
  :extrafuns ((tmp717 Real))
  :extrafuns ((tmp716 Real))
  :extrafuns ((tmp715 Real))
  :extrafuns ((tmp714 Real))
  :extrafuns ((tmp713 Real))
  :extrafuns ((tmp712 Real))
  :extrafuns ((tmp711 Real))
  :extrafuns ((tmp710 Real))
  :extrafuns ((tmp709 Real))
  :extrafuns ((tmp708 Real))
  :extrafuns ((tmp707 Real))
  :extrafuns ((tmp706 Real))
  :extrafuns ((tmp705 Real))
  :extrafuns ((tmp704 Real))
  :extrafuns ((tmp703 Real))
  :extrafuns ((tmp702 Real))
  :extrafuns ((tmp701 Real))
  :extrafuns ((tmp700 Real))
  :extrafuns ((tmp699 Real))
  :extrafuns ((tmp698 Real))
  :extrafuns ((tmp697 Real))
  :extrafuns ((tmp696 Real))
  :extrafuns ((tmp695 Real))
  :extrafuns ((tmp694 Real))
  :extrafuns ((tmp693 Real))
  :extrafuns ((tmp692 Real))
  :extrafuns ((tmp691 Real))
  :extrafuns ((tmp690 Real))
  :extrafuns ((tmp689 Real))
  :extrafuns ((tmp688 Real))
  :extrafuns ((tmp687 Real))
  :extrafuns ((tmp686 Real))
  :extrafuns ((tmp685 Real))
  :extrafuns ((tmp684 Real))
  :extrafuns ((tmp683 Real))
  :extrafuns ((tmp682 Real))
  :extrafuns ((tmp681 Real))
  :extrafuns ((tmp680 Real))
  :extrafuns ((tmp679 Real))
  :extrafuns ((tmp678 Real))
  :extrafuns ((tmp677 Real))
  :extrafuns ((tmp676 Real))
  :extrafuns ((tmp675 Real))
  :extrafuns ((tmp674 Real))
  :extrafuns ((tmp673 Real))
  :extrafuns ((tmp672 Real))
  :extrafuns ((tmp671 Real))
  :extrafuns ((tmp670 Real))
  :extrafuns ((tmp669 Real))
  :extrafuns ((tmp668 Real))
  :extrafuns ((tmp667 Real))
  :extrafuns ((tmp666 Real))
  :extrafuns ((tmp665 Real))
  :extrafuns ((tmp664 Real))
  :extrafuns ((tmp663 Real))
  :extrafuns ((tmp662 Real))
  :extrafuns ((tmp661 Real))
  :extrafuns ((tmp660 Real))
  :extrafuns ((tmp659 Real))
  :extrafuns ((tmp658 Real))
  :extrafuns ((tmp657 Real))
  :extrafuns ((tmp656 Real))
  :extrafuns ((tmp655 Real))
  :extrafuns ((tmp654 Real))
  :extrafuns ((tmp653 Real))
  :extrafuns ((tmp652 Real))
  :extrafuns ((tmp651 Real))
  :extrafuns ((tmp650 Real))
  :extrafuns ((tmp649 Real))
  :extrafuns ((tmp648 Real))
  :extrafuns ((tmp647 Real))
  :extrafuns ((tmp646 Real))
  :extrafuns ((tmp645 Real))
  :extrafuns ((tmp644 Real))
  :extrafuns ((tmp643 Real))
  :extrafuns ((tmp642 Real))
  :extrafuns ((tmp641 Real))
  :extrafuns ((tmp640 Real))
  :extrafuns ((tmp639 Real))
  :extrafuns ((tmp638 Real))
  :extrafuns ((tmp637 Real))
  :extrafuns ((tmp636 Real))
  :extrafuns ((tmp635 Real))
  :extrafuns ((tmp634 Real))
  :extrafuns ((tmp633 Real))
  :extrafuns ((tmp632 Real))
  :extrafuns ((tmp631 Real))
  :extrafuns ((tmp630 Real))
  :extrafuns ((tmp629 Real))
  :extrafuns ((tmp628 Real))
  :extrafuns ((tmp627 Real))
  :extrafuns ((tmp626 Real))
  :extrafuns ((tmp625 Real))
  :extrafuns ((tmp624 Real))
  :extrafuns ((tmp623 Real))
  :extrafuns ((tmp622 Real))
  :extrafuns ((tmp621 Real))
  :extrafuns ((tmp620 Real))
  :extrafuns ((tmp619 Real))
  :extrafuns ((tmp618 Real))
  :extrafuns ((tmp617 Real))
  :extrafuns ((tmp616 Real))
  :extrafuns ((tmp615 Real))
  :extrafuns ((tmp614 Real))
  :extrafuns ((tmp613 Real))
  :extrafuns ((tmp612 Real))
  :extrafuns ((tmp611 Real))
  :extrafuns ((tmp610 Real))
  :extrafuns ((tmp609 Real))
  :extrafuns ((tmp608 Real))
  :extrafuns ((tmp607 Real))
  :extrafuns ((tmp606 Real))
  :extrafuns ((tmp605 Real))
  :extrafuns ((tmp604 Real))
  :extrafuns ((tmp603 Real))
  :extrafuns ((tmp602 Real))
  :extrafuns ((tmp601 Real))
  :extrafuns ((tmp600 Real))
  :extrafuns ((tmp599 Real))
  :extrafuns ((tmp598 Real))
  :extrafuns ((tmp597 Real))
  :extrafuns ((tmp596 Real))
  :extrafuns ((tmp595 Real))
  :extrafuns ((tmp594 Real))
  :extrafuns ((tmp593 Real))
  :extrafuns ((tmp592 Real))
  :extrafuns ((tmp591 Real))
  :extrafuns ((tmp590 Real))
  :extrafuns ((tmp589 Real))
  :extrafuns ((tmp588 Real))
  :extrafuns ((tmp587 Real))
  :extrafuns ((tmp586 Real))
  :extrafuns ((tmp585 Real))
  :extrafuns ((tmp584 Real))
  :extrafuns ((tmp583 Real))
  :extrafuns ((tmp582 Real))
  :extrafuns ((tmp581 Real))
  :extrafuns ((tmp580 Real))
  :extrafuns ((tmp579 Real))
  :extrafuns ((tmp578 Real))
  :extrafuns ((tmp577 Real))
  :extrafuns ((tmp576 Real))
  :extrafuns ((tmp575 Real))
  :extrafuns ((tmp574 Real))
  :extrafuns ((tmp573 Real))
  :extrafuns ((tmp572 Real))
  :extrafuns ((tmp571 Real))
  :extrafuns ((tmp570 Real))
  :extrafuns ((tmp569 Real))
  :extrafuns ((tmp568 Real))
  :extrafuns ((tmp567 Real))
  :extrafuns ((tmp566 Real))
  :extrafuns ((tmp565 Real))
  :extrafuns ((tmp564 Real))
  :extrafuns ((tmp563 Real))
  :extrafuns ((tmp562 Real))
  :extrafuns ((tmp561 Real))
  :extrafuns ((tmp560 Real))
  :extrafuns ((tmp559 Real))
  :extrafuns ((tmp558 Real))
  :extrafuns ((tmp557 Real))
  :extrafuns ((tmp556 Real))
  :extrafuns ((tmp555 Real))
  :extrafuns ((tmp554 Real))
  :extrafuns ((tmp553 Real))
  :extrafuns ((tmp552 Real))
  :extrafuns ((tmp551 Real))
  :extrafuns ((tmp550 Real))
  :extrafuns ((tmp549 Real))
  :extrafuns ((tmp548 Real))
  :extrafuns ((tmp547 Real))
  :extrafuns ((tmp546 Real))
  :extrafuns ((tmp545 Real))
  :extrafuns ((tmp544 Real))
  :extrafuns ((tmp543 Real))
  :extrafuns ((tmp542 Real))
  :extrafuns ((tmp541 Real))
  :extrafuns ((tmp540 Real))
  :extrafuns ((tmp539 Real))
  :extrafuns ((tmp538 Real))
  :extrafuns ((tmp537 Real))
  :extrafuns ((tmp536 Real))
  :extrafuns ((tmp535 Real))
  :extrafuns ((tmp534 Real))
  :extrafuns ((tmp533 Real))
  :extrafuns ((tmp532 Real))
  :extrafuns ((tmp531 Real))
  :extrafuns ((tmp530 Real))
  :extrafuns ((tmp529 Real))
  :extrafuns ((tmp528 Real))
  :extrafuns ((tmp527 Real))
  :extrafuns ((tmp526 Real))
  :extrafuns ((tmp525 Real))
  :extrafuns ((tmp524 Real))
  :extrafuns ((tmp523 Real))
  :extrafuns ((tmp522 Real))
  :extrafuns ((tmp521 Real))
  :extrafuns ((tmp520 Real))
  :extrafuns ((tmp519 Real))
  :extrafuns ((tmp518 Real))
  :extrafuns ((tmp517 Real))
  :extrafuns ((tmp516 Real))
  :extrafuns ((tmp515 Real))
  :extrafuns ((tmp514 Real))
  :extrafuns ((tmp513 Real))
  :extrafuns ((tmp512 Real))
  :extrafuns ((tmp511 Real))
  :extrafuns ((tmp510 Real))
  :extrafuns ((tmp509 Real))
  :extrafuns ((tmp508 Real))
  :extrafuns ((tmp507 Real))
  :extrafuns ((tmp506 Real))
  :extrafuns ((tmp505 Real))
  :extrafuns ((tmp504 Real))
  :extrafuns ((tmp503 Real))
  :extrafuns ((tmp502 Real))
  :extrafuns ((tmp501 Real))
  :extrafuns ((tmp500 Real))
  :extrafuns ((tmp499 Real))
  :extrafuns ((tmp498 Real))
  :extrafuns ((tmp497 Real))
  :extrafuns ((tmp496 Real))
  :extrafuns ((tmp495 Real))
  :extrafuns ((tmp494 Real))
  :extrafuns ((tmp493 Real))
  :extrafuns ((tmp492 Real))
  :extrafuns ((tmp491 Real))
  :extrafuns ((tmp490 Real))
  :extrafuns ((tmp489 Real))
  :extrafuns ((tmp488 Real))
  :extrafuns ((tmp487 Real))
  :extrafuns ((tmp486 Real))
  :extrafuns ((tmp485 Real))
  :extrafuns ((tmp484 Real))
  :extrafuns ((tmp483 Real))
  :extrafuns ((tmp482 Real))
  :extrafuns ((tmp481 Real))
  :extrafuns ((tmp480 Real))
  :extrafuns ((tmp479 Real))
  :extrafuns ((tmp478 Real))
  :extrafuns ((tmp477 Real))
  :extrafuns ((tmp476 Real))
  :extrafuns ((tmp475 Real))
  :extrafuns ((tmp474 Real))
  :extrafuns ((tmp473 Real))
  :extrafuns ((tmp472 Real))
  :extrafuns ((tmp471 Real))
  :extrafuns ((tmp470 Real))
  :extrafuns ((tmp469 Real))
  :extrafuns ((tmp468 Real))
  :extrafuns ((tmp467 Real))
  :extrafuns ((tmp466 Real))
  :extrafuns ((tmp465 Real))
  :extrafuns ((tmp464 Real))
  :extrafuns ((tmp463 Real))
  :extrafuns ((tmp462 Real))
  :extrafuns ((tmp461 Real))
  :extrafuns ((tmp460 Real))
  :extrafuns ((tmp459 Real))
  :extrafuns ((tmp458 Real))
  :extrafuns ((tmp457 Real))
  :extrafuns ((tmp456 Real))
  :extrafuns ((tmp455 Real))
  :extrafuns ((tmp454 Real))
  :extrafuns ((tmp453 Real))
  :extrafuns ((tmp452 Real))
  :extrafuns ((tmp451 Real))
  :extrafuns ((tmp450 Real))
  :extrafuns ((tmp449 Real))
  :extrafuns ((tmp448 Real))
  :extrafuns ((tmp447 Real))
  :extrafuns ((tmp446 Real))
  :extrafuns ((tmp445 Real))
  :extrafuns ((tmp444 Real))
  :extrafuns ((tmp443 Real))
  :extrafuns ((tmp442 Real))
  :extrafuns ((tmp441 Real))
  :extrafuns ((tmp440 Real))
  :extrafuns ((tmp439 Real))
  :extrafuns ((tmp438 Real))
  :extrafuns ((tmp437 Real))
  :extrafuns ((tmp436 Real))
  :extrafuns ((tmp435 Real))
  :extrafuns ((tmp434 Real))
  :extrafuns ((tmp433 Real))
  :extrafuns ((tmp432 Real))
  :extrafuns ((tmp431 Real))
  :extrafuns ((tmp430 Real))
  :extrafuns ((tmp429 Real))
  :extrafuns ((tmp428 Real))
  :extrafuns ((tmp427 Real))
  :extrafuns ((tmp426 Real))
  :extrafuns ((tmp425 Real))
  :extrafuns ((tmp424 Real))
  :extrafuns ((tmp423 Real))
  :extrafuns ((tmp422 Real))
  :extrafuns ((tmp421 Real))
  :extrafuns ((tmp420 Real))
  :extrafuns ((tmp419 Real))
  :extrafuns ((tmp418 Real))
  :extrafuns ((tmp417 Real))
  :extrafuns ((tmp416 Real))
  :extrafuns ((tmp415 Real))
  :extrafuns ((tmp414 Real))
  :extrafuns ((tmp413 Real))
  :extrafuns ((tmp412 Real))
  :extrafuns ((tmp411 Real))
  :extrafuns ((tmp410 Real))
  :extrafuns ((tmp409 Real))
  :extrafuns ((tmp408 Real))
  :extrafuns ((tmp407 Real))
  :extrafuns ((tmp406 Real))
  :extrafuns ((tmp405 Real))
  :extrafuns ((tmp404 Real))
  :extrafuns ((tmp403 Real))
  :extrafuns ((tmp402 Real))
  :extrafuns ((tmp401 Real))
  :extrafuns ((tmp400 Real))
  :extrafuns ((tmp399 Real))
  :extrafuns ((tmp398 Real))
  :extrafuns ((tmp397 Real))
  :extrafuns ((tmp396 Real))
  :extrafuns ((tmp395 Real))
  :extrafuns ((tmp394 Real))
  :extrafuns ((tmp393 Real))
  :extrafuns ((tmp392 Real))
  :extrafuns ((tmp391 Real))
  :extrafuns ((tmp390 Real))
  :extrafuns ((tmp389 Real))
  :extrafuns ((tmp388 Real))
  :extrafuns ((tmp387 Real))
  :extrafuns ((tmp386 Real))
  :extrafuns ((tmp385 Real))
  :extrafuns ((tmp384 Real))
  :extrafuns ((tmp383 Real))
  :extrafuns ((tmp382 Real))
  :extrafuns ((tmp381 Real))
  :extrafuns ((tmp380 Real))
  :extrafuns ((tmp379 Real))
  :extrafuns ((tmp378 Real))
  :extrafuns ((tmp377 Real))
  :extrafuns ((tmp376 Real))
  :extrafuns ((tmp375 Real))
  :extrafuns ((tmp374 Real))
  :extrafuns ((tmp373 Real))
  :extrafuns ((tmp372 Real))
  :extrafuns ((tmp371 Real))
  :extrafuns ((tmp370 Real))
  :extrafuns ((tmp369 Real))
  :extrafuns ((tmp368 Real))
  :extrafuns ((tmp367 Real))
  :extrafuns ((tmp366 Real))
  :extrafuns ((tmp365 Real))
  :extrafuns ((tmp364 Real))
  :extrafuns ((tmp363 Real))
  :extrafuns ((tmp362 Real))
  :extrafuns ((tmp361 Real))
  :extrafuns ((tmp360 Real))
  :extrafuns ((tmp359 Real))
  :extrafuns ((tmp358 Real))
  :extrafuns ((tmp357 Real))
  :extrafuns ((tmp356 Real))
  :extrafuns ((tmp355 Real))
  :extrafuns ((tmp354 Real))
  :extrafuns ((tmp353 Real))
  :extrafuns ((tmp352 Real))
  :extrafuns ((tmp351 Real))
  :extrafuns ((tmp350 Real))
  :extrafuns ((tmp349 Real))
  :extrafuns ((tmp348 Real))
  :extrafuns ((tmp347 Real))
  :extrafuns ((tmp346 Real))
  :extrafuns ((tmp345 Real))
  :extrafuns ((tmp344 Real))
  :extrafuns ((tmp343 Real))
  :extrafuns ((tmp342 Real))
  :extrafuns ((tmp341 Real))
  :extrafuns ((tmp340 Real))
  :extrafuns ((tmp339 Real))
  :extrafuns ((tmp338 Real))
  :extrafuns ((tmp337 Real))
  :extrafuns ((tmp336 Real))
  :extrafuns ((tmp335 Real))
  :extrafuns ((tmp334 Real))
  :extrafuns ((tmp333 Real))
  :extrafuns ((tmp332 Real))
  :extrafuns ((tmp331 Real))
  :extrafuns ((tmp330 Real))
  :extrafuns ((tmp329 Real))
  :extrafuns ((tmp328 Real))
  :extrafuns ((tmp327 Real))
  :extrafuns ((tmp326 Real))
  :extrafuns ((tmp325 Real))
  :extrafuns ((tmp324 Real))
  :extrafuns ((tmp323 Real))
  :extrafuns ((tmp322 Real))
  :extrafuns ((tmp321 Real))
  :extrafuns ((tmp320 Real))
  :extrafuns ((tmp319 Real))
  :extrafuns ((tmp318 Real))
  :extrafuns ((tmp317 Real))
  :extrafuns ((tmp316 Real))
  :extrafuns ((tmp315 Real))
  :extrafuns ((tmp314 Real))
  :extrafuns ((tmp313 Real))
  :extrafuns ((tmp312 Real))
  :extrafuns ((tmp311 Real))
  :extrafuns ((tmp310 Real))
  :extrafuns ((tmp309 Real))
  :extrafuns ((tmp308 Real))
  :extrafuns ((tmp307 Real))
  :extrafuns ((tmp306 Real))
  :extrafuns ((tmp305 Real))
  :extrafuns ((tmp304 Real))
  :extrafuns ((tmp303 Real))
  :extrafuns ((tmp302 Real))
  :extrafuns ((tmp301 Real))
  :extrafuns ((tmp300 Real))
  :extrafuns ((tmp299 Real))
  :extrafuns ((tmp298 Real))
  :extrafuns ((tmp297 Real))
  :extrafuns ((tmp296 Real))
  :extrafuns ((tmp295 Real))
  :extrafuns ((tmp294 Real))
  :extrafuns ((tmp293 Real))
  :extrafuns ((tmp292 Real))
  :extrafuns ((tmp291 Real))
  :extrafuns ((tmp290 Real))
  :extrafuns ((tmp289 Real))
  :extrafuns ((tmp288 Real))
  :extrafuns ((tmp287 Real))
  :extrafuns ((tmp286 Real))
  :extrafuns ((tmp285 Real))
  :extrafuns ((tmp284 Real))
  :extrafuns ((tmp283 Real))
  :extrafuns ((tmp282 Real))
  :extrafuns ((tmp281 Real))
  :extrafuns ((tmp280 Real))
  :extrafuns ((tmp279 Real))
  :extrafuns ((tmp278 Real))
  :extrafuns ((tmp277 Real))
  :extrafuns ((tmp276 Real))
  :extrafuns ((tmp275 Real))
  :extrafuns ((tmp274 Real))
  :extrafuns ((tmp273 Real))
  :extrafuns ((tmp272 Real))
  :extrafuns ((tmp271 Real))
  :extrafuns ((tmp270 Real))
  :extrafuns ((tmp269 Real))
  :extrafuns ((tmp268 Real))
  :extrafuns ((tmp267 Real))
  :extrafuns ((tmp266 Real))
  :extrafuns ((tmp265 Real))
  :extrafuns ((tmp264 Real))
  :extrafuns ((tmp263 Real))
  :extrafuns ((tmp262 Real))
  :extrafuns ((tmp261 Real))
  :extrafuns ((tmp260 Real))
  :extrafuns ((tmp259 Real))
  :extrafuns ((tmp258 Real))
  :extrafuns ((tmp257 Real))
  :extrafuns ((tmp256 Real))
  :extrafuns ((tmp255 Real))
  :extrafuns ((tmp254 Real))
  :extrafuns ((tmp253 Real))
  :extrafuns ((tmp252 Real))
  :extrafuns ((tmp251 Real))
  :extrafuns ((tmp250 Real))
  :extrafuns ((tmp249 Real))
  :extrafuns ((tmp248 Real))
  :extrafuns ((tmp247 Real))
  :extrafuns ((tmp246 Real))
  :extrafuns ((tmp245 Real))
  :extrafuns ((tmp244 Real))
  :extrafuns ((tmp243 Real))
  :extrafuns ((tmp242 Real))
  :extrafuns ((tmp241 Real))
  :extrafuns ((tmp240 Real))
  :extrafuns ((tmp239 Real))
  :extrafuns ((tmp238 Real))
  :extrafuns ((tmp237 Real))
  :extrafuns ((tmp236 Real))
  :extrafuns ((tmp235 Real))
  :extrafuns ((tmp234 Real))
  :extrafuns ((tmp233 Real))
  :extrafuns ((tmp232 Real))
  :extrafuns ((tmp231 Real))
  :extrafuns ((tmp230 Real))
  :extrafuns ((tmp229 Real))
  :extrafuns ((tmp228 Real))
  :extrafuns ((tmp227 Real))
  :extrafuns ((tmp226 Real))
  :extrafuns ((tmp225 Real))
  :extrafuns ((tmp224 Real))
  :extrafuns ((tmp223 Real))
  :extrafuns ((tmp222 Real))
  :extrafuns ((tmp221 Real))
  :extrafuns ((tmp220 Real))
  :extrafuns ((tmp219 Real))
  :extrafuns ((tmp218 Real))
  :extrafuns ((tmp217 Real))
  :extrafuns ((tmp216 Real))
  :extrafuns ((tmp215 Real))
  :extrafuns ((tmp214 Real))
  :extrafuns ((tmp213 Real))
  :extrafuns ((tmp212 Real))
  :extrafuns ((tmp211 Real))
  :extrafuns ((tmp210 Real))
  :extrafuns ((tmp209 Real))
  :extrafuns ((tmp208 Real))
  :extrafuns ((tmp207 Real))
  :extrafuns ((tmp206 Real))
  :extrafuns ((tmp205 Real))
  :extrafuns ((tmp204 Real))
  :extrafuns ((tmp203 Real))
  :extrafuns ((tmp202 Real))
  :extrafuns ((tmp201 Real))
  :extrafuns ((tmp200 Real))
  :extrafuns ((tmp199 Real))
  :extrafuns ((tmp198 Real))
  :extrafuns ((tmp197 Real))
  :extrafuns ((tmp196 Real))
  :extrafuns ((tmp195 Real))
  :extrafuns ((tmp194 Real))
  :extrafuns ((tmp193 Real))
  :extrafuns ((tmp192 Real))
  :extrafuns ((tmp191 Real))
  :extrafuns ((tmp190 Real))
  :extrafuns ((tmp189 Real))
  :extrafuns ((tmp188 Real))
  :extrafuns ((tmp187 Real))
  :extrafuns ((tmp186 Real))
  :extrafuns ((tmp185 Real))
  :extrafuns ((tmp184 Real))
  :extrafuns ((tmp183 Real))
  :extrafuns ((tmp182 Real))
  :extrafuns ((tmp181 Real))
  :extrafuns ((tmp180 Real))
  :extrafuns ((tmp179 Real))
  :extrafuns ((tmp178 Real))
  :extrafuns ((tmp177 Real))
  :extrafuns ((tmp176 Real))
  :extrafuns ((tmp175 Real))
  :extrafuns ((tmp174 Real))
  :extrafuns ((tmp173 Real))
  :extrafuns ((tmp172 Real))
  :extrafuns ((tmp171 Real))
  :extrafuns ((tmp170 Real))
  :extrafuns ((tmp169 Real))
  :extrafuns ((tmp168 Real))
  :extrafuns ((tmp167 Real))
  :extrafuns ((tmp166 Real))
  :extrafuns ((tmp165 Real))
  :extrafuns ((tmp164 Real))
  :extrafuns ((tmp163 Real))
  :extrafuns ((tmp162 Real))
  :extrafuns ((tmp161 Real))
  :extrafuns ((tmp160 Real))
  :extrafuns ((tmp159 Real))
  :extrafuns ((tmp158 Real))
  :extrafuns ((tmp157 Real))
  :extrafuns ((tmp156 Real))
  :extrafuns ((tmp155 Real))
  :extrafuns ((tmp154 Real))
  :extrafuns ((tmp153 Real))
  :extrafuns ((tmp152 Real))
  :extrafuns ((tmp151 Real))
  :extrafuns ((tmp150 Real))
  :extrafuns ((tmp149 Real))
  :extrafuns ((tmp148 Real))
  :extrafuns ((tmp147 Real))
  :extrafuns ((tmp146 Real))
  :extrafuns ((tmp145 Real))
  :extrafuns ((tmp144 Real))
  :extrafuns ((tmp143 Real))
  :extrafuns ((tmp142 Real))
  :extrafuns ((tmp141 Real))
  :extrafuns ((tmp140 Real))
  :extrafuns ((tmp139 Real))
  :extrafuns ((tmp138 Real))
  :extrafuns ((tmp137 Real))
  :extrafuns ((tmp136 Real))
  :extrafuns ((tmp135 Real))
  :extrafuns ((tmp134 Real))
  :extrafuns ((tmp133 Real))
  :extrafuns ((tmp132 Real))
  :extrafuns ((tmp131 Real))
  :extrafuns ((tmp130 Real))
  :extrafuns ((tmp129 Real))
  :extrafuns ((tmp128 Real))
  :extrafuns ((tmp127 Real))
  :extrafuns ((tmp126 Real))
  :extrafuns ((tmp125 Real))
  :extrafuns ((tmp124 Real))
  :extrafuns ((tmp123 Real))
  :extrafuns ((tmp122 Real))
  :extrafuns ((tmp121 Real))
  :extrafuns ((tmp120 Real))
  :extrafuns ((tmp119 Real))
  :extrafuns ((tmp118 Real))
  :extrafuns ((tmp117 Real))
  :extrafuns ((tmp116 Real))
  :extrafuns ((tmp115 Real))
  :extrafuns ((tmp114 Real))
  :extrafuns ((tmp113 Real))
  :extrafuns ((tmp112 Real))
  :extrafuns ((tmp111 Real))
  :extrafuns ((tmp110 Real))
  :extrafuns ((tmp109 Real))
  :extrafuns ((tmp108 Real))
  :extrafuns ((tmp107 Real))
  :extrafuns ((tmp106 Real))
  :extrafuns ((tmp105 Real))
  :extrafuns ((tmp104 Real))
  :extrafuns ((tmp103 Real))
  :extrafuns ((tmp102 Real))
  :extrafuns ((tmp101 Real))
  :extrafuns ((tmp100 Real))
  :extrafuns ((tmp99 Real))
  :extrafuns ((tmp98 Real))
  :extrafuns ((tmp97 Real))
  :extrafuns ((tmp96 Real))
  :extrafuns ((tmp95 Real))
  :extrafuns ((tmp94 Real))
  :extrafuns ((tmp93 Real))
  :extrafuns ((tmp92 Real))
  :extrafuns ((tmp91 Real))
  :extrafuns ((tmp90 Real))
  :extrafuns ((tmp89 Real))
  :extrafuns ((tmp88 Real))
  :extrafuns ((tmp87 Real))
  :extrafuns ((tmp86 Real))
  :extrafuns ((tmp85 Real))
  :extrafuns ((tmp84 Real))
  :extrafuns ((tmp83 Real))
  :extrafuns ((tmp82 Real))
  :extrafuns ((tmp81 Real))
  :extrafuns ((tmp80 Real))
  :extrafuns ((tmp79 Real))
  :extrafuns ((tmp78 Real))
  :extrafuns ((tmp77 Real))
  :extrafuns ((tmp76 Real))
  :extrafuns ((tmp75 Real))
  :extrafuns ((tmp74 Real))
  :extrafuns ((tmp73 Real))
  :extrafuns ((tmp72 Real))
  :extrafuns ((tmp71 Real))
  :extrafuns ((tmp70 Real))
  :extrafuns ((tmp69 Real))
  :extrafuns ((tmp68 Real))
  :extrafuns ((tmp67 Real))
  :extrafuns ((tmp66 Real))
  :extrafuns ((tmp65 Real))
  :extrafuns ((tmp64 Real))
  :extrafuns ((tmp63 Real))
  :extrafuns ((tmp62 Real))
  :extrafuns ((tmp61 Real))
  :extrafuns ((tmp60 Real))
  :extrafuns ((tmp59 Real))
  :extrafuns ((tmp58 Real))
  :extrafuns ((tmp57 Real))
  :extrafuns ((tmp56 Real))
  :extrafuns ((tmp55 Real))
  :extrafuns ((tmp54 Real))
  :extrafuns ((tmp53 Real))
  :extrafuns ((tmp52 Real))
  :extrafuns ((tmp51 Real))
  :extrafuns ((tmp50 Real))
  :extrafuns ((tmp49 Real))
  :extrafuns ((tmp48 Real))
  :extrafuns ((tmp47 Real))
  :extrafuns ((tmp46 Real))
  :extrafuns ((tmp45 Real))
  :extrafuns ((tmp44 Real))
  :extrafuns ((tmp43 Real))
  :extrafuns ((tmp42 Real))
  :extrafuns ((tmp41 Real))
  :extrafuns ((tmp40 Real))
  :extrafuns ((tmp39 Real))
  :extrafuns ((tmp38 Real))
  :extrafuns ((tmp37 Real))
  :extrafuns ((tmp36 Real))
  :extrafuns ((tmp35 Real))
  :extrafuns ((tmp34 Real))
  :extrafuns ((tmp33 Real))
  :extrafuns ((tmp32 Real))
  :extrafuns ((tmp31 Real))
  :extrafuns ((tmp30 Real))
  :extrafuns ((tmp29 Real))
  :extrafuns ((tmp28 Real))
  :extrafuns ((tmp27 Real))
  :extrafuns ((tmp26 Real))
  :extrafuns ((tmp25 Real))
  :extrafuns ((tmp24 Real))
  :extrafuns ((tmp23 Real))
  :extrafuns ((tmp22 Real))
  :extrafuns ((tmp21 Real))
  :extrafuns ((tmp20 Real))
  :extrafuns ((tmp19 Real))
  :extrafuns ((tmp18 Real))
  :extrafuns ((tmp17 Real))
  :extrafuns ((tmp16 Real))
  :extrafuns ((tmp15 Real))
  :extrafuns ((tmp14 Real))
  :extrafuns ((tmp13 Real))
  :extrafuns ((tmp12 Real))
  :extrafuns ((tmp11 Real))
  :extrafuns ((tmp10 Real))
  :extrafuns ((tmp9 Real))
  :extrafuns ((tmp8 Real))
  :extrafuns ((tmp7 Real))
  :extrafuns ((tmp6 Real))
  :extrafuns ((tmp5 Real))
  :extrafuns ((tmp4 Real))
  :extrafuns ((tmp3 Real))
  :extrafuns ((tmp2 Real))
  :extrafuns ((tmp1 Real))
  :extrafuns ((x1 Real))
  :extrapreds ((x2))
  :extrapreds ((x3))
  :extrapreds ((x4))
  :extrapreds ((x5))
  :extrapreds ((x6))
  :extrapreds ((x7))
  :extrapreds ((x8))
  :extrapreds ((x9))
  :extrapreds ((x10))
  :extrapreds ((x11))
  :extrapreds ((x12))
  :extrapreds ((x13))
  :extrapreds ((x14))
  :extrapreds ((x15))
  :extrapreds ((x16))
  :extrapreds ((x17))
  :extrapreds ((x18))
  :extrapreds ((x19))
  :extrapreds ((x20))
  :extrapreds ((x21))
  :extrapreds ((x22))
  :extrapreds ((x23))
  :extrapreds ((x24))
  :extrapreds ((x25))
  :extrapreds ((x26))
  :extrapreds ((x27))
  :extrapreds ((x28))
  :extrapreds ((x29))
  :extrapreds ((x30))
  :extrapreds ((x31))
  :extrapreds ((x32))
  :extrapreds ((x33))
  :extrapreds ((x34))
  :extrapreds ((x35))
  :extrapreds ((x36))
  :extrapreds ((x37))
  :extrapreds ((x38))
  :extrapreds ((x39))
  :extrapreds ((x40))
  :extrapreds ((x41))
  :extrapreds ((x42))
  :extrapreds ((x43))
  :extrapreds ((x44))
  :extrapreds ((x45))
  :extrapreds ((x46))
  :extrapreds ((x47))
  :extrapreds ((x48))
  :extrapreds ((x49))
  :extrapreds ((x50))
  :extrapreds ((x51))
  :extrapreds ((x52))
  :extrapreds ((x53))
  :extrapreds ((x54))
  :extrapreds ((x55))
  :extrapreds ((x56))
  :extrapreds ((x57))
  :extrapreds ((x58))
  :extrapreds ((x59))
  :extrapreds ((x60))
  :extrapreds ((x61))
  :extrapreds ((x62))
  :extrapreds ((x63))
  :extrapreds ((x64))
  :extrapreds ((x65))
  :extrapreds ((x66))
  :extrapreds ((x67))
  :extrapreds ((x68))
  :extrapreds ((x69))
  :extrapreds ((x70))
  :extrapreds ((x71))
  :extrapreds ((x72))
  :extrapreds ((x73))
  :extrapreds ((x74))
  :extrapreds ((x75))
  :extrapreds ((x76))
  :extrapreds ((x77))
  :extrapreds ((x78))
  :extrapreds ((x79))
  :extrapreds ((x80))
  :extrapreds ((x81))
  :extrapreds ((x82))
  :extrapreds ((x83))
  :extrapreds ((x84))
  :extrapreds ((x85))
  :extrapreds ((x86))
  :extrapreds ((x87))
  :extrapreds ((x88))
  :extrapreds ((x89))
  :extrapreds ((x90))
  :extrapreds ((x91))
  :extrapreds ((x92))
  :extrapreds ((x93))
  :extrapreds ((x94))
  :extrapreds ((x95))
  :extrapreds ((x96))
  :extrapreds ((x97))
  :extrapreds ((x98))
  :extrapreds ((x99))
  :extrapreds ((x100))
  :extrapreds ((x101))
  :extrapreds ((x102))
  :extrapreds ((x103))
  :extrapreds ((x104))
  :extrapreds ((x105))
  :extrapreds ((x106))
  :extrapreds ((x107))
  :extrapreds ((x108))
  :extrapreds ((x109))
  :extrapreds ((x110))
  :extrapreds ((x111))
  :extrapreds ((x112))
  :extrapreds ((x113))
  :extrapreds ((x114))
  :extrapreds ((x115))
  :extrapreds ((x116))
  :extrapreds ((x117))
  :extrapreds ((x118))
  :extrapreds ((x119))
  :extrapreds ((x120))
  :extrapreds ((x121))
  :extrapreds ((x122))
  :extrapreds ((x123))
  :extrapreds ((x124))
  :extrapreds ((x125))
  :extrapreds ((x126))
  :extrapreds ((x127))
  :extrapreds ((x128))
  :extrapreds ((x129))
  :extrapreds ((x130))
  :extrapreds ((x131))
  :extrapreds ((x132))
  :extrapreds ((x133))
  :extrapreds ((x134))
  :extrapreds ((x135))
  :extrapreds ((x136))
  :extrapreds ((x137))
  :extrapreds ((x138))
  :extrapreds ((x139))
  :extrapreds ((x140))
  :extrapreds ((x141))
  :extrapreds ((x142))
  :extrapreds ((x143))
  :extrapreds ((x144))
  :extrapreds ((x145))
  :extrapreds ((x146))
  :extrapreds ((x147))
  :extrapreds ((x148))
  :extrapreds ((x149))
  :extrapreds ((x150))
  :extrapreds ((x151))
  :extrapreds ((x152))
  :extrapreds ((x153))
  :extrapreds ((x154))
  :extrapreds ((x155))
  :extrapreds ((x156))
  :extrapreds ((x157))
  :extrapreds ((x158))
  :extrapreds ((x159))
  :extrapreds ((x160))
  :extrapreds ((x161))
  :extrapreds ((x162))
  :extrapreds ((x163))
  :extrapreds ((x164))
  :extrapreds ((x165))
  :extrapreds ((x166))
  :extrapreds ((x167))
  :extrapreds ((x168))
  :extrapreds ((x169))
  :extrapreds ((x170))
  :extrapreds ((x171))
  :extrapreds ((x172))
  :extrapreds ((x173))
  :extrapreds ((x174))
  :extrapreds ((x175))
  :extrapreds ((x176))
  :extrapreds ((x177))
  :extrapreds ((x178))
  :extrapreds ((x179))
  :extrapreds ((x180))
  :extrapreds ((x181))
  :extrapreds ((x182))
  :extrapreds ((x183))
  :extrapreds ((x184))
  :extrapreds ((x185))
  :extrapreds ((x186))
  :extrapreds ((x187))
  :extrapreds ((x188))
  :extrapreds ((x189))
  :extrapreds ((x190))
  :extrapreds ((x191))
  :extrapreds ((x192))
  :extrapreds ((x193))
  :extrapreds ((x194))
  :extrapreds ((x195))
  :extrapreds ((x196))
  :extrapreds ((x197))
  :extrapreds ((x198))
  :extrapreds ((x199))
  :extrapreds ((x200))
  :extrapreds ((x201))
  :extrapreds ((x202))
  :extrapreds ((x203))
  :extrapreds ((x204))
  :extrapreds ((x205))
  :extrapreds ((x206))
  :extrapreds ((x207))
  :extrapreds ((x208))
  :extrapreds ((x209))
  :extrapreds ((x210))
  :extrapreds ((x211))
  :extrapreds ((x212))
  :extrapreds ((x213))
  :extrapreds ((x214))
  :extrapreds ((x215))
  :extrapreds ((x216))
  :extrapreds ((x217))
  :extrapreds ((x218))
  :extrapreds ((x219))
  :extrapreds ((x220))
  :extrapreds ((x221))
  :extrapreds ((x222))
  :extrapreds ((x223))
  :extrapreds ((x224))
  :extrapreds ((x225))
  :extrapreds ((x226))
  :extrapreds ((x227))
  :extrapreds ((x228))
  :extrapreds ((x229))
  :extrapreds ((x230))
  :extrapreds ((x231))
  :extrapreds ((x232))
  :extrapreds ((x233))
  :extrapreds ((x234))
  :extrapreds ((x235))
  :extrapreds ((x236))
  :extrapreds ((x237))
  :extrapreds ((x238))
  :extrapreds ((x239))
  :extrapreds ((x240))
  :extrapreds ((x241))
  :extrapreds ((x242))
  :extrapreds ((x243))
  :extrapreds ((x244))
  :extrapreds ((x245))
  :extrapreds ((x246))
  :extrapreds ((x247))
  :extrapreds ((x248))
  :extrapreds ((x249))
  :extrapreds ((x250))
  :extrapreds ((x251))
  :extrapreds ((x252))
  :extrapreds ((x253))
  :extrapreds ((x254))
  :extrapreds ((x255))
  :extrapreds ((x256))
  :extrapreds ((x257))
  :extrapreds ((x258))
  :extrapreds ((x259))
  :extrapreds ((x260))
  :extrapreds ((x261))
  :extrapreds ((x262))
  :extrapreds ((x263))
  :extrapreds ((x264))
  :extrapreds ((x265))
  :extrapreds ((x266))
  :extrapreds ((x267))
  :extrapreds ((x268))
  :extrapreds ((x269))
  :extrapreds ((x270))
  :extrapreds ((x271))
  :extrapreds ((x272))
  :extrapreds ((x273))
  :extrapreds ((x274))
  :extrapreds ((x275))
  :extrapreds ((x276))
  :extrapreds ((x277))
  :extrapreds ((x278))
  :extrapreds ((x279))
  :extrapreds ((x280))
  :extrapreds ((x281))
  :extrapreds ((x282))
  :extrapreds ((x283))
  :extrapreds ((x284))
  :extrapreds ((x285))
  :extrapreds ((x286))
  :extrapreds ((x287))
  :extrapreds ((x288))
  :extrapreds ((x289))
  :extrapreds ((x290))
  :extrapreds ((x291))
  :extrapreds ((x292))
  :extrapreds ((x293))
  :extrapreds ((x294))
  :extrapreds ((x295))
  :extrapreds ((x296))
  :extrapreds ((x297))
  :extrapreds ((x298))
  :extrapreds ((x299))
  :extrapreds ((x300))
  :extrapreds ((x301))
  :extrapreds ((x302))
  :extrapreds ((x303))
  :extrapreds ((x304))
  :extrapreds ((x305))
  :extrapreds ((x306))
  :extrapreds ((x307))
  :extrapreds ((x308))
  :extrapreds ((x309))
  :extrapreds ((x310))
  :extrapreds ((x311))
  :extrapreds ((x312))
  :extrapreds ((x313))
  :extrapreds ((x314))
  :extrapreds ((x315))
  :extrapreds ((x316))
  :extrapreds ((x317))
  :extrapreds ((x318))
  :extrapreds ((x319))
  :extrapreds ((x320))
  :extrapreds ((x321))
  :extrapreds ((x322))
  :extrapreds ((x323))
  :extrapreds ((x324))
  :extrapreds ((x325))
  :extrapreds ((x326))
  :extrapreds ((x327))
  :extrapreds ((x328))
  :extrapreds ((x329))
  :extrapreds ((x330))
  :extrapreds ((x331))
  :extrapreds ((x332))
  :extrapreds ((x333))
  :extrapreds ((x334))
  :extrapreds ((x335))
  :extrapreds ((x336))
  :extrapreds ((x337))
  :extrapreds ((x338))
  :extrapreds ((x339))
  :extrapreds ((x340))
  :extrapreds ((x341))
  :extrapreds ((x342))
  :extrapreds ((x343))
  :extrapreds ((x344))
  :extrapreds ((x345))
  :extrapreds ((x346))
  :extrapreds ((x347))
  :extrapreds ((x348))
  :extrapreds ((x349))
  :extrapreds ((x350))
  :extrapreds ((x351))
  :extrapreds ((x352))
  :extrapreds ((x353))
  :extrapreds ((x354))
  :extrapreds ((x355))
  :extrapreds ((x356))
  :extrapreds ((x357))
  :extrapreds ((x358))
  :extrapreds ((x359))
  :extrapreds ((x360))
  :extrapreds ((x361))
  :extrapreds ((x362))
  :extrapreds ((x363))
  :extrapreds ((x364))
  :extrapreds ((x365))
  :extrapreds ((x366))
  :extrapreds ((x367))
  :extrapreds ((x368))
  :extrapreds ((x369))
  :extrapreds ((x370))
  :extrapreds ((x371))
  :extrapreds ((x372))
  :extrapreds ((x373))
  :extrapreds ((x374))
  :extrapreds ((x375))
  :extrapreds ((x376))
  :extrapreds ((x377))
  :extrapreds ((x378))
  :extrapreds ((x379))
  :extrapreds ((x380))
  :extrapreds ((x381))
  :extrapreds ((x382))
  :extrapreds ((x383))
  :extrapreds ((x384))
  :extrapreds ((x385))
  :extrapreds ((x386))
  :extrapreds ((x387))
  :extrapreds ((x388))
  :extrapreds ((x389))
  :extrapreds ((x390))
  :extrapreds ((x391))
  :extrapreds ((x392))
  :extrapreds ((x393))
  :extrapreds ((x394))
  :extrapreds ((x395))
  :extrapreds ((x396))
  :extrapreds ((x397))
  :extrapreds ((x398))
  :extrapreds ((x399))
  :extrapreds ((x400))
  :extrapreds ((x401))
  :extrapreds ((x402))
  :extrapreds ((x403))
  :extrapreds ((x404))
  :extrapreds ((x405))
  :extrapreds ((x406))
  :extrapreds ((x407))
  :extrapreds ((x408))
  :extrapreds ((x409))
  :extrapreds ((x410))
  :extrapreds ((x411))
  :extrapreds ((x412))
  :extrapreds ((x413))
  :extrapreds ((x414))
  :extrapreds ((x415))
  :extrapreds ((x416))
  :extrapreds ((x417))
  :extrapreds ((x418))
  :extrapreds ((x419))
  :extrapreds ((x420))
  :extrapreds ((x421))
  :extrapreds ((x422))
  :extrapreds ((x423))
  :extrapreds ((x424))
  :extrapreds ((x425))
  :extrapreds ((x426))
  :extrapreds ((x427))
  :extrapreds ((x428))
  :extrapreds ((x429))
  :extrapreds ((x430))
  :extrapreds ((x431))
  :extrapreds ((x432))
  :extrapreds ((x433))
  :extrapreds ((x434))
  :extrapreds ((x435))
  :extrapreds ((x436))
  :extrapreds ((x437))
  :extrapreds ((x438))
  :extrapreds ((x439))
  :extrapreds ((x440))
  :extrapreds ((x441))
  :extrapreds ((x442))
  :extrapreds ((x443))
  :extrapreds ((x444))
  :extrapreds ((x445))
  :extrapreds ((x446))
  :extrapreds ((x447))
  :extrapreds ((x448))
  :extrapreds ((x449))
  :extrapreds ((x450))
  :extrapreds ((x451))
  :extrapreds ((x452))
  :extrapreds ((x453))
  :extrapreds ((x454))
  :extrapreds ((x455))
  :extrapreds ((x456))
  :extrapreds ((x457))
  :extrapreds ((x458))
  :extrapreds ((x459))
  :extrapreds ((x460))
  :extrapreds ((x461))
  :extrapreds ((x462))
  :extrapreds ((x463))
  :extrapreds ((x464))
  :extrapreds ((x465))
  :extrapreds ((x466))
  :extrapreds ((x467))
  :extrapreds ((x468))
  :extrapreds ((x469))
  :extrapreds ((x470))
  :extrapreds ((x471))
  :extrapreds ((x472))
  :extrapreds ((x473))
  :extrapreds ((x474))
  :extrapreds ((x475))
  :extrapreds ((x476))
  :extrapreds ((x477))
  :extrapreds ((x478))
  :extrapreds ((x479))
  :extrapreds ((x480))
  :extrapreds ((x481))
  :extrapreds ((x482))
  :extrapreds ((x483))
  :extrapreds ((x484))
  :extrapreds ((x485))
  :extrapreds ((x486))
  :extrapreds ((x487))
  :extrapreds ((x488))
  :extrapreds ((x489))
  :extrapreds ((x490))
  :extrapreds ((x491))
  :extrapreds ((x492))
  :extrapreds ((x493))
  :extrapreds ((x494))
  :extrapreds ((x495))
  :extrapreds ((x496))
  :extrapreds ((x497))
  :extrapreds ((x498))
  :extrapreds ((x499))
  :extrapreds ((x500))
  :extrapreds ((x501))
  :extrapreds ((x502))
  :extrapreds ((x503))
  :extrapreds ((x504))
  :extrapreds ((x505))
  :extrapreds ((x506))
  :extrapreds ((x507))
  :extrapreds ((x508))
  :extrapreds ((x509))
  :extrapreds ((x510))
  :extrapreds ((x511))
  :extrapreds ((x512))
  :extrapreds ((x513))
  :extrapreds ((x514))
  :extrapreds ((x515))
  :extrapreds ((x516))
  :extrapreds ((x517))
  :extrapreds ((x518))
  :extrapreds ((x519))
  :extrapreds ((x520))
  :extrapreds ((x521))
  :extrapreds ((x522))
  :extrapreds ((x523))
  :extrapreds ((x524))
  :extrapreds ((x525))
  :extrapreds ((x526))
  :extrapreds ((x527))
  :extrapreds ((x528))
  :extrapreds ((x529))
  :extrapreds ((x530))
  :extrapreds ((x531))
  :extrapreds ((x532))
  :extrapreds ((x533))
  :extrapreds ((x534))
  :extrapreds ((x535))
  :extrapreds ((x536))
  :extrapreds ((x537))
  :extrapreds ((x538))
  :extrapreds ((x539))
  :extrapreds ((x540))
  :extrapreds ((x541))
  :extrapreds ((x542))
  :extrapreds ((x543))
  :extrapreds ((x544))
  :extrapreds ((x545))
  :extrapreds ((x546))
  :extrapreds ((x547))
  :extrapreds ((x548))
  :extrapreds ((x549))
  :extrapreds ((x550))
  :extrapreds ((x551))
  :extrapreds ((x552))
  :extrapreds ((x553))
  :extrapreds ((x554))
  :extrapreds ((x555))
  :extrapreds ((x556))
  :extrapreds ((x557))
  :extrapreds ((x558))
  :extrapreds ((x559))
  :extrapreds ((x560))
  :extrapreds ((x561))
  :extrapreds ((x562))
  :extrapreds ((x563))
  :extrapreds ((x564))
  :extrapreds ((x565))
  :extrapreds ((x566))
  :extrapreds ((x567))
  :extrapreds ((x568))
  :extrapreds ((x569))
  :extrapreds ((x570))
  :extrapreds ((x571))
  :extrapreds ((x572))
  :extrapreds ((x573))
  :extrapreds ((x574))
  :extrapreds ((x575))
  :extrapreds ((x576))
  :extrapreds ((x577))
  :extrapreds ((x578))
  :extrapreds ((x579))
  :extrapreds ((x580))
  :extrapreds ((x581))
  :extrapreds ((x582))
  :extrapreds ((x583))
  :extrapreds ((x584))
  :extrapreds ((x585))
  :extrapreds ((x586))
  :extrapreds ((x587))
  :extrapreds ((x588))
  :extrapreds ((x589))
  :extrapreds ((x590))
  :extrapreds ((x591))
  :extrapreds ((x592))
  :extrapreds ((x593))
  :extrapreds ((x594))
  :extrapreds ((x595))
  :extrapreds ((x596))
  :extrapreds ((x597))
  :extrapreds ((x598))
  :extrapreds ((x599))
  :extrapreds ((x600))
  :extrapreds ((x601))
  :extrapreds ((x602))
  :extrapreds ((x603))
  :extrapreds ((x604))
  :extrapreds ((x605))
  :extrapreds ((x606))
  :extrapreds ((x607))
  :extrapreds ((x608))
  :extrapreds ((x609))
  :extrapreds ((x610))
  :extrapreds ((x611))
  :extrapreds ((x612))
  :extrapreds ((x613))
  :extrapreds ((x614))
  :extrapreds ((x615))
  :extrapreds ((x616))
  :extrapreds ((x617))
  :extrapreds ((x618))
  :extrapreds ((x619))
  :extrapreds ((x620))
  :extrapreds ((x621))
  :extrapreds ((x622))
  :extrapreds ((x623))
  :extrapreds ((x624))
  :extrapreds ((x625))
  :extrapreds ((x626))
  :extrapreds ((x627))
  :extrapreds ((x628))
  :extrapreds ((x629))
  :extrapreds ((x630))
  :extrapreds ((x631))
  :extrapreds ((x632))
  :extrapreds ((x633))
  :extrapreds ((x634))
  :extrapreds ((x635))
  :extrapreds ((x636))
  :extrapreds ((x637))
  :extrapreds ((x638))
  :extrapreds ((x639))
  :extrapreds ((x640))
  :extrapreds ((x641))
  :extrapreds ((x642))
  :extrapreds ((x643))
  :extrapreds ((x644))
  :extrapreds ((x645))
  :extrapreds ((x646))
  :extrapreds ((x647))
  :extrapreds ((x648))
  :extrapreds ((x649))
  :extrapreds ((x650))
  :extrapreds ((x651))
  :extrapreds ((x652))
  :extrapreds ((x653))
  :extrapreds ((x654))
  :extrapreds ((x655))
  :extrapreds ((x656))
  :extrapreds ((x657))
  :extrapreds ((x658))
  :extrapreds ((x659))
  :extrapreds ((x660))
  :extrapreds ((x661))
  :extrapreds ((x662))
  :extrapreds ((x663))
  :extrapreds ((x664))
  :extrapreds ((x665))
  :extrapreds ((x666))
  :extrapreds ((x667))
  :extrapreds ((x668))
  :extrapreds ((x669))
  :extrapreds ((x670))
  :extrapreds ((x671))
  :extrapreds ((x672))
  :extrapreds ((x673))
  :extrapreds ((x674))
  :extrapreds ((x675))
  :extrapreds ((x676))
  :extrapreds ((x677))
  :extrapreds ((x678))
  :extrapreds ((x679))
  :extrapreds ((x680))
  :extrapreds ((x681))
  :extrapreds ((x682))
  :extrapreds ((x683))
  :extrapreds ((x684))
  :extrapreds ((x685))
  :extrapreds ((x686))
  :extrapreds ((x687))
  :extrapreds ((x688))
  :extrapreds ((x689))
  :extrapreds ((x690))
  :extrapreds ((x691))
  :extrapreds ((x692))
  :extrapreds ((x693))
  :extrapreds ((x694))
  :extrapreds ((x695))
  :extrapreds ((x696))
  :extrapreds ((x697))
  :extrapreds ((x698))
  :extrapreds ((x699))
  :extrapreds ((x700))
  :extrapreds ((x701))
  :extrapreds ((x702))
  :extrapreds ((x703))
  :extrapreds ((x704))
  :extrapreds ((x705))
  :extrapreds ((x706))
  :extrapreds ((x707))
  :extrapreds ((x708))
  :extrapreds ((x709))
  :extrapreds ((x710))
  :extrapreds ((x711))
  :extrapreds ((x712))
  :extrapreds ((x713))
  :extrapreds ((x714))
  :extrapreds ((x715))
  :extrapreds ((x716))
  :extrapreds ((x717))
  :extrapreds ((x718))
  :extrapreds ((x719))
  :extrapreds ((x720))
  :extrapreds ((x721))
  :extrapreds ((x722))
  :extrapreds ((x723))
  :extrapreds ((x724))
  :extrapreds ((x725))
  :extrapreds ((x726))
  :extrapreds ((x727))
  :extrapreds ((x728))
  :extrapreds ((x729))
  :extrapreds ((x730))
  :extrapreds ((x731))
  :extrapreds ((x732))
  :extrapreds ((x733))
  :extrapreds ((x734))
  :extrapreds ((x735))
  :extrapreds ((x736))
  :extrapreds ((x737))
  :extrapreds ((x738))
  :extrapreds ((x739))
  :extrapreds ((x740))
  :extrapreds ((x741))
  :extrapreds ((x742))
  :extrapreds ((x743))
  :extrapreds ((x744))
  :extrapreds ((x745))
  :extrapreds ((x746))
  :extrapreds ((x747))
  :extrapreds ((x748))
  :extrapreds ((x749))
  :extrapreds ((x750))
  :extrapreds ((x751))
  :extrapreds ((x752))
  :extrapreds ((x753))
  :extrapreds ((x754))
  :extrapreds ((x755))
  :extrapreds ((x756))
  :extrapreds ((x757))
  :extrapreds ((x758))
  :extrapreds ((x759))
  :extrapreds ((x760))
  :extrapreds ((x761))
  :extrapreds ((x762))
  :extrapreds ((x763))
  :extrapreds ((x764))
  :extrapreds ((x765))
  :extrapreds ((x766))
  :extrapreds ((x767))
  :extrapreds ((x768))
  :extrapreds ((x769))

  :formula( and
    ( <= ( + 0 ( * (~ 1) x1 ) ) (~ 27) )
    ( = ( + ( + ( * 1 tmp766 ) 0 ) ( + ( * 1 tmp764 ) ( + ( * 1 tmp762 ) ( + ( * 1 tmp760 ) ( + ( * 1 tmp759 ) ( + ( * 1 tmp761 ) ( + ( * 1 tmp763 ) ( + ( * 1 tmp765 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp758 ) 0 ) ( + ( * 1 tmp756 ) ( + ( * 1 tmp754 ) ( + ( * 1 tmp752 ) ( + ( * 1 tmp751 ) ( + ( * 1 tmp753 ) ( + ( * 1 tmp755 ) ( + ( * 1 tmp757 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp750 ) 0 ) ( + ( * 1 tmp748 ) ( + ( * 1 tmp746 ) ( + ( * 1 tmp744 ) ( + ( * 1 tmp743 ) ( + ( * 1 tmp745 ) ( + ( * 1 tmp747 ) ( + ( * 1 tmp749 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp742 ) 0 ) ( + ( * 1 tmp740 ) ( + ( * 1 tmp738 ) ( + ( * 1 tmp736 ) ( + ( * 1 tmp735 ) ( + ( * 1 tmp737 ) ( + ( * 1 tmp739 ) ( + ( * 1 tmp741 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp734 ) 0 ) ( + ( * 1 tmp732 ) ( + ( * 1 tmp730 ) ( + ( * 1 tmp728 ) ( + ( * 1 tmp727 ) ( + ( * 1 tmp729 ) ( + ( * 1 tmp731 ) ( + ( * 1 tmp733 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp726 ) 0 ) ( + ( * 1 tmp724 ) ( + ( * 1 tmp722 ) ( + ( * 1 tmp720 ) ( + ( * 1 tmp719 ) ( + ( * 1 tmp721 ) ( + ( * 1 tmp723 ) ( + ( * 1 tmp725 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp718 ) 0 ) ( + ( * 1 tmp716 ) ( + ( * 1 tmp714 ) ( + ( * 1 tmp712 ) ( + ( * 1 tmp711 ) ( + ( * 1 tmp713 ) ( + ( * 1 tmp715 ) ( + ( * 1 tmp717 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp710 ) 0 ) ( + ( * 1 tmp708 ) ( + ( * 1 tmp706 ) ( + ( * 1 tmp704 ) ( + ( * 1 tmp703 ) ( + ( * 1 tmp705 ) ( + ( * 1 tmp707 ) ( + ( * 1 tmp709 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp702 ) 0 ) ( + ( * 1 tmp700 ) ( + ( * 1 tmp698 ) ( + ( * 1 tmp696 ) ( + ( * 1 tmp695 ) ( + ( * 1 tmp697 ) ( + ( * 1 tmp699 ) ( + ( * 1 tmp701 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp694 ) 0 ) ( + ( * 1 tmp692 ) ( + ( * 1 tmp690 ) ( + ( * 1 tmp688 ) ( + ( * 1 tmp687 ) ( + ( * 1 tmp689 ) ( + ( * 1 tmp691 ) ( + ( * 1 tmp693 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp686 ) 0 ) ( + ( * 1 tmp684 ) ( + ( * 1 tmp682 ) ( + ( * 1 tmp680 ) ( + ( * 1 tmp679 ) ( + ( * 1 tmp681 ) ( + ( * 1 tmp683 ) ( + ( * 1 tmp685 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp678 ) 0 ) ( + ( * 1 tmp676 ) ( + ( * 1 tmp674 ) ( + ( * 1 tmp672 ) ( + ( * 1 tmp671 ) ( + ( * 1 tmp673 ) ( + ( * 1 tmp675 ) ( + ( * 1 tmp677 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp670 ) 0 ) ( + ( * 1 tmp668 ) ( + ( * 1 tmp666 ) ( + ( * 1 tmp664 ) ( + ( * 1 tmp663 ) ( + ( * 1 tmp665 ) ( + ( * 1 tmp667 ) ( + ( * 1 tmp669 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp662 ) 0 ) ( + ( * 1 tmp660 ) ( + ( * 1 tmp658 ) ( + ( * 1 tmp656 ) ( + ( * 1 tmp655 ) ( + ( * 1 tmp657 ) ( + ( * 1 tmp659 ) ( + ( * 1 tmp661 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp654 ) 0 ) ( + ( * 1 tmp652 ) ( + ( * 1 tmp650 ) ( + ( * 1 tmp648 ) ( + ( * 1 tmp647 ) ( + ( * 1 tmp649 ) ( + ( * 1 tmp651 ) ( + ( * 1 tmp653 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp646 ) 0 ) ( + ( * 1 tmp644 ) ( + ( * 1 tmp642 ) ( + ( * 1 tmp640 ) ( + ( * 1 tmp639 ) ( + ( * 1 tmp641 ) ( + ( * 1 tmp643 ) ( + ( * 1 tmp645 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp638 ) 0 ) ( + ( * 1 tmp636 ) ( + ( * 1 tmp634 ) ( + ( * 1 tmp632 ) ( + ( * 1 tmp631 ) ( + ( * 1 tmp633 ) ( + ( * 1 tmp635 ) ( + ( * 1 tmp637 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp630 ) 0 ) ( + ( * 1 tmp628 ) ( + ( * 1 tmp626 ) ( + ( * 1 tmp624 ) ( + ( * 1 tmp623 ) ( + ( * 1 tmp625 ) ( + ( * 1 tmp627 ) ( + ( * 1 tmp629 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp622 ) 0 ) ( + ( * 1 tmp620 ) ( + ( * 1 tmp618 ) ( + ( * 1 tmp616 ) ( + ( * 1 tmp615 ) ( + ( * 1 tmp617 ) ( + ( * 1 tmp619 ) ( + ( * 1 tmp621 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp614 ) 0 ) ( + ( * 1 tmp612 ) ( + ( * 1 tmp610 ) ( + ( * 1 tmp608 ) ( + ( * 1 tmp607 ) ( + ( * 1 tmp609 ) ( + ( * 1 tmp611 ) ( + ( * 1 tmp613 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp606 ) 0 ) ( + ( * 1 tmp604 ) ( + ( * 1 tmp602 ) ( + ( * 1 tmp600 ) ( + ( * 1 tmp599 ) ( + ( * 1 tmp601 ) ( + ( * 1 tmp603 ) ( + ( * 1 tmp605 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp598 ) 0 ) ( + ( * 1 tmp596 ) ( + ( * 1 tmp594 ) ( + ( * 1 tmp592 ) ( + ( * 1 tmp591 ) ( + ( * 1 tmp593 ) ( + ( * 1 tmp595 ) ( + ( * 1 tmp597 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp590 ) 0 ) ( + ( * 1 tmp588 ) ( + ( * 1 tmp586 ) ( + ( * 1 tmp584 ) ( + ( * 1 tmp583 ) ( + ( * 1 tmp585 ) ( + ( * 1 tmp587 ) ( + ( * 1 tmp589 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp582 ) 0 ) ( + ( * 1 tmp580 ) ( + ( * 1 tmp578 ) ( + ( * 1 tmp576 ) ( + ( * 1 tmp575 ) ( + ( * 1 tmp577 ) ( + ( * 1 tmp579 ) ( + ( * 1 tmp581 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp574 ) 0 ) ( + ( * 1 tmp572 ) ( + ( * 1 tmp570 ) ( + ( * 1 tmp568 ) ( + ( * 1 tmp567 ) ( + ( * 1 tmp569 ) ( + ( * 1 tmp571 ) ( + ( * 1 tmp573 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp566 ) 0 ) ( + ( * 1 tmp564 ) ( + ( * 1 tmp562 ) ( + ( * 1 tmp560 ) ( + ( * 1 tmp559 ) ( + ( * 1 tmp561 ) ( + ( * 1 tmp563 ) ( + ( * 1 tmp565 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp558 ) 0 ) ( + ( * 1 tmp556 ) ( + ( * 1 tmp554 ) ( + ( * 1 tmp552 ) ( + ( * 1 tmp551 ) ( + ( * 1 tmp553 ) ( + ( * 1 tmp555 ) ( + ( * 1 tmp557 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp550 ) 0 ) ( + ( * 1 tmp548 ) ( + ( * 1 tmp546 ) ( + ( * 1 tmp544 ) ( + ( * 1 tmp543 ) ( + ( * 1 tmp545 ) ( + ( * 1 tmp547 ) ( + ( * 1 tmp549 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp542 ) 0 ) ( + ( * 1 tmp540 ) ( + ( * 1 tmp538 ) ( + ( * 1 tmp536 ) ( + ( * 1 tmp535 ) ( + ( * 1 tmp537 ) ( + ( * 1 tmp539 ) ( + ( * 1 tmp541 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp534 ) 0 ) ( + ( * 1 tmp532 ) ( + ( * 1 tmp530 ) ( + ( * 1 tmp528 ) ( + ( * 1 tmp527 ) ( + ( * 1 tmp529 ) ( + ( * 1 tmp531 ) ( + ( * 1 tmp533 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp526 ) 0 ) ( + ( * 1 tmp524 ) ( + ( * 1 tmp522 ) ( + ( * 1 tmp520 ) ( + ( * 1 tmp519 ) ( + ( * 1 tmp521 ) ( + ( * 1 tmp523 ) ( + ( * 1 tmp525 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp518 ) 0 ) ( + ( * 1 tmp516 ) ( + ( * 1 tmp514 ) ( + ( * 1 tmp512 ) ( + ( * 1 tmp511 ) ( + ( * 1 tmp513 ) ( + ( * 1 tmp515 ) ( + ( * 1 tmp517 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp510 ) 0 ) ( + ( * 1 tmp508 ) ( + ( * 1 tmp506 ) ( + ( * 1 tmp504 ) ( + ( * 1 tmp503 ) ( + ( * 1 tmp505 ) ( + ( * 1 tmp507 ) ( + ( * 1 tmp509 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp502 ) 0 ) ( + ( * 1 tmp500 ) ( + ( * 1 tmp498 ) ( + ( * 1 tmp496 ) ( + ( * 1 tmp495 ) ( + ( * 1 tmp497 ) ( + ( * 1 tmp499 ) ( + ( * 1 tmp501 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp494 ) 0 ) ( + ( * 1 tmp492 ) ( + ( * 1 tmp490 ) ( + ( * 1 tmp488 ) ( + ( * 1 tmp487 ) ( + ( * 1 tmp489 ) ( + ( * 1 tmp491 ) ( + ( * 1 tmp493 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp486 ) 0 ) ( + ( * 1 tmp484 ) ( + ( * 1 tmp482 ) ( + ( * 1 tmp480 ) ( + ( * 1 tmp479 ) ( + ( * 1 tmp481 ) ( + ( * 1 tmp483 ) ( + ( * 1 tmp485 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp478 ) 0 ) ( + ( * 1 tmp476 ) ( + ( * 1 tmp474 ) ( + ( * 1 tmp472 ) ( + ( * 1 tmp471 ) ( + ( * 1 tmp473 ) ( + ( * 1 tmp475 ) ( + ( * 1 tmp477 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp470 ) 0 ) ( + ( * 1 tmp468 ) ( + ( * 1 tmp466 ) ( + ( * 1 tmp464 ) ( + ( * 1 tmp463 ) ( + ( * 1 tmp465 ) ( + ( * 1 tmp467 ) ( + ( * 1 tmp469 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp462 ) 0 ) ( + ( * 1 tmp460 ) ( + ( * 1 tmp458 ) ( + ( * 1 tmp456 ) ( + ( * 1 tmp455 ) ( + ( * 1 tmp457 ) ( + ( * 1 tmp459 ) ( + ( * 1 tmp461 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp454 ) 0 ) ( + ( * 1 tmp452 ) ( + ( * 1 tmp450 ) ( + ( * 1 tmp448 ) ( + ( * 1 tmp447 ) ( + ( * 1 tmp449 ) ( + ( * 1 tmp451 ) ( + ( * 1 tmp453 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp446 ) 0 ) ( + ( * 1 tmp444 ) ( + ( * 1 tmp442 ) ( + ( * 1 tmp440 ) ( + ( * 1 tmp439 ) ( + ( * 1 tmp441 ) ( + ( * 1 tmp443 ) ( + ( * 1 tmp445 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp438 ) 0 ) ( + ( * 1 tmp436 ) ( + ( * 1 tmp434 ) ( + ( * 1 tmp432 ) ( + ( * 1 tmp431 ) ( + ( * 1 tmp433 ) ( + ( * 1 tmp435 ) ( + ( * 1 tmp437 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp430 ) 0 ) ( + ( * 1 tmp428 ) ( + ( * 1 tmp426 ) ( + ( * 1 tmp424 ) ( + ( * 1 tmp423 ) ( + ( * 1 tmp425 ) ( + ( * 1 tmp427 ) ( + ( * 1 tmp429 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp422 ) 0 ) ( + ( * 1 tmp420 ) ( + ( * 1 tmp418 ) ( + ( * 1 tmp416 ) ( + ( * 1 tmp415 ) ( + ( * 1 tmp417 ) ( + ( * 1 tmp419 ) ( + ( * 1 tmp421 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp414 ) 0 ) ( + ( * 1 tmp412 ) ( + ( * 1 tmp410 ) ( + ( * 1 tmp408 ) ( + ( * 1 tmp407 ) ( + ( * 1 tmp409 ) ( + ( * 1 tmp411 ) ( + ( * 1 tmp413 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp406 ) 0 ) ( + ( * 1 tmp404 ) ( + ( * 1 tmp402 ) ( + ( * 1 tmp400 ) ( + ( * 1 tmp399 ) ( + ( * 1 tmp401 ) ( + ( * 1 tmp403 ) ( + ( * 1 tmp405 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp398 ) 0 ) ( + ( * 1 tmp396 ) ( + ( * 1 tmp394 ) ( + ( * 1 tmp392 ) ( + ( * 1 tmp391 ) ( + ( * 1 tmp393 ) ( + ( * 1 tmp395 ) ( + ( * 1 tmp397 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( = ( + ( + ( * 1 tmp390 ) 0 ) ( + ( * 1 tmp388 ) ( + ( * 1 tmp386 ) ( + ( * 1 tmp384 ) ( + ( * 1 tmp383 ) ( + ( * 1 tmp385 ) ( + ( * 1 tmp387 ) ( + ( * 1 tmp389 ) 0 ) ) ) ) ) ) ) ) 1 )
    ( >= ( + ( + ( * 1 tmp382 ) 0 ) ( + ( * 1 tmp380 ) ( + ( * 1 tmp378 ) ( + ( * 1 tmp376 ) ( + ( * 1 tmp374 ) ( + ( * 1 tmp372 ) ( + ( * 1 tmp370 ) ( + ( * 1 tmp368 ) ( + ( * 1 tmp366 ) ( + ( * 1 tmp364 ) ( + ( * 1 tmp362 ) ( + ( * 1 tmp360 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp359 ) ( + ( * 1 tmp361 ) ( + ( * 1 tmp363 ) ( + ( * 1 tmp365 ) ( + ( * 1 tmp367 ) ( + ( * 1 tmp369 ) ( + ( * 1 tmp371 ) ( + ( * 1 tmp373 ) ( + ( * 1 tmp375 ) ( + ( * 1 tmp377 ) ( + ( * 1 tmp379 ) ( + ( * 1 tmp381 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp358 ) 0 ) ( + ( * 1 tmp356 ) ( + ( * 1 tmp354 ) ( + ( * 1 tmp352 ) ( + ( * 1 tmp350 ) ( + ( * 1 tmp348 ) ( + ( * 1 tmp346 ) ( + ( * 1 tmp344 ) ( + ( * 1 tmp342 ) ( + ( * 1 tmp340 ) ( + ( * 1 tmp338 ) ( + ( * 1 tmp336 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp335 ) ( + ( * 1 tmp337 ) ( + ( * 1 tmp339 ) ( + ( * 1 tmp341 ) ( + ( * 1 tmp343 ) ( + ( * 1 tmp345 ) ( + ( * 1 tmp347 ) ( + ( * 1 tmp349 ) ( + ( * 1 tmp351 ) ( + ( * 1 tmp353 ) ( + ( * 1 tmp355 ) ( + ( * 1 tmp357 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp334 ) 0 ) ( + ( * 1 tmp332 ) ( + ( * 1 tmp330 ) ( + ( * 1 tmp328 ) ( + ( * 1 tmp326 ) ( + ( * 1 tmp324 ) ( + ( * 1 tmp322 ) ( + ( * 1 tmp320 ) ( + ( * 1 tmp318 ) ( + ( * 1 tmp316 ) ( + ( * 1 tmp314 ) ( + ( * 1 tmp312 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp311 ) ( + ( * 1 tmp313 ) ( + ( * 1 tmp315 ) ( + ( * 1 tmp317 ) ( + ( * 1 tmp319 ) ( + ( * 1 tmp321 ) ( + ( * 1 tmp323 ) ( + ( * 1 tmp325 ) ( + ( * 1 tmp327 ) ( + ( * 1 tmp329 ) ( + ( * 1 tmp331 ) ( + ( * 1 tmp333 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp310 ) 0 ) ( + ( * 1 tmp308 ) ( + ( * 1 tmp306 ) ( + ( * 1 tmp304 ) ( + ( * 1 tmp302 ) ( + ( * 1 tmp300 ) ( + ( * 1 tmp298 ) ( + ( * 1 tmp296 ) ( + ( * 1 tmp294 ) ( + ( * 1 tmp292 ) ( + ( * 1 tmp290 ) ( + ( * 1 tmp288 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp287 ) ( + ( * 1 tmp289 ) ( + ( * 1 tmp291 ) ( + ( * 1 tmp293 ) ( + ( * 1 tmp295 ) ( + ( * 1 tmp297 ) ( + ( * 1 tmp299 ) ( + ( * 1 tmp301 ) ( + ( * 1 tmp303 ) ( + ( * 1 tmp305 ) ( + ( * 1 tmp307 ) ( + ( * 1 tmp309 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp286 ) 0 ) ( + ( * 1 tmp284 ) ( + ( * 1 tmp282 ) ( + ( * 1 tmp280 ) ( + ( * 1 tmp278 ) ( + ( * 1 tmp276 ) ( + ( * 1 tmp274 ) ( + ( * 1 tmp272 ) ( + ( * 1 tmp270 ) ( + ( * 1 tmp268 ) ( + ( * 1 tmp266 ) ( + ( * 1 tmp264 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp263 ) ( + ( * 1 tmp265 ) ( + ( * 1 tmp267 ) ( + ( * 1 tmp269 ) ( + ( * 1 tmp271 ) ( + ( * 1 tmp273 ) ( + ( * 1 tmp275 ) ( + ( * 1 tmp277 ) ( + ( * 1 tmp279 ) ( + ( * 1 tmp281 ) ( + ( * 1 tmp283 ) ( + ( * 1 tmp285 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp262 ) 0 ) ( + ( * 1 tmp260 ) ( + ( * 1 tmp258 ) ( + ( * 1 tmp256 ) ( + ( * 1 tmp254 ) ( + ( * 1 tmp252 ) ( + ( * 1 tmp250 ) ( + ( * 1 tmp248 ) ( + ( * 1 tmp246 ) ( + ( * 1 tmp244 ) ( + ( * 1 tmp242 ) ( + ( * 1 tmp240 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp239 ) ( + ( * 1 tmp241 ) ( + ( * 1 tmp243 ) ( + ( * 1 tmp245 ) ( + ( * 1 tmp247 ) ( + ( * 1 tmp249 ) ( + ( * 1 tmp251 ) ( + ( * 1 tmp253 ) ( + ( * 1 tmp255 ) ( + ( * 1 tmp257 ) ( + ( * 1 tmp259 ) ( + ( * 1 tmp261 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp238 ) 0 ) ( + ( * 1 tmp236 ) ( + ( * 1 tmp234 ) ( + ( * 1 tmp232 ) ( + ( * 1 tmp230 ) ( + ( * 1 tmp228 ) ( + ( * 1 tmp226 ) ( + ( * 1 tmp224 ) ( + ( * 1 tmp222 ) ( + ( * 1 tmp220 ) ( + ( * 1 tmp218 ) ( + ( * 1 tmp216 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp215 ) ( + ( * 1 tmp217 ) ( + ( * 1 tmp219 ) ( + ( * 1 tmp221 ) ( + ( * 1 tmp223 ) ( + ( * 1 tmp225 ) ( + ( * 1 tmp227 ) ( + ( * 1 tmp229 ) ( + ( * 1 tmp231 ) ( + ( * 1 tmp233 ) ( + ( * 1 tmp235 ) ( + ( * 1 tmp237 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp214 ) 0 ) ( + ( * 1 tmp212 ) ( + ( * 1 tmp210 ) ( + ( * 1 tmp208 ) ( + ( * 1 tmp206 ) ( + ( * 1 tmp204 ) ( + ( * 1 tmp202 ) ( + ( * 1 tmp200 ) ( + ( * 1 tmp198 ) ( + ( * 1 tmp196 ) ( + ( * 1 tmp194 ) ( + ( * 1 tmp192 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp191 ) ( + ( * 1 tmp193 ) ( + ( * 1 tmp195 ) ( + ( * 1 tmp197 ) ( + ( * 1 tmp199 ) ( + ( * 1 tmp201 ) ( + ( * 1 tmp203 ) ( + ( * 1 tmp205 ) ( + ( * 1 tmp207 ) ( + ( * 1 tmp209 ) ( + ( * 1 tmp211 ) ( + ( * 1 tmp213 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp190 ) 0 ) ( + ( * 1 tmp188 ) ( + ( * 1 tmp186 ) ( + ( * 1 tmp184 ) ( + ( * 1 tmp182 ) ( + ( * 1 tmp180 ) ( + ( * 1 tmp178 ) ( + ( * 1 tmp176 ) ( + ( * 1 tmp174 ) ( + ( * 1 tmp172 ) ( + ( * 1 tmp170 ) ( + ( * 1 tmp168 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp167 ) ( + ( * 1 tmp169 ) ( + ( * 1 tmp171 ) ( + ( * 1 tmp173 ) ( + ( * 1 tmp175 ) ( + ( * 1 tmp177 ) ( + ( * 1 tmp179 ) ( + ( * 1 tmp181 ) ( + ( * 1 tmp183 ) ( + ( * 1 tmp185 ) ( + ( * 1 tmp187 ) ( + ( * 1 tmp189 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp166 ) 0 ) ( + ( * 1 tmp164 ) ( + ( * 1 tmp162 ) ( + ( * 1 tmp160 ) ( + ( * 1 tmp158 ) ( + ( * 1 tmp156 ) ( + ( * 1 tmp154 ) ( + ( * 1 tmp152 ) ( + ( * 1 tmp150 ) ( + ( * 1 tmp148 ) ( + ( * 1 tmp146 ) ( + ( * 1 tmp144 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp143 ) ( + ( * 1 tmp145 ) ( + ( * 1 tmp147 ) ( + ( * 1 tmp149 ) ( + ( * 1 tmp151 ) ( + ( * 1 tmp153 ) ( + ( * 1 tmp155 ) ( + ( * 1 tmp157 ) ( + ( * 1 tmp159 ) ( + ( * 1 tmp161 ) ( + ( * 1 tmp163 ) ( + ( * 1 tmp165 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp142 ) 0 ) ( + ( * 1 tmp140 ) ( + ( * 1 tmp138 ) ( + ( * 1 tmp136 ) ( + ( * 1 tmp134 ) ( + ( * 1 tmp132 ) ( + ( * 1 tmp130 ) ( + ( * 1 tmp128 ) ( + ( * 1 tmp126 ) ( + ( * 1 tmp124 ) ( + ( * 1 tmp122 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp121 ) ( + ( * 1 tmp123 ) ( + ( * 1 tmp125 ) ( + ( * 1 tmp127 ) ( + ( * 1 tmp129 ) ( + ( * 1 tmp131 ) ( + ( * 1 tmp133 ) ( + ( * 1 tmp135 ) ( + ( * 1 tmp137 ) ( + ( * 1 tmp139 ) ( + ( * 1 tmp141 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp120 ) 0 ) ( + ( * 1 tmp118 ) ( + ( * 1 tmp116 ) ( + ( * 1 tmp114 ) ( + ( * 1 tmp112 ) ( + ( * 1 tmp110 ) ( + ( * 1 tmp108 ) ( + ( * 1 tmp106 ) ( + ( * 1 tmp104 ) ( + ( * 1 tmp102 ) ( + ( * 1 tmp100 ) ( + ( * 1 tmp98 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp97 ) ( + ( * 1 tmp99 ) ( + ( * 1 tmp101 ) ( + ( * 1 tmp103 ) ( + ( * 1 tmp105 ) ( + ( * 1 tmp107 ) ( + ( * 1 tmp109 ) ( + ( * 1 tmp111 ) ( + ( * 1 tmp113 ) ( + ( * 1 tmp115 ) ( + ( * 1 tmp117 ) ( + ( * 1 tmp119 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp96 ) 0 ) ( + ( * 1 tmp94 ) ( + ( * 1 tmp92 ) ( + ( * 1 tmp90 ) ( + ( * 1 tmp88 ) ( + ( * 1 tmp86 ) ( + ( * 1 tmp84 ) ( + ( * 1 tmp82 ) ( + ( * 1 tmp80 ) ( + ( * 1 tmp78 ) ( + ( * 1 tmp76 ) ( + ( * 1 tmp74 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp73 ) ( + ( * 1 tmp75 ) ( + ( * 1 tmp77 ) ( + ( * 1 tmp79 ) ( + ( * 1 tmp81 ) ( + ( * 1 tmp83 ) ( + ( * 1 tmp85 ) ( + ( * 1 tmp87 ) ( + ( * 1 tmp89 ) ( + ( * 1 tmp91 ) ( + ( * 1 tmp93 ) ( + ( * 1 tmp95 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp72 ) 0 ) ( + ( * 1 tmp70 ) ( + ( * 1 tmp68 ) ( + ( * 1 tmp66 ) ( + ( * 1 tmp64 ) ( + ( * 1 tmp62 ) ( + ( * 1 tmp60 ) ( + ( * 1 tmp58 ) ( + ( * 1 tmp56 ) ( + ( * 1 tmp54 ) ( + ( * 1 tmp52 ) ( + ( * 1 tmp50 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp49 ) ( + ( * 1 tmp51 ) ( + ( * 1 tmp53 ) ( + ( * 1 tmp55 ) ( + ( * 1 tmp57 ) ( + ( * 1 tmp59 ) ( + ( * 1 tmp61 ) ( + ( * 1 tmp63 ) ( + ( * 1 tmp65 ) ( + ( * 1 tmp67 ) ( + ( * 1 tmp69 ) ( + ( * 1 tmp71 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp48 ) 0 ) ( + ( * 1 tmp46 ) ( + ( * 1 tmp44 ) ( + ( * 1 tmp42 ) ( + ( * 1 tmp40 ) ( + ( * 1 tmp38 ) ( + ( * 1 tmp36 ) ( + ( * 1 tmp34 ) ( + ( * 1 tmp32 ) ( + ( * 1 tmp30 ) ( + ( * 1 tmp28 ) ( + ( * 1 tmp26 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp25 ) ( + ( * 1 tmp27 ) ( + ( * 1 tmp29 ) ( + ( * 1 tmp31 ) ( + ( * 1 tmp33 ) ( + ( * 1 tmp35 ) ( + ( * 1 tmp37 ) ( + ( * 1 tmp39 ) ( + ( * 1 tmp41 ) ( + ( * 1 tmp43 ) ( + ( * 1 tmp45 ) ( + ( * 1 tmp47 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( >= ( + ( + ( * 1 tmp24 ) 0 ) ( + ( * 1 tmp22 ) ( + ( * 1 tmp20 ) ( + ( * 1 tmp18 ) ( + ( * 1 tmp16 ) ( + ( * 1 tmp14 ) ( + ( * 1 tmp12 ) ( + ( * 1 tmp10 ) ( + ( * 1 tmp8 ) ( + ( * 1 tmp6 ) ( + ( * 1 tmp4 ) ( + ( * 1 tmp2 ) ( + ( * (~ 1) x1 ) ( + ( * 1 tmp1 ) ( + ( * 1 tmp3 ) ( + ( * 1 tmp5 ) ( + ( * 1 tmp7 ) ( + ( * 1 tmp9 ) ( + ( * 1 tmp11 ) ( + ( * 1 tmp13 ) ( + ( * 1 tmp15 ) ( + ( * 1 tmp17 ) ( + ( * 1 tmp19 ) ( + ( * 1 tmp21 ) ( + ( * 1 tmp23 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 0 )
    ( <= x1 384 )
    ( >= x1 0 )
    ( implies ( and ( not x474 ) ( and ( not x427 ) true ) ) ( = tmp766 0 ) )
    ( implies ( and ( not x474 ) ( and x427 true ) ) ( = tmp766 1 ) )
    ( implies ( and x474 ( and ( not x427 ) true ) ) ( = tmp766 1 ) )
    ( implies ( and x474 ( and x427 true ) ) ( = tmp766 2 ) )
    ( implies ( and ( not x331 ) ( and ( not x379 ) true ) ) ( = tmp765 0 ) )
    ( implies ( and ( not x331 ) ( and x379 true ) ) ( = tmp765 1 ) )
    ( implies ( and x331 ( and ( not x379 ) true ) ) ( = tmp765 1 ) )
    ( implies ( and x331 ( and x379 true ) ) ( = tmp765 2 ) )
    ( implies ( and ( not x569 ) ( and ( not x521 ) true ) ) ( = tmp764 0 ) )
    ( implies ( and ( not x569 ) ( and x521 true ) ) ( = tmp764 1 ) )
    ( implies ( and x569 ( and ( not x521 ) true ) ) ( = tmp764 1 ) )
    ( implies ( and x569 ( and x521 true ) ) ( = tmp764 2 ) )
    ( implies ( and ( not x239 ) ( and ( not x283 ) true ) ) ( = tmp763 0 ) )
    ( implies ( and ( not x239 ) ( and x283 true ) ) ( = tmp763 1 ) )
    ( implies ( and x239 ( and ( not x283 ) true ) ) ( = tmp763 1 ) )
    ( implies ( and x239 ( and x283 true ) ) ( = tmp763 2 ) )
    ( implies ( and ( not x664 ) ( and ( not x616 ) true ) ) ( = tmp762 0 ) )
    ( implies ( and ( not x664 ) ( and x616 true ) ) ( = tmp762 1 ) )
    ( implies ( and x664 ( and ( not x616 ) true ) ) ( = tmp762 1 ) )
    ( implies ( and x664 ( and x616 true ) ) ( = tmp762 2 ) )
    ( implies ( and ( not x143 ) ( and ( not x191 ) true ) ) ( = tmp761 0 ) )
    ( implies ( and ( not x143 ) ( and x191 true ) ) ( = tmp761 1 ) )
    ( implies ( and x143 ( and ( not x191 ) true ) ) ( = tmp761 1 ) )
    ( implies ( and x143 ( and x191 true ) ) ( = tmp761 2 ) )
    ( implies ( and ( not x759 ) ( and ( not x711 ) true ) ) ( = tmp760 0 ) )
    ( implies ( and ( not x759 ) ( and x711 true ) ) ( = tmp760 1 ) )
    ( implies ( and x759 ( and ( not x711 ) true ) ) ( = tmp760 1 ) )
    ( implies ( and x759 ( and x711 true ) ) ( = tmp760 2 ) )
    ( implies ( and ( not x48 ) ( and ( not x96 ) true ) ) ( = tmp759 0 ) )
    ( implies ( and ( not x48 ) ( and x96 true ) ) ( = tmp759 1 ) )
    ( implies ( and x48 ( and ( not x96 ) true ) ) ( = tmp759 1 ) )
    ( implies ( and x48 ( and x96 true ) ) ( = tmp759 2 ) )
    ( implies ( and ( not x473 ) ( and ( not x426 ) true ) ) ( = tmp758 0 ) )
    ( implies ( and ( not x473 ) ( and x426 true ) ) ( = tmp758 1 ) )
    ( implies ( and x473 ( and ( not x426 ) true ) ) ( = tmp758 1 ) )
    ( implies ( and x473 ( and x426 true ) ) ( = tmp758 2 ) )
    ( implies ( and ( not x330 ) ( and ( not x378 ) true ) ) ( = tmp757 0 ) )
    ( implies ( and ( not x330 ) ( and x378 true ) ) ( = tmp757 1 ) )
    ( implies ( and x330 ( and ( not x378 ) true ) ) ( = tmp757 1 ) )
    ( implies ( and x330 ( and x378 true ) ) ( = tmp757 2 ) )
    ( implies ( and ( not x568 ) ( and ( not x520 ) true ) ) ( = tmp756 0 ) )
    ( implies ( and ( not x568 ) ( and x520 true ) ) ( = tmp756 1 ) )
    ( implies ( and x568 ( and ( not x520 ) true ) ) ( = tmp756 1 ) )
    ( implies ( and x568 ( and x520 true ) ) ( = tmp756 2 ) )
    ( implies ( and ( not x238 ) ( and ( not x282 ) true ) ) ( = tmp755 0 ) )
    ( implies ( and ( not x238 ) ( and x282 true ) ) ( = tmp755 1 ) )
    ( implies ( and x238 ( and ( not x282 ) true ) ) ( = tmp755 1 ) )
    ( implies ( and x238 ( and x282 true ) ) ( = tmp755 2 ) )
    ( implies ( and ( not x663 ) ( and ( not x615 ) true ) ) ( = tmp754 0 ) )
    ( implies ( and ( not x663 ) ( and x615 true ) ) ( = tmp754 1 ) )
    ( implies ( and x663 ( and ( not x615 ) true ) ) ( = tmp754 1 ) )
    ( implies ( and x663 ( and x615 true ) ) ( = tmp754 2 ) )
    ( implies ( and ( not x142 ) ( and ( not x190 ) true ) ) ( = tmp753 0 ) )
    ( implies ( and ( not x142 ) ( and x190 true ) ) ( = tmp753 1 ) )
    ( implies ( and x142 ( and ( not x190 ) true ) ) ( = tmp753 1 ) )
    ( implies ( and x142 ( and x190 true ) ) ( = tmp753 2 ) )
    ( implies ( and ( not x758 ) ( and ( not x710 ) true ) ) ( = tmp752 0 ) )
    ( implies ( and ( not x758 ) ( and x710 true ) ) ( = tmp752 1 ) )
    ( implies ( and x758 ( and ( not x710 ) true ) ) ( = tmp752 1 ) )
    ( implies ( and x758 ( and x710 true ) ) ( = tmp752 2 ) )
    ( implies ( and ( not x47 ) ( and ( not x95 ) true ) ) ( = tmp751 0 ) )
    ( implies ( and ( not x47 ) ( and x95 true ) ) ( = tmp751 1 ) )
    ( implies ( and x47 ( and ( not x95 ) true ) ) ( = tmp751 1 ) )
    ( implies ( and x47 ( and x95 true ) ) ( = tmp751 2 ) )
    ( implies ( and ( not x472 ) ( and ( not x425 ) true ) ) ( = tmp750 0 ) )
    ( implies ( and ( not x472 ) ( and x425 true ) ) ( = tmp750 1 ) )
    ( implies ( and x472 ( and ( not x425 ) true ) ) ( = tmp750 1 ) )
    ( implies ( and x472 ( and x425 true ) ) ( = tmp750 2 ) )
    ( implies ( and ( not x329 ) ( and ( not x377 ) true ) ) ( = tmp749 0 ) )
    ( implies ( and ( not x329 ) ( and x377 true ) ) ( = tmp749 1 ) )
    ( implies ( and x329 ( and ( not x377 ) true ) ) ( = tmp749 1 ) )
    ( implies ( and x329 ( and x377 true ) ) ( = tmp749 2 ) )
    ( implies ( and ( not x567 ) ( and ( not x519 ) true ) ) ( = tmp748 0 ) )
    ( implies ( and ( not x567 ) ( and x519 true ) ) ( = tmp748 1 ) )
    ( implies ( and x567 ( and ( not x519 ) true ) ) ( = tmp748 1 ) )
    ( implies ( and x567 ( and x519 true ) ) ( = tmp748 2 ) )
    ( implies ( and ( not x237 ) ( and ( not x281 ) true ) ) ( = tmp747 0 ) )
    ( implies ( and ( not x237 ) ( and x281 true ) ) ( = tmp747 1 ) )
    ( implies ( and x237 ( and ( not x281 ) true ) ) ( = tmp747 1 ) )
    ( implies ( and x237 ( and x281 true ) ) ( = tmp747 2 ) )
    ( implies ( and ( not x662 ) ( and ( not x614 ) true ) ) ( = tmp746 0 ) )
    ( implies ( and ( not x662 ) ( and x614 true ) ) ( = tmp746 1 ) )
    ( implies ( and x662 ( and ( not x614 ) true ) ) ( = tmp746 1 ) )
    ( implies ( and x662 ( and x614 true ) ) ( = tmp746 2 ) )
    ( implies ( and ( not x141 ) ( and ( not x189 ) true ) ) ( = tmp745 0 ) )
    ( implies ( and ( not x141 ) ( and x189 true ) ) ( = tmp745 1 ) )
    ( implies ( and x141 ( and ( not x189 ) true ) ) ( = tmp745 1 ) )
    ( implies ( and x141 ( and x189 true ) ) ( = tmp745 2 ) )
    ( implies ( and ( not x757 ) ( and ( not x709 ) true ) ) ( = tmp744 0 ) )
    ( implies ( and ( not x757 ) ( and x709 true ) ) ( = tmp744 1 ) )
    ( implies ( and x757 ( and ( not x709 ) true ) ) ( = tmp744 1 ) )
    ( implies ( and x757 ( and x709 true ) ) ( = tmp744 2 ) )
    ( implies ( and ( not x46 ) ( and ( not x94 ) true ) ) ( = tmp743 0 ) )
    ( implies ( and ( not x46 ) ( and x94 true ) ) ( = tmp743 1 ) )
    ( implies ( and x46 ( and ( not x94 ) true ) ) ( = tmp743 1 ) )
    ( implies ( and x46 ( and x94 true ) ) ( = tmp743 2 ) )
    ( implies ( and ( not x471 ) ( and ( not x424 ) true ) ) ( = tmp742 0 ) )
    ( implies ( and ( not x471 ) ( and x424 true ) ) ( = tmp742 1 ) )
    ( implies ( and x471 ( and ( not x424 ) true ) ) ( = tmp742 1 ) )
    ( implies ( and x471 ( and x424 true ) ) ( = tmp742 2 ) )
    ( implies ( and ( not x328 ) ( and ( not x376 ) true ) ) ( = tmp741 0 ) )
    ( implies ( and ( not x328 ) ( and x376 true ) ) ( = tmp741 1 ) )
    ( implies ( and x328 ( and ( not x376 ) true ) ) ( = tmp741 1 ) )
    ( implies ( and x328 ( and x376 true ) ) ( = tmp741 2 ) )
    ( implies ( and ( not x566 ) ( and ( not x518 ) true ) ) ( = tmp740 0 ) )
    ( implies ( and ( not x566 ) ( and x518 true ) ) ( = tmp740 1 ) )
    ( implies ( and x566 ( and ( not x518 ) true ) ) ( = tmp740 1 ) )
    ( implies ( and x566 ( and x518 true ) ) ( = tmp740 2 ) )
    ( implies ( and ( not x236 ) ( and ( not x280 ) true ) ) ( = tmp739 0 ) )
    ( implies ( and ( not x236 ) ( and x280 true ) ) ( = tmp739 1 ) )
    ( implies ( and x236 ( and ( not x280 ) true ) ) ( = tmp739 1 ) )
    ( implies ( and x236 ( and x280 true ) ) ( = tmp739 2 ) )
    ( implies ( and ( not x661 ) ( and ( not x613 ) true ) ) ( = tmp738 0 ) )
    ( implies ( and ( not x661 ) ( and x613 true ) ) ( = tmp738 1 ) )
    ( implies ( and x661 ( and ( not x613 ) true ) ) ( = tmp738 1 ) )
    ( implies ( and x661 ( and x613 true ) ) ( = tmp738 2 ) )
    ( implies ( and ( not x140 ) ( and ( not x188 ) true ) ) ( = tmp737 0 ) )
    ( implies ( and ( not x140 ) ( and x188 true ) ) ( = tmp737 1 ) )
    ( implies ( and x140 ( and ( not x188 ) true ) ) ( = tmp737 1 ) )
    ( implies ( and x140 ( and x188 true ) ) ( = tmp737 2 ) )
    ( implies ( and ( not x756 ) ( and ( not x708 ) true ) ) ( = tmp736 0 ) )
    ( implies ( and ( not x756 ) ( and x708 true ) ) ( = tmp736 1 ) )
    ( implies ( and x756 ( and ( not x708 ) true ) ) ( = tmp736 1 ) )
    ( implies ( and x756 ( and x708 true ) ) ( = tmp736 2 ) )
    ( implies ( and ( not x45 ) ( and ( not x93 ) true ) ) ( = tmp735 0 ) )
    ( implies ( and ( not x45 ) ( and x93 true ) ) ( = tmp735 1 ) )
    ( implies ( and x45 ( and ( not x93 ) true ) ) ( = tmp735 1 ) )
    ( implies ( and x45 ( and x93 true ) ) ( = tmp735 2 ) )
    ( implies ( and ( not x470 ) ( and ( not x423 ) true ) ) ( = tmp734 0 ) )
    ( implies ( and ( not x470 ) ( and x423 true ) ) ( = tmp734 1 ) )
    ( implies ( and x470 ( and ( not x423 ) true ) ) ( = tmp734 1 ) )
    ( implies ( and x470 ( and x423 true ) ) ( = tmp734 2 ) )
    ( implies ( and ( not x327 ) ( and ( not x375 ) true ) ) ( = tmp733 0 ) )
    ( implies ( and ( not x327 ) ( and x375 true ) ) ( = tmp733 1 ) )
    ( implies ( and x327 ( and ( not x375 ) true ) ) ( = tmp733 1 ) )
    ( implies ( and x327 ( and x375 true ) ) ( = tmp733 2 ) )
    ( implies ( and ( not x565 ) ( and ( not x517 ) true ) ) ( = tmp732 0 ) )
    ( implies ( and ( not x565 ) ( and x517 true ) ) ( = tmp732 1 ) )
    ( implies ( and x565 ( and ( not x517 ) true ) ) ( = tmp732 1 ) )
    ( implies ( and x565 ( and x517 true ) ) ( = tmp732 2 ) )
    ( implies ( and ( not x235 ) ( and ( not x279 ) true ) ) ( = tmp731 0 ) )
    ( implies ( and ( not x235 ) ( and x279 true ) ) ( = tmp731 1 ) )
    ( implies ( and x235 ( and ( not x279 ) true ) ) ( = tmp731 1 ) )
    ( implies ( and x235 ( and x279 true ) ) ( = tmp731 2 ) )
    ( implies ( and ( not x660 ) ( and ( not x612 ) true ) ) ( = tmp730 0 ) )
    ( implies ( and ( not x660 ) ( and x612 true ) ) ( = tmp730 1 ) )
    ( implies ( and x660 ( and ( not x612 ) true ) ) ( = tmp730 1 ) )
    ( implies ( and x660 ( and x612 true ) ) ( = tmp730 2 ) )
    ( implies ( and ( not x139 ) ( and ( not x187 ) true ) ) ( = tmp729 0 ) )
    ( implies ( and ( not x139 ) ( and x187 true ) ) ( = tmp729 1 ) )
    ( implies ( and x139 ( and ( not x187 ) true ) ) ( = tmp729 1 ) )
    ( implies ( and x139 ( and x187 true ) ) ( = tmp729 2 ) )
    ( implies ( and ( not x755 ) ( and ( not x707 ) true ) ) ( = tmp728 0 ) )
    ( implies ( and ( not x755 ) ( and x707 true ) ) ( = tmp728 1 ) )
    ( implies ( and x755 ( and ( not x707 ) true ) ) ( = tmp728 1 ) )
    ( implies ( and x755 ( and x707 true ) ) ( = tmp728 2 ) )
    ( implies ( and ( not x44 ) ( and ( not x92 ) true ) ) ( = tmp727 0 ) )
    ( implies ( and ( not x44 ) ( and x92 true ) ) ( = tmp727 1 ) )
    ( implies ( and x44 ( and ( not x92 ) true ) ) ( = tmp727 1 ) )
    ( implies ( and x44 ( and x92 true ) ) ( = tmp727 2 ) )
    ( implies ( and ( not x469 ) ( and ( not x422 ) true ) ) ( = tmp726 0 ) )
    ( implies ( and ( not x469 ) ( and x422 true ) ) ( = tmp726 1 ) )
    ( implies ( and x469 ( and ( not x422 ) true ) ) ( = tmp726 1 ) )
    ( implies ( and x469 ( and x422 true ) ) ( = tmp726 2 ) )
    ( implies ( and ( not x326 ) ( and ( not x374 ) true ) ) ( = tmp725 0 ) )
    ( implies ( and ( not x326 ) ( and x374 true ) ) ( = tmp725 1 ) )
    ( implies ( and x326 ( and ( not x374 ) true ) ) ( = tmp725 1 ) )
    ( implies ( and x326 ( and x374 true ) ) ( = tmp725 2 ) )
    ( implies ( and ( not x564 ) ( and ( not x516 ) true ) ) ( = tmp724 0 ) )
    ( implies ( and ( not x564 ) ( and x516 true ) ) ( = tmp724 1 ) )
    ( implies ( and x564 ( and ( not x516 ) true ) ) ( = tmp724 1 ) )
    ( implies ( and x564 ( and x516 true ) ) ( = tmp724 2 ) )
    ( implies ( and ( not x234 ) ( and ( not x278 ) true ) ) ( = tmp723 0 ) )
    ( implies ( and ( not x234 ) ( and x278 true ) ) ( = tmp723 1 ) )
    ( implies ( and x234 ( and ( not x278 ) true ) ) ( = tmp723 1 ) )
    ( implies ( and x234 ( and x278 true ) ) ( = tmp723 2 ) )
    ( implies ( and ( not x659 ) ( and ( not x611 ) true ) ) ( = tmp722 0 ) )
    ( implies ( and ( not x659 ) ( and x611 true ) ) ( = tmp722 1 ) )
    ( implies ( and x659 ( and ( not x611 ) true ) ) ( = tmp722 1 ) )
    ( implies ( and x659 ( and x611 true ) ) ( = tmp722 2 ) )
    ( implies ( and ( not x138 ) ( and ( not x186 ) true ) ) ( = tmp721 0 ) )
    ( implies ( and ( not x138 ) ( and x186 true ) ) ( = tmp721 1 ) )
    ( implies ( and x138 ( and ( not x186 ) true ) ) ( = tmp721 1 ) )
    ( implies ( and x138 ( and x186 true ) ) ( = tmp721 2 ) )
    ( implies ( and ( not x754 ) ( and ( not x706 ) true ) ) ( = tmp720 0 ) )
    ( implies ( and ( not x754 ) ( and x706 true ) ) ( = tmp720 1 ) )
    ( implies ( and x754 ( and ( not x706 ) true ) ) ( = tmp720 1 ) )
    ( implies ( and x754 ( and x706 true ) ) ( = tmp720 2 ) )
    ( implies ( and ( not x43 ) ( and ( not x91 ) true ) ) ( = tmp719 0 ) )
    ( implies ( and ( not x43 ) ( and x91 true ) ) ( = tmp719 1 ) )
    ( implies ( and x43 ( and ( not x91 ) true ) ) ( = tmp719 1 ) )
    ( implies ( and x43 ( and x91 true ) ) ( = tmp719 2 ) )
    ( implies ( and ( not x468 ) ( and ( not x421 ) true ) ) ( = tmp718 0 ) )
    ( implies ( and ( not x468 ) ( and x421 true ) ) ( = tmp718 1 ) )
    ( implies ( and x468 ( and ( not x421 ) true ) ) ( = tmp718 1 ) )
    ( implies ( and x468 ( and x421 true ) ) ( = tmp718 2 ) )
    ( implies ( and ( not x325 ) ( and ( not x373 ) true ) ) ( = tmp717 0 ) )
    ( implies ( and ( not x325 ) ( and x373 true ) ) ( = tmp717 1 ) )
    ( implies ( and x325 ( and ( not x373 ) true ) ) ( = tmp717 1 ) )
    ( implies ( and x325 ( and x373 true ) ) ( = tmp717 2 ) )
    ( implies ( and ( not x563 ) ( and ( not x515 ) true ) ) ( = tmp716 0 ) )
    ( implies ( and ( not x563 ) ( and x515 true ) ) ( = tmp716 1 ) )
    ( implies ( and x563 ( and ( not x515 ) true ) ) ( = tmp716 1 ) )
    ( implies ( and x563 ( and x515 true ) ) ( = tmp716 2 ) )
    ( implies ( and ( not x233 ) ( and ( not x277 ) true ) ) ( = tmp715 0 ) )
    ( implies ( and ( not x233 ) ( and x277 true ) ) ( = tmp715 1 ) )
    ( implies ( and x233 ( and ( not x277 ) true ) ) ( = tmp715 1 ) )
    ( implies ( and x233 ( and x277 true ) ) ( = tmp715 2 ) )
    ( implies ( and ( not x658 ) ( and ( not x610 ) true ) ) ( = tmp714 0 ) )
    ( implies ( and ( not x658 ) ( and x610 true ) ) ( = tmp714 1 ) )
    ( implies ( and x658 ( and ( not x610 ) true ) ) ( = tmp714 1 ) )
    ( implies ( and x658 ( and x610 true ) ) ( = tmp714 2 ) )
    ( implies ( and ( not x137 ) ( and ( not x185 ) true ) ) ( = tmp713 0 ) )
    ( implies ( and ( not x137 ) ( and x185 true ) ) ( = tmp713 1 ) )
    ( implies ( and x137 ( and ( not x185 ) true ) ) ( = tmp713 1 ) )
    ( implies ( and x137 ( and x185 true ) ) ( = tmp713 2 ) )
    ( implies ( and ( not x753 ) ( and ( not x705 ) true ) ) ( = tmp712 0 ) )
    ( implies ( and ( not x753 ) ( and x705 true ) ) ( = tmp712 1 ) )
    ( implies ( and x753 ( and ( not x705 ) true ) ) ( = tmp712 1 ) )
    ( implies ( and x753 ( and x705 true ) ) ( = tmp712 2 ) )
    ( implies ( and ( not x42 ) ( and ( not x90 ) true ) ) ( = tmp711 0 ) )
    ( implies ( and ( not x42 ) ( and x90 true ) ) ( = tmp711 1 ) )
    ( implies ( and x42 ( and ( not x90 ) true ) ) ( = tmp711 1 ) )
    ( implies ( and x42 ( and x90 true ) ) ( = tmp711 2 ) )
    ( implies ( and ( not x467 ) ( and ( not x420 ) true ) ) ( = tmp710 0 ) )
    ( implies ( and ( not x467 ) ( and x420 true ) ) ( = tmp710 1 ) )
    ( implies ( and x467 ( and ( not x420 ) true ) ) ( = tmp710 1 ) )
    ( implies ( and x467 ( and x420 true ) ) ( = tmp710 2 ) )
    ( implies ( and ( not x324 ) ( and ( not x372 ) true ) ) ( = tmp709 0 ) )
    ( implies ( and ( not x324 ) ( and x372 true ) ) ( = tmp709 1 ) )
    ( implies ( and x324 ( and ( not x372 ) true ) ) ( = tmp709 1 ) )
    ( implies ( and x324 ( and x372 true ) ) ( = tmp709 2 ) )
    ( implies ( and ( not x562 ) ( and ( not x514 ) true ) ) ( = tmp708 0 ) )
    ( implies ( and ( not x562 ) ( and x514 true ) ) ( = tmp708 1 ) )
    ( implies ( and x562 ( and ( not x514 ) true ) ) ( = tmp708 1 ) )
    ( implies ( and x562 ( and x514 true ) ) ( = tmp708 2 ) )
    ( implies ( and ( not x232 ) ( and ( not x276 ) true ) ) ( = tmp707 0 ) )
    ( implies ( and ( not x232 ) ( and x276 true ) ) ( = tmp707 1 ) )
    ( implies ( and x232 ( and ( not x276 ) true ) ) ( = tmp707 1 ) )
    ( implies ( and x232 ( and x276 true ) ) ( = tmp707 2 ) )
    ( implies ( and ( not x704 ) ( and ( not x657 ) true ) ) ( = tmp706 0 ) )
    ( implies ( and ( not x704 ) ( and x657 true ) ) ( = tmp706 1 ) )
    ( implies ( and x704 ( and ( not x657 ) true ) ) ( = tmp706 1 ) )
    ( implies ( and x704 ( and x657 true ) ) ( = tmp706 2 ) )
    ( implies ( and ( not x136 ) ( and ( not x184 ) true ) ) ( = tmp705 0 ) )
    ( implies ( and ( not x136 ) ( and x184 true ) ) ( = tmp705 1 ) )
    ( implies ( and x136 ( and ( not x184 ) true ) ) ( = tmp705 1 ) )
    ( implies ( and x136 ( and x184 true ) ) ( = tmp705 2 ) )
    ( implies ( and ( not x769 ) ( and ( not x752 ) true ) ) ( = tmp704 0 ) )
    ( implies ( and ( not x769 ) ( and x752 true ) ) ( = tmp704 1 ) )
    ( implies ( and x769 ( and ( not x752 ) true ) ) ( = tmp704 1 ) )
    ( implies ( and x769 ( and x752 true ) ) ( = tmp704 2 ) )
    ( implies ( and ( not x41 ) ( and ( not x89 ) true ) ) ( = tmp703 0 ) )
    ( implies ( and ( not x41 ) ( and x89 true ) ) ( = tmp703 1 ) )
    ( implies ( and x41 ( and ( not x89 ) true ) ) ( = tmp703 1 ) )
    ( implies ( and x41 ( and x89 true ) ) ( = tmp703 2 ) )
    ( implies ( and ( not x466 ) ( and ( not x419 ) true ) ) ( = tmp702 0 ) )
    ( implies ( and ( not x466 ) ( and x419 true ) ) ( = tmp702 1 ) )
    ( implies ( and x466 ( and ( not x419 ) true ) ) ( = tmp702 1 ) )
    ( implies ( and x466 ( and x419 true ) ) ( = tmp702 2 ) )
    ( implies ( and ( not x323 ) ( and ( not x371 ) true ) ) ( = tmp701 0 ) )
    ( implies ( and ( not x323 ) ( and x371 true ) ) ( = tmp701 1 ) )
    ( implies ( and x323 ( and ( not x371 ) true ) ) ( = tmp701 1 ) )
    ( implies ( and x323 ( and x371 true ) ) ( = tmp701 2 ) )
    ( implies ( and ( not x561 ) ( and ( not x513 ) true ) ) ( = tmp700 0 ) )
    ( implies ( and ( not x561 ) ( and x513 true ) ) ( = tmp700 1 ) )
    ( implies ( and x561 ( and ( not x513 ) true ) ) ( = tmp700 1 ) )
    ( implies ( and x561 ( and x513 true ) ) ( = tmp700 2 ) )
    ( implies ( and ( not x231 ) ( and ( not x275 ) true ) ) ( = tmp699 0 ) )
    ( implies ( and ( not x231 ) ( and x275 true ) ) ( = tmp699 1 ) )
    ( implies ( and x231 ( and ( not x275 ) true ) ) ( = tmp699 1 ) )
    ( implies ( and x231 ( and x275 true ) ) ( = tmp699 2 ) )
    ( implies ( and ( not x656 ) ( and ( not x609 ) true ) ) ( = tmp698 0 ) )
    ( implies ( and ( not x656 ) ( and x609 true ) ) ( = tmp698 1 ) )
    ( implies ( and x656 ( and ( not x609 ) true ) ) ( = tmp698 1 ) )
    ( implies ( and x656 ( and x609 true ) ) ( = tmp698 2 ) )
    ( implies ( and ( not x135 ) ( and ( not x183 ) true ) ) ( = tmp697 0 ) )
    ( implies ( and ( not x135 ) ( and x183 true ) ) ( = tmp697 1 ) )
    ( implies ( and x135 ( and ( not x183 ) true ) ) ( = tmp697 1 ) )
    ( implies ( and x135 ( and x183 true ) ) ( = tmp697 2 ) )
    ( implies ( and ( not x751 ) ( and ( not x703 ) true ) ) ( = tmp696 0 ) )
    ( implies ( and ( not x751 ) ( and x703 true ) ) ( = tmp696 1 ) )
    ( implies ( and x751 ( and ( not x703 ) true ) ) ( = tmp696 1 ) )
    ( implies ( and x751 ( and x703 true ) ) ( = tmp696 2 ) )
    ( implies ( and ( not x40 ) ( and ( not x88 ) true ) ) ( = tmp695 0 ) )
    ( implies ( and ( not x40 ) ( and x88 true ) ) ( = tmp695 1 ) )
    ( implies ( and x40 ( and ( not x88 ) true ) ) ( = tmp695 1 ) )
    ( implies ( and x40 ( and x88 true ) ) ( = tmp695 2 ) )
    ( implies ( and ( not x465 ) ( and ( not x418 ) true ) ) ( = tmp694 0 ) )
    ( implies ( and ( not x465 ) ( and x418 true ) ) ( = tmp694 1 ) )
    ( implies ( and x465 ( and ( not x418 ) true ) ) ( = tmp694 1 ) )
    ( implies ( and x465 ( and x418 true ) ) ( = tmp694 2 ) )
    ( implies ( and ( not x322 ) ( and ( not x370 ) true ) ) ( = tmp693 0 ) )
    ( implies ( and ( not x322 ) ( and x370 true ) ) ( = tmp693 1 ) )
    ( implies ( and x322 ( and ( not x370 ) true ) ) ( = tmp693 1 ) )
    ( implies ( and x322 ( and x370 true ) ) ( = tmp693 2 ) )
    ( implies ( and ( not x560 ) ( and ( not x512 ) true ) ) ( = tmp692 0 ) )
    ( implies ( and ( not x560 ) ( and x512 true ) ) ( = tmp692 1 ) )
    ( implies ( and x560 ( and ( not x512 ) true ) ) ( = tmp692 1 ) )
    ( implies ( and x560 ( and x512 true ) ) ( = tmp692 2 ) )
    ( implies ( and ( not x230 ) ( and ( not x274 ) true ) ) ( = tmp691 0 ) )
    ( implies ( and ( not x230 ) ( and x274 true ) ) ( = tmp691 1 ) )
    ( implies ( and x230 ( and ( not x274 ) true ) ) ( = tmp691 1 ) )
    ( implies ( and x230 ( and x274 true ) ) ( = tmp691 2 ) )
    ( implies ( and ( not x655 ) ( and ( not x608 ) true ) ) ( = tmp690 0 ) )
    ( implies ( and ( not x655 ) ( and x608 true ) ) ( = tmp690 1 ) )
    ( implies ( and x655 ( and ( not x608 ) true ) ) ( = tmp690 1 ) )
    ( implies ( and x655 ( and x608 true ) ) ( = tmp690 2 ) )
    ( implies ( and ( not x134 ) ( and ( not x182 ) true ) ) ( = tmp689 0 ) )
    ( implies ( and ( not x134 ) ( and x182 true ) ) ( = tmp689 1 ) )
    ( implies ( and x134 ( and ( not x182 ) true ) ) ( = tmp689 1 ) )
    ( implies ( and x134 ( and x182 true ) ) ( = tmp689 2 ) )
    ( implies ( and ( not x750 ) ( and ( not x702 ) true ) ) ( = tmp688 0 ) )
    ( implies ( and ( not x750 ) ( and x702 true ) ) ( = tmp688 1 ) )
    ( implies ( and x750 ( and ( not x702 ) true ) ) ( = tmp688 1 ) )
    ( implies ( and x750 ( and x702 true ) ) ( = tmp688 2 ) )
    ( implies ( and ( not x39 ) ( and ( not x87 ) true ) ) ( = tmp687 0 ) )
    ( implies ( and ( not x39 ) ( and x87 true ) ) ( = tmp687 1 ) )
    ( implies ( and x39 ( and ( not x87 ) true ) ) ( = tmp687 1 ) )
    ( implies ( and x39 ( and x87 true ) ) ( = tmp687 2 ) )
    ( implies ( and ( not x464 ) ( and ( not x417 ) true ) ) ( = tmp686 0 ) )
    ( implies ( and ( not x464 ) ( and x417 true ) ) ( = tmp686 1 ) )
    ( implies ( and x464 ( and ( not x417 ) true ) ) ( = tmp686 1 ) )
    ( implies ( and x464 ( and x417 true ) ) ( = tmp686 2 ) )
    ( implies ( and ( not x321 ) ( and ( not x369 ) true ) ) ( = tmp685 0 ) )
    ( implies ( and ( not x321 ) ( and x369 true ) ) ( = tmp685 1 ) )
    ( implies ( and x321 ( and ( not x369 ) true ) ) ( = tmp685 1 ) )
    ( implies ( and x321 ( and x369 true ) ) ( = tmp685 2 ) )
    ( implies ( and ( not x559 ) ( and ( not x511 ) true ) ) ( = tmp684 0 ) )
    ( implies ( and ( not x559 ) ( and x511 true ) ) ( = tmp684 1 ) )
    ( implies ( and x559 ( and ( not x511 ) true ) ) ( = tmp684 1 ) )
    ( implies ( and x559 ( and x511 true ) ) ( = tmp684 2 ) )
    ( implies ( and ( not x229 ) ( and ( not x273 ) true ) ) ( = tmp683 0 ) )
    ( implies ( and ( not x229 ) ( and x273 true ) ) ( = tmp683 1 ) )
    ( implies ( and x229 ( and ( not x273 ) true ) ) ( = tmp683 1 ) )
    ( implies ( and x229 ( and x273 true ) ) ( = tmp683 2 ) )
    ( implies ( and ( not x654 ) ( and ( not x607 ) true ) ) ( = tmp682 0 ) )
    ( implies ( and ( not x654 ) ( and x607 true ) ) ( = tmp682 1 ) )
    ( implies ( and x654 ( and ( not x607 ) true ) ) ( = tmp682 1 ) )
    ( implies ( and x654 ( and x607 true ) ) ( = tmp682 2 ) )
    ( implies ( and ( not x133 ) ( and ( not x181 ) true ) ) ( = tmp681 0 ) )
    ( implies ( and ( not x133 ) ( and x181 true ) ) ( = tmp681 1 ) )
    ( implies ( and x133 ( and ( not x181 ) true ) ) ( = tmp681 1 ) )
    ( implies ( and x133 ( and x181 true ) ) ( = tmp681 2 ) )
    ( implies ( and ( not x749 ) ( and ( not x701 ) true ) ) ( = tmp680 0 ) )
    ( implies ( and ( not x749 ) ( and x701 true ) ) ( = tmp680 1 ) )
    ( implies ( and x749 ( and ( not x701 ) true ) ) ( = tmp680 1 ) )
    ( implies ( and x749 ( and x701 true ) ) ( = tmp680 2 ) )
    ( implies ( and ( not x38 ) ( and ( not x86 ) true ) ) ( = tmp679 0 ) )
    ( implies ( and ( not x38 ) ( and x86 true ) ) ( = tmp679 1 ) )
    ( implies ( and x38 ( and ( not x86 ) true ) ) ( = tmp679 1 ) )
    ( implies ( and x38 ( and x86 true ) ) ( = tmp679 2 ) )
    ( implies ( and ( not x463 ) ( and ( not x416 ) true ) ) ( = tmp678 0 ) )
    ( implies ( and ( not x463 ) ( and x416 true ) ) ( = tmp678 1 ) )
    ( implies ( and x463 ( and ( not x416 ) true ) ) ( = tmp678 1 ) )
    ( implies ( and x463 ( and x416 true ) ) ( = tmp678 2 ) )
    ( implies ( and ( not x320 ) ( and ( not x368 ) true ) ) ( = tmp677 0 ) )
    ( implies ( and ( not x320 ) ( and x368 true ) ) ( = tmp677 1 ) )
    ( implies ( and x320 ( and ( not x368 ) true ) ) ( = tmp677 1 ) )
    ( implies ( and x320 ( and x368 true ) ) ( = tmp677 2 ) )
    ( implies ( and ( not x558 ) ( and ( not x510 ) true ) ) ( = tmp676 0 ) )
    ( implies ( and ( not x558 ) ( and x510 true ) ) ( = tmp676 1 ) )
    ( implies ( and x558 ( and ( not x510 ) true ) ) ( = tmp676 1 ) )
    ( implies ( and x558 ( and x510 true ) ) ( = tmp676 2 ) )
    ( implies ( and ( not x228 ) ( and ( not x272 ) true ) ) ( = tmp675 0 ) )
    ( implies ( and ( not x228 ) ( and x272 true ) ) ( = tmp675 1 ) )
    ( implies ( and x228 ( and ( not x272 ) true ) ) ( = tmp675 1 ) )
    ( implies ( and x228 ( and x272 true ) ) ( = tmp675 2 ) )
    ( implies ( and ( not x653 ) ( and ( not x606 ) true ) ) ( = tmp674 0 ) )
    ( implies ( and ( not x653 ) ( and x606 true ) ) ( = tmp674 1 ) )
    ( implies ( and x653 ( and ( not x606 ) true ) ) ( = tmp674 1 ) )
    ( implies ( and x653 ( and x606 true ) ) ( = tmp674 2 ) )
    ( implies ( and ( not x132 ) ( and ( not x180 ) true ) ) ( = tmp673 0 ) )
    ( implies ( and ( not x132 ) ( and x180 true ) ) ( = tmp673 1 ) )
    ( implies ( and x132 ( and ( not x180 ) true ) ) ( = tmp673 1 ) )
    ( implies ( and x132 ( and x180 true ) ) ( = tmp673 2 ) )
    ( implies ( and ( not x748 ) ( and ( not x700 ) true ) ) ( = tmp672 0 ) )
    ( implies ( and ( not x748 ) ( and x700 true ) ) ( = tmp672 1 ) )
    ( implies ( and x748 ( and ( not x700 ) true ) ) ( = tmp672 1 ) )
    ( implies ( and x748 ( and x700 true ) ) ( = tmp672 2 ) )
    ( implies ( and ( not x37 ) ( and ( not x85 ) true ) ) ( = tmp671 0 ) )
    ( implies ( and ( not x37 ) ( and x85 true ) ) ( = tmp671 1 ) )
    ( implies ( and x37 ( and ( not x85 ) true ) ) ( = tmp671 1 ) )
    ( implies ( and x37 ( and x85 true ) ) ( = tmp671 2 ) )
    ( implies ( and ( not x462 ) ( and ( not x415 ) true ) ) ( = tmp670 0 ) )
    ( implies ( and ( not x462 ) ( and x415 true ) ) ( = tmp670 1 ) )
    ( implies ( and x462 ( and ( not x415 ) true ) ) ( = tmp670 1 ) )
    ( implies ( and x462 ( and x415 true ) ) ( = tmp670 2 ) )
    ( implies ( and ( not x319 ) ( and ( not x367 ) true ) ) ( = tmp669 0 ) )
    ( implies ( and ( not x319 ) ( and x367 true ) ) ( = tmp669 1 ) )
    ( implies ( and x319 ( and ( not x367 ) true ) ) ( = tmp669 1 ) )
    ( implies ( and x319 ( and x367 true ) ) ( = tmp669 2 ) )
    ( implies ( and ( not x557 ) ( and ( not x509 ) true ) ) ( = tmp668 0 ) )
    ( implies ( and ( not x557 ) ( and x509 true ) ) ( = tmp668 1 ) )
    ( implies ( and x557 ( and ( not x509 ) true ) ) ( = tmp668 1 ) )
    ( implies ( and x557 ( and x509 true ) ) ( = tmp668 2 ) )
    ( implies ( and ( not x227 ) ( and ( not x271 ) true ) ) ( = tmp667 0 ) )
    ( implies ( and ( not x227 ) ( and x271 true ) ) ( = tmp667 1 ) )
    ( implies ( and x227 ( and ( not x271 ) true ) ) ( = tmp667 1 ) )
    ( implies ( and x227 ( and x271 true ) ) ( = tmp667 2 ) )
    ( implies ( and ( not x652 ) ( and ( not x605 ) true ) ) ( = tmp666 0 ) )
    ( implies ( and ( not x652 ) ( and x605 true ) ) ( = tmp666 1 ) )
    ( implies ( and x652 ( and ( not x605 ) true ) ) ( = tmp666 1 ) )
    ( implies ( and x652 ( and x605 true ) ) ( = tmp666 2 ) )
    ( implies ( and ( not x131 ) ( and ( not x179 ) true ) ) ( = tmp665 0 ) )
    ( implies ( and ( not x131 ) ( and x179 true ) ) ( = tmp665 1 ) )
    ( implies ( and x131 ( and ( not x179 ) true ) ) ( = tmp665 1 ) )
    ( implies ( and x131 ( and x179 true ) ) ( = tmp665 2 ) )
    ( implies ( and ( not x747 ) ( and ( not x699 ) true ) ) ( = tmp664 0 ) )
    ( implies ( and ( not x747 ) ( and x699 true ) ) ( = tmp664 1 ) )
    ( implies ( and x747 ( and ( not x699 ) true ) ) ( = tmp664 1 ) )
    ( implies ( and x747 ( and x699 true ) ) ( = tmp664 2 ) )
    ( implies ( and ( not x36 ) ( and ( not x84 ) true ) ) ( = tmp663 0 ) )
    ( implies ( and ( not x36 ) ( and x84 true ) ) ( = tmp663 1 ) )
    ( implies ( and x36 ( and ( not x84 ) true ) ) ( = tmp663 1 ) )
    ( implies ( and x36 ( and x84 true ) ) ( = tmp663 2 ) )
    ( implies ( and ( not x461 ) ( and ( not x414 ) true ) ) ( = tmp662 0 ) )
    ( implies ( and ( not x461 ) ( and x414 true ) ) ( = tmp662 1 ) )
    ( implies ( and x461 ( and ( not x414 ) true ) ) ( = tmp662 1 ) )
    ( implies ( and x461 ( and x414 true ) ) ( = tmp662 2 ) )
    ( implies ( and ( not x318 ) ( and ( not x366 ) true ) ) ( = tmp661 0 ) )
    ( implies ( and ( not x318 ) ( and x366 true ) ) ( = tmp661 1 ) )
    ( implies ( and x318 ( and ( not x366 ) true ) ) ( = tmp661 1 ) )
    ( implies ( and x318 ( and x366 true ) ) ( = tmp661 2 ) )
    ( implies ( and ( not x556 ) ( and ( not x508 ) true ) ) ( = tmp660 0 ) )
    ( implies ( and ( not x556 ) ( and x508 true ) ) ( = tmp660 1 ) )
    ( implies ( and x556 ( and ( not x508 ) true ) ) ( = tmp660 1 ) )
    ( implies ( and x556 ( and x508 true ) ) ( = tmp660 2 ) )
    ( implies ( and ( not x226 ) ( and ( not x270 ) true ) ) ( = tmp659 0 ) )
    ( implies ( and ( not x226 ) ( and x270 true ) ) ( = tmp659 1 ) )
    ( implies ( and x226 ( and ( not x270 ) true ) ) ( = tmp659 1 ) )
    ( implies ( and x226 ( and x270 true ) ) ( = tmp659 2 ) )
    ( implies ( and ( not x651 ) ( and ( not x604 ) true ) ) ( = tmp658 0 ) )
    ( implies ( and ( not x651 ) ( and x604 true ) ) ( = tmp658 1 ) )
    ( implies ( and x651 ( and ( not x604 ) true ) ) ( = tmp658 1 ) )
    ( implies ( and x651 ( and x604 true ) ) ( = tmp658 2 ) )
    ( implies ( and ( not x130 ) ( and ( not x178 ) true ) ) ( = tmp657 0 ) )
    ( implies ( and ( not x130 ) ( and x178 true ) ) ( = tmp657 1 ) )
    ( implies ( and x130 ( and ( not x178 ) true ) ) ( = tmp657 1 ) )
    ( implies ( and x130 ( and x178 true ) ) ( = tmp657 2 ) )
    ( implies ( and ( not x746 ) ( and ( not x698 ) true ) ) ( = tmp656 0 ) )
    ( implies ( and ( not x746 ) ( and x698 true ) ) ( = tmp656 1 ) )
    ( implies ( and x746 ( and ( not x698 ) true ) ) ( = tmp656 1 ) )
    ( implies ( and x746 ( and x698 true ) ) ( = tmp656 2 ) )
    ( implies ( and ( not x35 ) ( and ( not x83 ) true ) ) ( = tmp655 0 ) )
    ( implies ( and ( not x35 ) ( and x83 true ) ) ( = tmp655 1 ) )
    ( implies ( and x35 ( and ( not x83 ) true ) ) ( = tmp655 1 ) )
    ( implies ( and x35 ( and x83 true ) ) ( = tmp655 2 ) )
    ( implies ( and ( not x460 ) ( and ( not x413 ) true ) ) ( = tmp654 0 ) )
    ( implies ( and ( not x460 ) ( and x413 true ) ) ( = tmp654 1 ) )
    ( implies ( and x460 ( and ( not x413 ) true ) ) ( = tmp654 1 ) )
    ( implies ( and x460 ( and x413 true ) ) ( = tmp654 2 ) )
    ( implies ( and ( not x317 ) ( and ( not x365 ) true ) ) ( = tmp653 0 ) )
    ( implies ( and ( not x317 ) ( and x365 true ) ) ( = tmp653 1 ) )
    ( implies ( and x317 ( and ( not x365 ) true ) ) ( = tmp653 1 ) )
    ( implies ( and x317 ( and x365 true ) ) ( = tmp653 2 ) )
    ( implies ( and ( not x555 ) ( and ( not x507 ) true ) ) ( = tmp652 0 ) )
    ( implies ( and ( not x555 ) ( and x507 true ) ) ( = tmp652 1 ) )
    ( implies ( and x555 ( and ( not x507 ) true ) ) ( = tmp652 1 ) )
    ( implies ( and x555 ( and x507 true ) ) ( = tmp652 2 ) )
    ( implies ( and ( not x225 ) ( and ( not x269 ) true ) ) ( = tmp651 0 ) )
    ( implies ( and ( not x225 ) ( and x269 true ) ) ( = tmp651 1 ) )
    ( implies ( and x225 ( and ( not x269 ) true ) ) ( = tmp651 1 ) )
    ( implies ( and x225 ( and x269 true ) ) ( = tmp651 2 ) )
    ( implies ( and ( not x650 ) ( and ( not x603 ) true ) ) ( = tmp650 0 ) )
    ( implies ( and ( not x650 ) ( and x603 true ) ) ( = tmp650 1 ) )
    ( implies ( and x650 ( and ( not x603 ) true ) ) ( = tmp650 1 ) )
    ( implies ( and x650 ( and x603 true ) ) ( = tmp650 2 ) )
    ( implies ( and ( not x129 ) ( and ( not x177 ) true ) ) ( = tmp649 0 ) )
    ( implies ( and ( not x129 ) ( and x177 true ) ) ( = tmp649 1 ) )
    ( implies ( and x129 ( and ( not x177 ) true ) ) ( = tmp649 1 ) )
    ( implies ( and x129 ( and x177 true ) ) ( = tmp649 2 ) )
    ( implies ( and ( not x745 ) ( and ( not x697 ) true ) ) ( = tmp648 0 ) )
    ( implies ( and ( not x745 ) ( and x697 true ) ) ( = tmp648 1 ) )
    ( implies ( and x745 ( and ( not x697 ) true ) ) ( = tmp648 1 ) )
    ( implies ( and x745 ( and x697 true ) ) ( = tmp648 2 ) )
    ( implies ( and ( not x34 ) ( and ( not x82 ) true ) ) ( = tmp647 0 ) )
    ( implies ( and ( not x34 ) ( and x82 true ) ) ( = tmp647 1 ) )
    ( implies ( and x34 ( and ( not x82 ) true ) ) ( = tmp647 1 ) )
    ( implies ( and x34 ( and x82 true ) ) ( = tmp647 2 ) )
    ( implies ( and ( not x459 ) ( and ( not x412 ) true ) ) ( = tmp646 0 ) )
    ( implies ( and ( not x459 ) ( and x412 true ) ) ( = tmp646 1 ) )
    ( implies ( and x459 ( and ( not x412 ) true ) ) ( = tmp646 1 ) )
    ( implies ( and x459 ( and x412 true ) ) ( = tmp646 2 ) )
    ( implies ( and ( not x316 ) ( and ( not x364 ) true ) ) ( = tmp645 0 ) )
    ( implies ( and ( not x316 ) ( and x364 true ) ) ( = tmp645 1 ) )
    ( implies ( and x316 ( and ( not x364 ) true ) ) ( = tmp645 1 ) )
    ( implies ( and x316 ( and x364 true ) ) ( = tmp645 2 ) )
    ( implies ( and ( not x554 ) ( and ( not x506 ) true ) ) ( = tmp644 0 ) )
    ( implies ( and ( not x554 ) ( and x506 true ) ) ( = tmp644 1 ) )
    ( implies ( and x554 ( and ( not x506 ) true ) ) ( = tmp644 1 ) )
    ( implies ( and x554 ( and x506 true ) ) ( = tmp644 2 ) )
    ( implies ( and ( not x224 ) ( and ( not x268 ) true ) ) ( = tmp643 0 ) )
    ( implies ( and ( not x224 ) ( and x268 true ) ) ( = tmp643 1 ) )
    ( implies ( and x224 ( and ( not x268 ) true ) ) ( = tmp643 1 ) )
    ( implies ( and x224 ( and x268 true ) ) ( = tmp643 2 ) )
    ( implies ( and ( not x649 ) ( and ( not x602 ) true ) ) ( = tmp642 0 ) )
    ( implies ( and ( not x649 ) ( and x602 true ) ) ( = tmp642 1 ) )
    ( implies ( and x649 ( and ( not x602 ) true ) ) ( = tmp642 1 ) )
    ( implies ( and x649 ( and x602 true ) ) ( = tmp642 2 ) )
    ( implies ( and ( not x128 ) ( and ( not x176 ) true ) ) ( = tmp641 0 ) )
    ( implies ( and ( not x128 ) ( and x176 true ) ) ( = tmp641 1 ) )
    ( implies ( and x128 ( and ( not x176 ) true ) ) ( = tmp641 1 ) )
    ( implies ( and x128 ( and x176 true ) ) ( = tmp641 2 ) )
    ( implies ( and ( not x744 ) ( and ( not x696 ) true ) ) ( = tmp640 0 ) )
    ( implies ( and ( not x744 ) ( and x696 true ) ) ( = tmp640 1 ) )
    ( implies ( and x744 ( and ( not x696 ) true ) ) ( = tmp640 1 ) )
    ( implies ( and x744 ( and x696 true ) ) ( = tmp640 2 ) )
    ( implies ( and ( not x33 ) ( and ( not x81 ) true ) ) ( = tmp639 0 ) )
    ( implies ( and ( not x33 ) ( and x81 true ) ) ( = tmp639 1 ) )
    ( implies ( and x33 ( and ( not x81 ) true ) ) ( = tmp639 1 ) )
    ( implies ( and x33 ( and x81 true ) ) ( = tmp639 2 ) )
    ( implies ( and ( not x458 ) ( and ( not x411 ) true ) ) ( = tmp638 0 ) )
    ( implies ( and ( not x458 ) ( and x411 true ) ) ( = tmp638 1 ) )
    ( implies ( and x458 ( and ( not x411 ) true ) ) ( = tmp638 1 ) )
    ( implies ( and x458 ( and x411 true ) ) ( = tmp638 2 ) )
    ( implies ( and ( not x315 ) ( and ( not x363 ) true ) ) ( = tmp637 0 ) )
    ( implies ( and ( not x315 ) ( and x363 true ) ) ( = tmp637 1 ) )
    ( implies ( and x315 ( and ( not x363 ) true ) ) ( = tmp637 1 ) )
    ( implies ( and x315 ( and x363 true ) ) ( = tmp637 2 ) )
    ( implies ( and ( not x553 ) ( and ( not x505 ) true ) ) ( = tmp636 0 ) )
    ( implies ( and ( not x553 ) ( and x505 true ) ) ( = tmp636 1 ) )
    ( implies ( and x553 ( and ( not x505 ) true ) ) ( = tmp636 1 ) )
    ( implies ( and x553 ( and x505 true ) ) ( = tmp636 2 ) )
    ( implies ( and ( not x223 ) ( and ( not x267 ) true ) ) ( = tmp635 0 ) )
    ( implies ( and ( not x223 ) ( and x267 true ) ) ( = tmp635 1 ) )
    ( implies ( and x223 ( and ( not x267 ) true ) ) ( = tmp635 1 ) )
    ( implies ( and x223 ( and x267 true ) ) ( = tmp635 2 ) )
    ( implies ( and ( not x648 ) ( and ( not x601 ) true ) ) ( = tmp634 0 ) )
    ( implies ( and ( not x648 ) ( and x601 true ) ) ( = tmp634 1 ) )
    ( implies ( and x648 ( and ( not x601 ) true ) ) ( = tmp634 1 ) )
    ( implies ( and x648 ( and x601 true ) ) ( = tmp634 2 ) )
    ( implies ( and ( not x127 ) ( and ( not x175 ) true ) ) ( = tmp633 0 ) )
    ( implies ( and ( not x127 ) ( and x175 true ) ) ( = tmp633 1 ) )
    ( implies ( and x127 ( and ( not x175 ) true ) ) ( = tmp633 1 ) )
    ( implies ( and x127 ( and x175 true ) ) ( = tmp633 2 ) )
    ( implies ( and ( not x743 ) ( and ( not x695 ) true ) ) ( = tmp632 0 ) )
    ( implies ( and ( not x743 ) ( and x695 true ) ) ( = tmp632 1 ) )
    ( implies ( and x743 ( and ( not x695 ) true ) ) ( = tmp632 1 ) )
    ( implies ( and x743 ( and x695 true ) ) ( = tmp632 2 ) )
    ( implies ( and ( not x32 ) ( and ( not x80 ) true ) ) ( = tmp631 0 ) )
    ( implies ( and ( not x32 ) ( and x80 true ) ) ( = tmp631 1 ) )
    ( implies ( and x32 ( and ( not x80 ) true ) ) ( = tmp631 1 ) )
    ( implies ( and x32 ( and x80 true ) ) ( = tmp631 2 ) )
    ( implies ( and ( not x457 ) ( and ( not x410 ) true ) ) ( = tmp630 0 ) )
    ( implies ( and ( not x457 ) ( and x410 true ) ) ( = tmp630 1 ) )
    ( implies ( and x457 ( and ( not x410 ) true ) ) ( = tmp630 1 ) )
    ( implies ( and x457 ( and x410 true ) ) ( = tmp630 2 ) )
    ( implies ( and ( not x314 ) ( and ( not x362 ) true ) ) ( = tmp629 0 ) )
    ( implies ( and ( not x314 ) ( and x362 true ) ) ( = tmp629 1 ) )
    ( implies ( and x314 ( and ( not x362 ) true ) ) ( = tmp629 1 ) )
    ( implies ( and x314 ( and x362 true ) ) ( = tmp629 2 ) )
    ( implies ( and ( not x552 ) ( and ( not x504 ) true ) ) ( = tmp628 0 ) )
    ( implies ( and ( not x552 ) ( and x504 true ) ) ( = tmp628 1 ) )
    ( implies ( and x552 ( and ( not x504 ) true ) ) ( = tmp628 1 ) )
    ( implies ( and x552 ( and x504 true ) ) ( = tmp628 2 ) )
    ( implies ( and ( not x222 ) ( and ( not x266 ) true ) ) ( = tmp627 0 ) )
    ( implies ( and ( not x222 ) ( and x266 true ) ) ( = tmp627 1 ) )
    ( implies ( and x222 ( and ( not x266 ) true ) ) ( = tmp627 1 ) )
    ( implies ( and x222 ( and x266 true ) ) ( = tmp627 2 ) )
    ( implies ( and ( not x647 ) ( and ( not x600 ) true ) ) ( = tmp626 0 ) )
    ( implies ( and ( not x647 ) ( and x600 true ) ) ( = tmp626 1 ) )
    ( implies ( and x647 ( and ( not x600 ) true ) ) ( = tmp626 1 ) )
    ( implies ( and x647 ( and x600 true ) ) ( = tmp626 2 ) )
    ( implies ( and ( not x126 ) ( and ( not x174 ) true ) ) ( = tmp625 0 ) )
    ( implies ( and ( not x126 ) ( and x174 true ) ) ( = tmp625 1 ) )
    ( implies ( and x126 ( and ( not x174 ) true ) ) ( = tmp625 1 ) )
    ( implies ( and x126 ( and x174 true ) ) ( = tmp625 2 ) )
    ( implies ( and ( not x742 ) ( and ( not x694 ) true ) ) ( = tmp624 0 ) )
    ( implies ( and ( not x742 ) ( and x694 true ) ) ( = tmp624 1 ) )
    ( implies ( and x742 ( and ( not x694 ) true ) ) ( = tmp624 1 ) )
    ( implies ( and x742 ( and x694 true ) ) ( = tmp624 2 ) )
    ( implies ( and ( not x31 ) ( and ( not x79 ) true ) ) ( = tmp623 0 ) )
    ( implies ( and ( not x31 ) ( and x79 true ) ) ( = tmp623 1 ) )
    ( implies ( and x31 ( and ( not x79 ) true ) ) ( = tmp623 1 ) )
    ( implies ( and x31 ( and x79 true ) ) ( = tmp623 2 ) )
    ( implies ( and ( not x456 ) ( and ( not x409 ) true ) ) ( = tmp622 0 ) )
    ( implies ( and ( not x456 ) ( and x409 true ) ) ( = tmp622 1 ) )
    ( implies ( and x456 ( and ( not x409 ) true ) ) ( = tmp622 1 ) )
    ( implies ( and x456 ( and x409 true ) ) ( = tmp622 2 ) )
    ( implies ( and ( not x313 ) ( and ( not x361 ) true ) ) ( = tmp621 0 ) )
    ( implies ( and ( not x313 ) ( and x361 true ) ) ( = tmp621 1 ) )
    ( implies ( and x313 ( and ( not x361 ) true ) ) ( = tmp621 1 ) )
    ( implies ( and x313 ( and x361 true ) ) ( = tmp621 2 ) )
    ( implies ( and ( not x551 ) ( and ( not x503 ) true ) ) ( = tmp620 0 ) )
    ( implies ( and ( not x551 ) ( and x503 true ) ) ( = tmp620 1 ) )
    ( implies ( and x551 ( and ( not x503 ) true ) ) ( = tmp620 1 ) )
    ( implies ( and x551 ( and x503 true ) ) ( = tmp620 2 ) )
    ( implies ( and ( not x221 ) ( and ( not x265 ) true ) ) ( = tmp619 0 ) )
    ( implies ( and ( not x221 ) ( and x265 true ) ) ( = tmp619 1 ) )
    ( implies ( and x221 ( and ( not x265 ) true ) ) ( = tmp619 1 ) )
    ( implies ( and x221 ( and x265 true ) ) ( = tmp619 2 ) )
    ( implies ( and ( not x646 ) ( and ( not x599 ) true ) ) ( = tmp618 0 ) )
    ( implies ( and ( not x646 ) ( and x599 true ) ) ( = tmp618 1 ) )
    ( implies ( and x646 ( and ( not x599 ) true ) ) ( = tmp618 1 ) )
    ( implies ( and x646 ( and x599 true ) ) ( = tmp618 2 ) )
    ( implies ( and ( not x125 ) ( and ( not x173 ) true ) ) ( = tmp617 0 ) )
    ( implies ( and ( not x125 ) ( and x173 true ) ) ( = tmp617 1 ) )
    ( implies ( and x125 ( and ( not x173 ) true ) ) ( = tmp617 1 ) )
    ( implies ( and x125 ( and x173 true ) ) ( = tmp617 2 ) )
    ( implies ( and ( not x741 ) ( and ( not x693 ) true ) ) ( = tmp616 0 ) )
    ( implies ( and ( not x741 ) ( and x693 true ) ) ( = tmp616 1 ) )
    ( implies ( and x741 ( and ( not x693 ) true ) ) ( = tmp616 1 ) )
    ( implies ( and x741 ( and x693 true ) ) ( = tmp616 2 ) )
    ( implies ( and ( not x30 ) ( and ( not x78 ) true ) ) ( = tmp615 0 ) )
    ( implies ( and ( not x30 ) ( and x78 true ) ) ( = tmp615 1 ) )
    ( implies ( and x30 ( and ( not x78 ) true ) ) ( = tmp615 1 ) )
    ( implies ( and x30 ( and x78 true ) ) ( = tmp615 2 ) )
    ( implies ( and ( not x455 ) ( and ( not x408 ) true ) ) ( = tmp614 0 ) )
    ( implies ( and ( not x455 ) ( and x408 true ) ) ( = tmp614 1 ) )
    ( implies ( and x455 ( and ( not x408 ) true ) ) ( = tmp614 1 ) )
    ( implies ( and x455 ( and x408 true ) ) ( = tmp614 2 ) )
    ( implies ( and ( not x312 ) ( and ( not x360 ) true ) ) ( = tmp613 0 ) )
    ( implies ( and ( not x312 ) ( and x360 true ) ) ( = tmp613 1 ) )
    ( implies ( and x312 ( and ( not x360 ) true ) ) ( = tmp613 1 ) )
    ( implies ( and x312 ( and x360 true ) ) ( = tmp613 2 ) )
    ( implies ( and ( not x550 ) ( and ( not x502 ) true ) ) ( = tmp612 0 ) )
    ( implies ( and ( not x550 ) ( and x502 true ) ) ( = tmp612 1 ) )
    ( implies ( and x550 ( and ( not x502 ) true ) ) ( = tmp612 1 ) )
    ( implies ( and x550 ( and x502 true ) ) ( = tmp612 2 ) )
    ( implies ( and ( not x220 ) ( and ( not x264 ) true ) ) ( = tmp611 0 ) )
    ( implies ( and ( not x220 ) ( and x264 true ) ) ( = tmp611 1 ) )
    ( implies ( and x220 ( and ( not x264 ) true ) ) ( = tmp611 1 ) )
    ( implies ( and x220 ( and x264 true ) ) ( = tmp611 2 ) )
    ( implies ( and ( not x645 ) ( and ( not x598 ) true ) ) ( = tmp610 0 ) )
    ( implies ( and ( not x645 ) ( and x598 true ) ) ( = tmp610 1 ) )
    ( implies ( and x645 ( and ( not x598 ) true ) ) ( = tmp610 1 ) )
    ( implies ( and x645 ( and x598 true ) ) ( = tmp610 2 ) )
    ( implies ( and ( not x124 ) ( and ( not x172 ) true ) ) ( = tmp609 0 ) )
    ( implies ( and ( not x124 ) ( and x172 true ) ) ( = tmp609 1 ) )
    ( implies ( and x124 ( and ( not x172 ) true ) ) ( = tmp609 1 ) )
    ( implies ( and x124 ( and x172 true ) ) ( = tmp609 2 ) )
    ( implies ( and ( not x740 ) ( and ( not x692 ) true ) ) ( = tmp608 0 ) )
    ( implies ( and ( not x740 ) ( and x692 true ) ) ( = tmp608 1 ) )
    ( implies ( and x740 ( and ( not x692 ) true ) ) ( = tmp608 1 ) )
    ( implies ( and x740 ( and x692 true ) ) ( = tmp608 2 ) )
    ( implies ( and ( not x29 ) ( and ( not x77 ) true ) ) ( = tmp607 0 ) )
    ( implies ( and ( not x29 ) ( and x77 true ) ) ( = tmp607 1 ) )
    ( implies ( and x29 ( and ( not x77 ) true ) ) ( = tmp607 1 ) )
    ( implies ( and x29 ( and x77 true ) ) ( = tmp607 2 ) )
    ( implies ( and ( not x501 ) ( and ( not x407 ) true ) ) ( = tmp606 0 ) )
    ( implies ( and ( not x501 ) ( and x407 true ) ) ( = tmp606 1 ) )
    ( implies ( and x501 ( and ( not x407 ) true ) ) ( = tmp606 1 ) )
    ( implies ( and x501 ( and x407 true ) ) ( = tmp606 2 ) )
    ( implies ( and ( not x311 ) ( and ( not x359 ) true ) ) ( = tmp605 0 ) )
    ( implies ( and ( not x311 ) ( and x359 true ) ) ( = tmp605 1 ) )
    ( implies ( and x311 ( and ( not x359 ) true ) ) ( = tmp605 1 ) )
    ( implies ( and x311 ( and x359 true ) ) ( = tmp605 2 ) )
    ( implies ( and ( not x597 ) ( and ( not x549 ) true ) ) ( = tmp604 0 ) )
    ( implies ( and ( not x597 ) ( and x549 true ) ) ( = tmp604 1 ) )
    ( implies ( and x597 ( and ( not x549 ) true ) ) ( = tmp604 1 ) )
    ( implies ( and x597 ( and x549 true ) ) ( = tmp604 2 ) )
    ( implies ( and ( not x219 ) ( and ( not x263 ) true ) ) ( = tmp603 0 ) )
    ( implies ( and ( not x219 ) ( and x263 true ) ) ( = tmp603 1 ) )
    ( implies ( and x219 ( and ( not x263 ) true ) ) ( = tmp603 1 ) )
    ( implies ( and x219 ( and x263 true ) ) ( = tmp603 2 ) )
    ( implies ( and ( not x691 ) ( and ( not x644 ) true ) ) ( = tmp602 0 ) )
    ( implies ( and ( not x691 ) ( and x644 true ) ) ( = tmp602 1 ) )
    ( implies ( and x691 ( and ( not x644 ) true ) ) ( = tmp602 1 ) )
    ( implies ( and x691 ( and x644 true ) ) ( = tmp602 2 ) )
    ( implies ( and ( not x123 ) ( and ( not x171 ) true ) ) ( = tmp601 0 ) )
    ( implies ( and ( not x123 ) ( and x171 true ) ) ( = tmp601 1 ) )
    ( implies ( and x123 ( and ( not x171 ) true ) ) ( = tmp601 1 ) )
    ( implies ( and x123 ( and x171 true ) ) ( = tmp601 2 ) )
    ( implies ( and ( not x768 ) ( and ( not x739 ) true ) ) ( = tmp600 0 ) )
    ( implies ( and ( not x768 ) ( and x739 true ) ) ( = tmp600 1 ) )
    ( implies ( and x768 ( and ( not x739 ) true ) ) ( = tmp600 1 ) )
    ( implies ( and x768 ( and x739 true ) ) ( = tmp600 2 ) )
    ( implies ( and ( not x28 ) ( and ( not x76 ) true ) ) ( = tmp599 0 ) )
    ( implies ( and ( not x28 ) ( and x76 true ) ) ( = tmp599 1 ) )
    ( implies ( and x28 ( and ( not x76 ) true ) ) ( = tmp599 1 ) )
    ( implies ( and x28 ( and x76 true ) ) ( = tmp599 2 ) )
    ( implies ( and ( not x454 ) ( and ( not x406 ) true ) ) ( = tmp598 0 ) )
    ( implies ( and ( not x454 ) ( and x406 true ) ) ( = tmp598 1 ) )
    ( implies ( and x454 ( and ( not x406 ) true ) ) ( = tmp598 1 ) )
    ( implies ( and x454 ( and x406 true ) ) ( = tmp598 2 ) )
    ( implies ( and ( not x310 ) ( and ( not x358 ) true ) ) ( = tmp597 0 ) )
    ( implies ( and ( not x310 ) ( and x358 true ) ) ( = tmp597 1 ) )
    ( implies ( and x310 ( and ( not x358 ) true ) ) ( = tmp597 1 ) )
    ( implies ( and x310 ( and x358 true ) ) ( = tmp597 2 ) )
    ( implies ( and ( not x548 ) ( and ( not x500 ) true ) ) ( = tmp596 0 ) )
    ( implies ( and ( not x548 ) ( and x500 true ) ) ( = tmp596 1 ) )
    ( implies ( and x548 ( and ( not x500 ) true ) ) ( = tmp596 1 ) )
    ( implies ( and x548 ( and x500 true ) ) ( = tmp596 2 ) )
    ( implies ( and ( not x218 ) ( and ( not x262 ) true ) ) ( = tmp595 0 ) )
    ( implies ( and ( not x218 ) ( and x262 true ) ) ( = tmp595 1 ) )
    ( implies ( and x218 ( and ( not x262 ) true ) ) ( = tmp595 1 ) )
    ( implies ( and x218 ( and x262 true ) ) ( = tmp595 2 ) )
    ( implies ( and ( not x643 ) ( and ( not x596 ) true ) ) ( = tmp594 0 ) )
    ( implies ( and ( not x643 ) ( and x596 true ) ) ( = tmp594 1 ) )
    ( implies ( and x643 ( and ( not x596 ) true ) ) ( = tmp594 1 ) )
    ( implies ( and x643 ( and x596 true ) ) ( = tmp594 2 ) )
    ( implies ( and ( not x122 ) ( and ( not x170 ) true ) ) ( = tmp593 0 ) )
    ( implies ( and ( not x122 ) ( and x170 true ) ) ( = tmp593 1 ) )
    ( implies ( and x122 ( and ( not x170 ) true ) ) ( = tmp593 1 ) )
    ( implies ( and x122 ( and x170 true ) ) ( = tmp593 2 ) )
    ( implies ( and ( not x738 ) ( and ( not x690 ) true ) ) ( = tmp592 0 ) )
    ( implies ( and ( not x738 ) ( and x690 true ) ) ( = tmp592 1 ) )
    ( implies ( and x738 ( and ( not x690 ) true ) ) ( = tmp592 1 ) )
    ( implies ( and x738 ( and x690 true ) ) ( = tmp592 2 ) )
    ( implies ( and ( not x27 ) ( and ( not x75 ) true ) ) ( = tmp591 0 ) )
    ( implies ( and ( not x27 ) ( and x75 true ) ) ( = tmp591 1 ) )
    ( implies ( and x27 ( and ( not x75 ) true ) ) ( = tmp591 1 ) )
    ( implies ( and x27 ( and x75 true ) ) ( = tmp591 2 ) )
    ( implies ( and ( not x453 ) ( and ( not x405 ) true ) ) ( = tmp590 0 ) )
    ( implies ( and ( not x453 ) ( and x405 true ) ) ( = tmp590 1 ) )
    ( implies ( and x453 ( and ( not x405 ) true ) ) ( = tmp590 1 ) )
    ( implies ( and x453 ( and x405 true ) ) ( = tmp590 2 ) )
    ( implies ( and ( not x309 ) ( and ( not x357 ) true ) ) ( = tmp589 0 ) )
    ( implies ( and ( not x309 ) ( and x357 true ) ) ( = tmp589 1 ) )
    ( implies ( and x309 ( and ( not x357 ) true ) ) ( = tmp589 1 ) )
    ( implies ( and x309 ( and x357 true ) ) ( = tmp589 2 ) )
    ( implies ( and ( not x547 ) ( and ( not x499 ) true ) ) ( = tmp588 0 ) )
    ( implies ( and ( not x547 ) ( and x499 true ) ) ( = tmp588 1 ) )
    ( implies ( and x547 ( and ( not x499 ) true ) ) ( = tmp588 1 ) )
    ( implies ( and x547 ( and x499 true ) ) ( = tmp588 2 ) )
    ( implies ( and ( not x217 ) ( and ( not x261 ) true ) ) ( = tmp587 0 ) )
    ( implies ( and ( not x217 ) ( and x261 true ) ) ( = tmp587 1 ) )
    ( implies ( and x217 ( and ( not x261 ) true ) ) ( = tmp587 1 ) )
    ( implies ( and x217 ( and x261 true ) ) ( = tmp587 2 ) )
    ( implies ( and ( not x642 ) ( and ( not x595 ) true ) ) ( = tmp586 0 ) )
    ( implies ( and ( not x642 ) ( and x595 true ) ) ( = tmp586 1 ) )
    ( implies ( and x642 ( and ( not x595 ) true ) ) ( = tmp586 1 ) )
    ( implies ( and x642 ( and x595 true ) ) ( = tmp586 2 ) )
    ( implies ( and ( not x121 ) ( and ( not x169 ) true ) ) ( = tmp585 0 ) )
    ( implies ( and ( not x121 ) ( and x169 true ) ) ( = tmp585 1 ) )
    ( implies ( and x121 ( and ( not x169 ) true ) ) ( = tmp585 1 ) )
    ( implies ( and x121 ( and x169 true ) ) ( = tmp585 2 ) )
    ( implies ( and ( not x737 ) ( and ( not x689 ) true ) ) ( = tmp584 0 ) )
    ( implies ( and ( not x737 ) ( and x689 true ) ) ( = tmp584 1 ) )
    ( implies ( and x737 ( and ( not x689 ) true ) ) ( = tmp584 1 ) )
    ( implies ( and x737 ( and x689 true ) ) ( = tmp584 2 ) )
    ( implies ( and ( not x26 ) ( and ( not x74 ) true ) ) ( = tmp583 0 ) )
    ( implies ( and ( not x26 ) ( and x74 true ) ) ( = tmp583 1 ) )
    ( implies ( and x26 ( and ( not x74 ) true ) ) ( = tmp583 1 ) )
    ( implies ( and x26 ( and x74 true ) ) ( = tmp583 2 ) )
    ( implies ( and ( not x452 ) ( and ( not x404 ) true ) ) ( = tmp582 0 ) )
    ( implies ( and ( not x452 ) ( and x404 true ) ) ( = tmp582 1 ) )
    ( implies ( and x452 ( and ( not x404 ) true ) ) ( = tmp582 1 ) )
    ( implies ( and x452 ( and x404 true ) ) ( = tmp582 2 ) )
    ( implies ( and ( not x308 ) ( and ( not x356 ) true ) ) ( = tmp581 0 ) )
    ( implies ( and ( not x308 ) ( and x356 true ) ) ( = tmp581 1 ) )
    ( implies ( and x308 ( and ( not x356 ) true ) ) ( = tmp581 1 ) )
    ( implies ( and x308 ( and x356 true ) ) ( = tmp581 2 ) )
    ( implies ( and ( not x546 ) ( and ( not x498 ) true ) ) ( = tmp580 0 ) )
    ( implies ( and ( not x546 ) ( and x498 true ) ) ( = tmp580 1 ) )
    ( implies ( and x546 ( and ( not x498 ) true ) ) ( = tmp580 1 ) )
    ( implies ( and x546 ( and x498 true ) ) ( = tmp580 2 ) )
    ( implies ( and ( not x216 ) ( and ( not x260 ) true ) ) ( = tmp579 0 ) )
    ( implies ( and ( not x216 ) ( and x260 true ) ) ( = tmp579 1 ) )
    ( implies ( and x216 ( and ( not x260 ) true ) ) ( = tmp579 1 ) )
    ( implies ( and x216 ( and x260 true ) ) ( = tmp579 2 ) )
    ( implies ( and ( not x641 ) ( and ( not x594 ) true ) ) ( = tmp578 0 ) )
    ( implies ( and ( not x641 ) ( and x594 true ) ) ( = tmp578 1 ) )
    ( implies ( and x641 ( and ( not x594 ) true ) ) ( = tmp578 1 ) )
    ( implies ( and x641 ( and x594 true ) ) ( = tmp578 2 ) )
    ( implies ( and ( not x120 ) ( and ( not x168 ) true ) ) ( = tmp577 0 ) )
    ( implies ( and ( not x120 ) ( and x168 true ) ) ( = tmp577 1 ) )
    ( implies ( and x120 ( and ( not x168 ) true ) ) ( = tmp577 1 ) )
    ( implies ( and x120 ( and x168 true ) ) ( = tmp577 2 ) )
    ( implies ( and ( not x736 ) ( and ( not x688 ) true ) ) ( = tmp576 0 ) )
    ( implies ( and ( not x736 ) ( and x688 true ) ) ( = tmp576 1 ) )
    ( implies ( and x736 ( and ( not x688 ) true ) ) ( = tmp576 1 ) )
    ( implies ( and x736 ( and x688 true ) ) ( = tmp576 2 ) )
    ( implies ( and ( not x25 ) ( and ( not x73 ) true ) ) ( = tmp575 0 ) )
    ( implies ( and ( not x25 ) ( and x73 true ) ) ( = tmp575 1 ) )
    ( implies ( and x25 ( and ( not x73 ) true ) ) ( = tmp575 1 ) )
    ( implies ( and x25 ( and x73 true ) ) ( = tmp575 2 ) )
    ( implies ( and ( not x451 ) ( and ( not x403 ) true ) ) ( = tmp574 0 ) )
    ( implies ( and ( not x451 ) ( and x403 true ) ) ( = tmp574 1 ) )
    ( implies ( and x451 ( and ( not x403 ) true ) ) ( = tmp574 1 ) )
    ( implies ( and x451 ( and x403 true ) ) ( = tmp574 2 ) )
    ( implies ( and ( not x307 ) ( and ( not x355 ) true ) ) ( = tmp573 0 ) )
    ( implies ( and ( not x307 ) ( and x355 true ) ) ( = tmp573 1 ) )
    ( implies ( and x307 ( and ( not x355 ) true ) ) ( = tmp573 1 ) )
    ( implies ( and x307 ( and x355 true ) ) ( = tmp573 2 ) )
    ( implies ( and ( not x545 ) ( and ( not x497 ) true ) ) ( = tmp572 0 ) )
    ( implies ( and ( not x545 ) ( and x497 true ) ) ( = tmp572 1 ) )
    ( implies ( and x545 ( and ( not x497 ) true ) ) ( = tmp572 1 ) )
    ( implies ( and x545 ( and x497 true ) ) ( = tmp572 2 ) )
    ( implies ( and ( not x215 ) ( and ( not x259 ) true ) ) ( = tmp571 0 ) )
    ( implies ( and ( not x215 ) ( and x259 true ) ) ( = tmp571 1 ) )
    ( implies ( and x215 ( and ( not x259 ) true ) ) ( = tmp571 1 ) )
    ( implies ( and x215 ( and x259 true ) ) ( = tmp571 2 ) )
    ( implies ( and ( not x640 ) ( and ( not x593 ) true ) ) ( = tmp570 0 ) )
    ( implies ( and ( not x640 ) ( and x593 true ) ) ( = tmp570 1 ) )
    ( implies ( and x640 ( and ( not x593 ) true ) ) ( = tmp570 1 ) )
    ( implies ( and x640 ( and x593 true ) ) ( = tmp570 2 ) )
    ( implies ( and ( not x119 ) ( and ( not x167 ) true ) ) ( = tmp569 0 ) )
    ( implies ( and ( not x119 ) ( and x167 true ) ) ( = tmp569 1 ) )
    ( implies ( and x119 ( and ( not x167 ) true ) ) ( = tmp569 1 ) )
    ( implies ( and x119 ( and x167 true ) ) ( = tmp569 2 ) )
    ( implies ( and ( not x735 ) ( and ( not x687 ) true ) ) ( = tmp568 0 ) )
    ( implies ( and ( not x735 ) ( and x687 true ) ) ( = tmp568 1 ) )
    ( implies ( and x735 ( and ( not x687 ) true ) ) ( = tmp568 1 ) )
    ( implies ( and x735 ( and x687 true ) ) ( = tmp568 2 ) )
    ( implies ( and ( not x24 ) ( and ( not x72 ) true ) ) ( = tmp567 0 ) )
    ( implies ( and ( not x24 ) ( and x72 true ) ) ( = tmp567 1 ) )
    ( implies ( and x24 ( and ( not x72 ) true ) ) ( = tmp567 1 ) )
    ( implies ( and x24 ( and x72 true ) ) ( = tmp567 2 ) )
    ( implies ( and ( not x496 ) ( and ( not x450 ) true ) ) ( = tmp566 0 ) )
    ( implies ( and ( not x496 ) ( and x450 true ) ) ( = tmp566 1 ) )
    ( implies ( and x496 ( and ( not x450 ) true ) ) ( = tmp566 1 ) )
    ( implies ( and x496 ( and x450 true ) ) ( = tmp566 2 ) )
    ( implies ( and ( not x354 ) ( and ( not x402 ) true ) ) ( = tmp565 0 ) )
    ( implies ( and ( not x354 ) ( and x402 true ) ) ( = tmp565 1 ) )
    ( implies ( and x354 ( and ( not x402 ) true ) ) ( = tmp565 1 ) )
    ( implies ( and x354 ( and x402 true ) ) ( = tmp565 2 ) )
    ( implies ( and ( not x592 ) ( and ( not x544 ) true ) ) ( = tmp564 0 ) )
    ( implies ( and ( not x592 ) ( and x544 true ) ) ( = tmp564 1 ) )
    ( implies ( and x592 ( and ( not x544 ) true ) ) ( = tmp564 1 ) )
    ( implies ( and x592 ( and x544 true ) ) ( = tmp564 2 ) )
    ( implies ( and ( not x258 ) ( and ( not x306 ) true ) ) ( = tmp563 0 ) )
    ( implies ( and ( not x258 ) ( and x306 true ) ) ( = tmp563 1 ) )
    ( implies ( and x258 ( and ( not x306 ) true ) ) ( = tmp563 1 ) )
    ( implies ( and x258 ( and x306 true ) ) ( = tmp563 2 ) )
    ( implies ( and ( not x734 ) ( and ( not x639 ) true ) ) ( = tmp562 0 ) )
    ( implies ( and ( not x734 ) ( and x639 true ) ) ( = tmp562 1 ) )
    ( implies ( and x734 ( and ( not x639 ) true ) ) ( = tmp562 1 ) )
    ( implies ( and x734 ( and x639 true ) ) ( = tmp562 2 ) )
    ( implies ( and ( not x166 ) ( and ( not x214 ) true ) ) ( = tmp561 0 ) )
    ( implies ( and ( not x166 ) ( and x214 true ) ) ( = tmp561 1 ) )
    ( implies ( and x166 ( and ( not x214 ) true ) ) ( = tmp561 1 ) )
    ( implies ( and x166 ( and x214 true ) ) ( = tmp561 2 ) )
    ( implies ( and ( not x767 ) ( and ( not x766 ) true ) ) ( = tmp560 0 ) )
    ( implies ( and ( not x767 ) ( and x766 true ) ) ( = tmp560 1 ) )
    ( implies ( and x767 ( and ( not x766 ) true ) ) ( = tmp560 1 ) )
    ( implies ( and x767 ( and x766 true ) ) ( = tmp560 2 ) )
    ( implies ( and ( not x23 ) ( and ( not x71 ) true ) ) ( = tmp559 0 ) )
    ( implies ( and ( not x23 ) ( and x71 true ) ) ( = tmp559 1 ) )
    ( implies ( and x23 ( and ( not x71 ) true ) ) ( = tmp559 1 ) )
    ( implies ( and x23 ( and x71 true ) ) ( = tmp559 2 ) )
    ( implies ( and ( not x449 ) ( and ( not x401 ) true ) ) ( = tmp558 0 ) )
    ( implies ( and ( not x449 ) ( and x401 true ) ) ( = tmp558 1 ) )
    ( implies ( and x449 ( and ( not x401 ) true ) ) ( = tmp558 1 ) )
    ( implies ( and x449 ( and x401 true ) ) ( = tmp558 2 ) )
    ( implies ( and ( not x305 ) ( and ( not x353 ) true ) ) ( = tmp557 0 ) )
    ( implies ( and ( not x305 ) ( and x353 true ) ) ( = tmp557 1 ) )
    ( implies ( and x305 ( and ( not x353 ) true ) ) ( = tmp557 1 ) )
    ( implies ( and x305 ( and x353 true ) ) ( = tmp557 2 ) )
    ( implies ( and ( not x543 ) ( and ( not x495 ) true ) ) ( = tmp556 0 ) )
    ( implies ( and ( not x543 ) ( and x495 true ) ) ( = tmp556 1 ) )
    ( implies ( and x543 ( and ( not x495 ) true ) ) ( = tmp556 1 ) )
    ( implies ( and x543 ( and x495 true ) ) ( = tmp556 2 ) )
    ( implies ( and ( not x213 ) ( and ( not x257 ) true ) ) ( = tmp555 0 ) )
    ( implies ( and ( not x213 ) ( and x257 true ) ) ( = tmp555 1 ) )
    ( implies ( and x213 ( and ( not x257 ) true ) ) ( = tmp555 1 ) )
    ( implies ( and x213 ( and x257 true ) ) ( = tmp555 2 ) )
    ( implies ( and ( not x638 ) ( and ( not x591 ) true ) ) ( = tmp554 0 ) )
    ( implies ( and ( not x638 ) ( and x591 true ) ) ( = tmp554 1 ) )
    ( implies ( and x638 ( and ( not x591 ) true ) ) ( = tmp554 1 ) )
    ( implies ( and x638 ( and x591 true ) ) ( = tmp554 2 ) )
    ( implies ( and ( not x118 ) ( and ( not x165 ) true ) ) ( = tmp553 0 ) )
    ( implies ( and ( not x118 ) ( and x165 true ) ) ( = tmp553 1 ) )
    ( implies ( and x118 ( and ( not x165 ) true ) ) ( = tmp553 1 ) )
    ( implies ( and x118 ( and x165 true ) ) ( = tmp553 2 ) )
    ( implies ( and ( not x733 ) ( and ( not x686 ) true ) ) ( = tmp552 0 ) )
    ( implies ( and ( not x733 ) ( and x686 true ) ) ( = tmp552 1 ) )
    ( implies ( and x733 ( and ( not x686 ) true ) ) ( = tmp552 1 ) )
    ( implies ( and x733 ( and x686 true ) ) ( = tmp552 2 ) )
    ( implies ( and ( not x22 ) ( and ( not x70 ) true ) ) ( = tmp551 0 ) )
    ( implies ( and ( not x22 ) ( and x70 true ) ) ( = tmp551 1 ) )
    ( implies ( and x22 ( and ( not x70 ) true ) ) ( = tmp551 1 ) )
    ( implies ( and x22 ( and x70 true ) ) ( = tmp551 2 ) )
    ( implies ( and ( not x448 ) ( and ( not x400 ) true ) ) ( = tmp550 0 ) )
    ( implies ( and ( not x448 ) ( and x400 true ) ) ( = tmp550 1 ) )
    ( implies ( and x448 ( and ( not x400 ) true ) ) ( = tmp550 1 ) )
    ( implies ( and x448 ( and x400 true ) ) ( = tmp550 2 ) )
    ( implies ( and ( not x304 ) ( and ( not x352 ) true ) ) ( = tmp549 0 ) )
    ( implies ( and ( not x304 ) ( and x352 true ) ) ( = tmp549 1 ) )
    ( implies ( and x304 ( and ( not x352 ) true ) ) ( = tmp549 1 ) )
    ( implies ( and x304 ( and x352 true ) ) ( = tmp549 2 ) )
    ( implies ( and ( not x542 ) ( and ( not x494 ) true ) ) ( = tmp548 0 ) )
    ( implies ( and ( not x542 ) ( and x494 true ) ) ( = tmp548 1 ) )
    ( implies ( and x542 ( and ( not x494 ) true ) ) ( = tmp548 1 ) )
    ( implies ( and x542 ( and x494 true ) ) ( = tmp548 2 ) )
    ( implies ( and ( not x212 ) ( and ( not x256 ) true ) ) ( = tmp547 0 ) )
    ( implies ( and ( not x212 ) ( and x256 true ) ) ( = tmp547 1 ) )
    ( implies ( and x212 ( and ( not x256 ) true ) ) ( = tmp547 1 ) )
    ( implies ( and x212 ( and x256 true ) ) ( = tmp547 2 ) )
    ( implies ( and ( not x637 ) ( and ( not x590 ) true ) ) ( = tmp546 0 ) )
    ( implies ( and ( not x637 ) ( and x590 true ) ) ( = tmp546 1 ) )
    ( implies ( and x637 ( and ( not x590 ) true ) ) ( = tmp546 1 ) )
    ( implies ( and x637 ( and x590 true ) ) ( = tmp546 2 ) )
    ( implies ( and ( not x117 ) ( and ( not x164 ) true ) ) ( = tmp545 0 ) )
    ( implies ( and ( not x117 ) ( and x164 true ) ) ( = tmp545 1 ) )
    ( implies ( and x117 ( and ( not x164 ) true ) ) ( = tmp545 1 ) )
    ( implies ( and x117 ( and x164 true ) ) ( = tmp545 2 ) )
    ( implies ( and ( not x732 ) ( and ( not x685 ) true ) ) ( = tmp544 0 ) )
    ( implies ( and ( not x732 ) ( and x685 true ) ) ( = tmp544 1 ) )
    ( implies ( and x732 ( and ( not x685 ) true ) ) ( = tmp544 1 ) )
    ( implies ( and x732 ( and x685 true ) ) ( = tmp544 2 ) )
    ( implies ( and ( not x21 ) ( and ( not x69 ) true ) ) ( = tmp543 0 ) )
    ( implies ( and ( not x21 ) ( and x69 true ) ) ( = tmp543 1 ) )
    ( implies ( and x21 ( and ( not x69 ) true ) ) ( = tmp543 1 ) )
    ( implies ( and x21 ( and x69 true ) ) ( = tmp543 2 ) )
    ( implies ( and ( not x447 ) ( and ( not x399 ) true ) ) ( = tmp542 0 ) )
    ( implies ( and ( not x447 ) ( and x399 true ) ) ( = tmp542 1 ) )
    ( implies ( and x447 ( and ( not x399 ) true ) ) ( = tmp542 1 ) )
    ( implies ( and x447 ( and x399 true ) ) ( = tmp542 2 ) )
    ( implies ( and ( not x303 ) ( and ( not x351 ) true ) ) ( = tmp541 0 ) )
    ( implies ( and ( not x303 ) ( and x351 true ) ) ( = tmp541 1 ) )
    ( implies ( and x303 ( and ( not x351 ) true ) ) ( = tmp541 1 ) )
    ( implies ( and x303 ( and x351 true ) ) ( = tmp541 2 ) )
    ( implies ( and ( not x541 ) ( and ( not x493 ) true ) ) ( = tmp540 0 ) )
    ( implies ( and ( not x541 ) ( and x493 true ) ) ( = tmp540 1 ) )
    ( implies ( and x541 ( and ( not x493 ) true ) ) ( = tmp540 1 ) )
    ( implies ( and x541 ( and x493 true ) ) ( = tmp540 2 ) )
    ( implies ( and ( not x211 ) ( and ( not x255 ) true ) ) ( = tmp539 0 ) )
    ( implies ( and ( not x211 ) ( and x255 true ) ) ( = tmp539 1 ) )
    ( implies ( and x211 ( and ( not x255 ) true ) ) ( = tmp539 1 ) )
    ( implies ( and x211 ( and x255 true ) ) ( = tmp539 2 ) )
    ( implies ( and ( not x636 ) ( and ( not x589 ) true ) ) ( = tmp538 0 ) )
    ( implies ( and ( not x636 ) ( and x589 true ) ) ( = tmp538 1 ) )
    ( implies ( and x636 ( and ( not x589 ) true ) ) ( = tmp538 1 ) )
    ( implies ( and x636 ( and x589 true ) ) ( = tmp538 2 ) )
    ( implies ( and ( not x116 ) ( and ( not x163 ) true ) ) ( = tmp537 0 ) )
    ( implies ( and ( not x116 ) ( and x163 true ) ) ( = tmp537 1 ) )
    ( implies ( and x116 ( and ( not x163 ) true ) ) ( = tmp537 1 ) )
    ( implies ( and x116 ( and x163 true ) ) ( = tmp537 2 ) )
    ( implies ( and ( not x731 ) ( and ( not x684 ) true ) ) ( = tmp536 0 ) )
    ( implies ( and ( not x731 ) ( and x684 true ) ) ( = tmp536 1 ) )
    ( implies ( and x731 ( and ( not x684 ) true ) ) ( = tmp536 1 ) )
    ( implies ( and x731 ( and x684 true ) ) ( = tmp536 2 ) )
    ( implies ( and ( not x20 ) ( and ( not x68 ) true ) ) ( = tmp535 0 ) )
    ( implies ( and ( not x20 ) ( and x68 true ) ) ( = tmp535 1 ) )
    ( implies ( and x20 ( and ( not x68 ) true ) ) ( = tmp535 1 ) )
    ( implies ( and x20 ( and x68 true ) ) ( = tmp535 2 ) )
    ( implies ( and ( not x446 ) ( and ( not x398 ) true ) ) ( = tmp534 0 ) )
    ( implies ( and ( not x446 ) ( and x398 true ) ) ( = tmp534 1 ) )
    ( implies ( and x446 ( and ( not x398 ) true ) ) ( = tmp534 1 ) )
    ( implies ( and x446 ( and x398 true ) ) ( = tmp534 2 ) )
    ( implies ( and ( not x302 ) ( and ( not x350 ) true ) ) ( = tmp533 0 ) )
    ( implies ( and ( not x302 ) ( and x350 true ) ) ( = tmp533 1 ) )
    ( implies ( and x302 ( and ( not x350 ) true ) ) ( = tmp533 1 ) )
    ( implies ( and x302 ( and x350 true ) ) ( = tmp533 2 ) )
    ( implies ( and ( not x540 ) ( and ( not x492 ) true ) ) ( = tmp532 0 ) )
    ( implies ( and ( not x540 ) ( and x492 true ) ) ( = tmp532 1 ) )
    ( implies ( and x540 ( and ( not x492 ) true ) ) ( = tmp532 1 ) )
    ( implies ( and x540 ( and x492 true ) ) ( = tmp532 2 ) )
    ( implies ( and ( not x210 ) ( and ( not x254 ) true ) ) ( = tmp531 0 ) )
    ( implies ( and ( not x210 ) ( and x254 true ) ) ( = tmp531 1 ) )
    ( implies ( and x210 ( and ( not x254 ) true ) ) ( = tmp531 1 ) )
    ( implies ( and x210 ( and x254 true ) ) ( = tmp531 2 ) )
    ( implies ( and ( not x635 ) ( and ( not x588 ) true ) ) ( = tmp530 0 ) )
    ( implies ( and ( not x635 ) ( and x588 true ) ) ( = tmp530 1 ) )
    ( implies ( and x635 ( and ( not x588 ) true ) ) ( = tmp530 1 ) )
    ( implies ( and x635 ( and x588 true ) ) ( = tmp530 2 ) )
    ( implies ( and ( not x115 ) ( and ( not x162 ) true ) ) ( = tmp529 0 ) )
    ( implies ( and ( not x115 ) ( and x162 true ) ) ( = tmp529 1 ) )
    ( implies ( and x115 ( and ( not x162 ) true ) ) ( = tmp529 1 ) )
    ( implies ( and x115 ( and x162 true ) ) ( = tmp529 2 ) )
    ( implies ( and ( not x730 ) ( and ( not x683 ) true ) ) ( = tmp528 0 ) )
    ( implies ( and ( not x730 ) ( and x683 true ) ) ( = tmp528 1 ) )
    ( implies ( and x730 ( and ( not x683 ) true ) ) ( = tmp528 1 ) )
    ( implies ( and x730 ( and x683 true ) ) ( = tmp528 2 ) )
    ( implies ( and ( not x19 ) ( and ( not x67 ) true ) ) ( = tmp527 0 ) )
    ( implies ( and ( not x19 ) ( and x67 true ) ) ( = tmp527 1 ) )
    ( implies ( and x19 ( and ( not x67 ) true ) ) ( = tmp527 1 ) )
    ( implies ( and x19 ( and x67 true ) ) ( = tmp527 2 ) )
    ( implies ( and ( not x445 ) ( and ( not x397 ) true ) ) ( = tmp526 0 ) )
    ( implies ( and ( not x445 ) ( and x397 true ) ) ( = tmp526 1 ) )
    ( implies ( and x445 ( and ( not x397 ) true ) ) ( = tmp526 1 ) )
    ( implies ( and x445 ( and x397 true ) ) ( = tmp526 2 ) )
    ( implies ( and ( not x301 ) ( and ( not x349 ) true ) ) ( = tmp525 0 ) )
    ( implies ( and ( not x301 ) ( and x349 true ) ) ( = tmp525 1 ) )
    ( implies ( and x301 ( and ( not x349 ) true ) ) ( = tmp525 1 ) )
    ( implies ( and x301 ( and x349 true ) ) ( = tmp525 2 ) )
    ( implies ( and ( not x539 ) ( and ( not x491 ) true ) ) ( = tmp524 0 ) )
    ( implies ( and ( not x539 ) ( and x491 true ) ) ( = tmp524 1 ) )
    ( implies ( and x539 ( and ( not x491 ) true ) ) ( = tmp524 1 ) )
    ( implies ( and x539 ( and x491 true ) ) ( = tmp524 2 ) )
    ( implies ( and ( not x209 ) ( and ( not x253 ) true ) ) ( = tmp523 0 ) )
    ( implies ( and ( not x209 ) ( and x253 true ) ) ( = tmp523 1 ) )
    ( implies ( and x209 ( and ( not x253 ) true ) ) ( = tmp523 1 ) )
    ( implies ( and x209 ( and x253 true ) ) ( = tmp523 2 ) )
    ( implies ( and ( not x634 ) ( and ( not x587 ) true ) ) ( = tmp522 0 ) )
    ( implies ( and ( not x634 ) ( and x587 true ) ) ( = tmp522 1 ) )
    ( implies ( and x634 ( and ( not x587 ) true ) ) ( = tmp522 1 ) )
    ( implies ( and x634 ( and x587 true ) ) ( = tmp522 2 ) )
    ( implies ( and ( not x114 ) ( and ( not x161 ) true ) ) ( = tmp521 0 ) )
    ( implies ( and ( not x114 ) ( and x161 true ) ) ( = tmp521 1 ) )
    ( implies ( and x114 ( and ( not x161 ) true ) ) ( = tmp521 1 ) )
    ( implies ( and x114 ( and x161 true ) ) ( = tmp521 2 ) )
    ( implies ( and ( not x729 ) ( and ( not x682 ) true ) ) ( = tmp520 0 ) )
    ( implies ( and ( not x729 ) ( and x682 true ) ) ( = tmp520 1 ) )
    ( implies ( and x729 ( and ( not x682 ) true ) ) ( = tmp520 1 ) )
    ( implies ( and x729 ( and x682 true ) ) ( = tmp520 2 ) )
    ( implies ( and ( not x18 ) ( and ( not x66 ) true ) ) ( = tmp519 0 ) )
    ( implies ( and ( not x18 ) ( and x66 true ) ) ( = tmp519 1 ) )
    ( implies ( and x18 ( and ( not x66 ) true ) ) ( = tmp519 1 ) )
    ( implies ( and x18 ( and x66 true ) ) ( = tmp519 2 ) )
    ( implies ( and ( not x490 ) ( and ( not x444 ) true ) ) ( = tmp518 0 ) )
    ( implies ( and ( not x490 ) ( and x444 true ) ) ( = tmp518 1 ) )
    ( implies ( and x490 ( and ( not x444 ) true ) ) ( = tmp518 1 ) )
    ( implies ( and x490 ( and x444 true ) ) ( = tmp518 2 ) )
    ( implies ( and ( not x348 ) ( and ( not x396 ) true ) ) ( = tmp517 0 ) )
    ( implies ( and ( not x348 ) ( and x396 true ) ) ( = tmp517 1 ) )
    ( implies ( and x348 ( and ( not x396 ) true ) ) ( = tmp517 1 ) )
    ( implies ( and x348 ( and x396 true ) ) ( = tmp517 2 ) )
    ( implies ( and ( not x586 ) ( and ( not x538 ) true ) ) ( = tmp516 0 ) )
    ( implies ( and ( not x586 ) ( and x538 true ) ) ( = tmp516 1 ) )
    ( implies ( and x586 ( and ( not x538 ) true ) ) ( = tmp516 1 ) )
    ( implies ( and x586 ( and x538 true ) ) ( = tmp516 2 ) )
    ( implies ( and ( not x252 ) ( and ( not x300 ) true ) ) ( = tmp515 0 ) )
    ( implies ( and ( not x252 ) ( and x300 true ) ) ( = tmp515 1 ) )
    ( implies ( and x252 ( and ( not x300 ) true ) ) ( = tmp515 1 ) )
    ( implies ( and x252 ( and x300 true ) ) ( = tmp515 2 ) )
    ( implies ( and ( not x681 ) ( and ( not x633 ) true ) ) ( = tmp514 0 ) )
    ( implies ( and ( not x681 ) ( and x633 true ) ) ( = tmp514 1 ) )
    ( implies ( and x681 ( and ( not x633 ) true ) ) ( = tmp514 1 ) )
    ( implies ( and x681 ( and x633 true ) ) ( = tmp514 2 ) )
    ( implies ( and ( not x160 ) ( and ( not x208 ) true ) ) ( = tmp513 0 ) )
    ( implies ( and ( not x160 ) ( and x208 true ) ) ( = tmp513 1 ) )
    ( implies ( and x160 ( and ( not x208 ) true ) ) ( = tmp513 1 ) )
    ( implies ( and x160 ( and x208 true ) ) ( = tmp513 2 ) )
    ( implies ( and ( not x765 ) ( and ( not x728 ) true ) ) ( = tmp512 0 ) )
    ( implies ( and ( not x765 ) ( and x728 true ) ) ( = tmp512 1 ) )
    ( implies ( and x765 ( and ( not x728 ) true ) ) ( = tmp512 1 ) )
    ( implies ( and x765 ( and x728 true ) ) ( = tmp512 2 ) )
    ( implies ( and ( not x65 ) ( and ( not x113 ) true ) ) ( = tmp511 0 ) )
    ( implies ( and ( not x65 ) ( and x113 true ) ) ( = tmp511 1 ) )
    ( implies ( and x65 ( and ( not x113 ) true ) ) ( = tmp511 1 ) )
    ( implies ( and x65 ( and x113 true ) ) ( = tmp511 2 ) )
    ( implies ( and ( not x443 ) ( and ( not x395 ) true ) ) ( = tmp510 0 ) )
    ( implies ( and ( not x443 ) ( and x395 true ) ) ( = tmp510 1 ) )
    ( implies ( and x443 ( and ( not x395 ) true ) ) ( = tmp510 1 ) )
    ( implies ( and x443 ( and x395 true ) ) ( = tmp510 2 ) )
    ( implies ( and ( not x299 ) ( and ( not x347 ) true ) ) ( = tmp509 0 ) )
    ( implies ( and ( not x299 ) ( and x347 true ) ) ( = tmp509 1 ) )
    ( implies ( and x299 ( and ( not x347 ) true ) ) ( = tmp509 1 ) )
    ( implies ( and x299 ( and x347 true ) ) ( = tmp509 2 ) )
    ( implies ( and ( not x537 ) ( and ( not x489 ) true ) ) ( = tmp508 0 ) )
    ( implies ( and ( not x537 ) ( and x489 true ) ) ( = tmp508 1 ) )
    ( implies ( and x537 ( and ( not x489 ) true ) ) ( = tmp508 1 ) )
    ( implies ( and x537 ( and x489 true ) ) ( = tmp508 2 ) )
    ( implies ( and ( not x207 ) ( and ( not x251 ) true ) ) ( = tmp507 0 ) )
    ( implies ( and ( not x207 ) ( and x251 true ) ) ( = tmp507 1 ) )
    ( implies ( and x207 ( and ( not x251 ) true ) ) ( = tmp507 1 ) )
    ( implies ( and x207 ( and x251 true ) ) ( = tmp507 2 ) )
    ( implies ( and ( not x632 ) ( and ( not x585 ) true ) ) ( = tmp506 0 ) )
    ( implies ( and ( not x632 ) ( and x585 true ) ) ( = tmp506 1 ) )
    ( implies ( and x632 ( and ( not x585 ) true ) ) ( = tmp506 1 ) )
    ( implies ( and x632 ( and x585 true ) ) ( = tmp506 2 ) )
    ( implies ( and ( not x112 ) ( and ( not x159 ) true ) ) ( = tmp505 0 ) )
    ( implies ( and ( not x112 ) ( and x159 true ) ) ( = tmp505 1 ) )
    ( implies ( and x112 ( and ( not x159 ) true ) ) ( = tmp505 1 ) )
    ( implies ( and x112 ( and x159 true ) ) ( = tmp505 2 ) )
    ( implies ( and ( not x727 ) ( and ( not x680 ) true ) ) ( = tmp504 0 ) )
    ( implies ( and ( not x727 ) ( and x680 true ) ) ( = tmp504 1 ) )
    ( implies ( and x727 ( and ( not x680 ) true ) ) ( = tmp504 1 ) )
    ( implies ( and x727 ( and x680 true ) ) ( = tmp504 2 ) )
    ( implies ( and ( not x17 ) ( and ( not x64 ) true ) ) ( = tmp503 0 ) )
    ( implies ( and ( not x17 ) ( and x64 true ) ) ( = tmp503 1 ) )
    ( implies ( and x17 ( and ( not x64 ) true ) ) ( = tmp503 1 ) )
    ( implies ( and x17 ( and x64 true ) ) ( = tmp503 2 ) )
    ( implies ( and ( not x442 ) ( and ( not x394 ) true ) ) ( = tmp502 0 ) )
    ( implies ( and ( not x442 ) ( and x394 true ) ) ( = tmp502 1 ) )
    ( implies ( and x442 ( and ( not x394 ) true ) ) ( = tmp502 1 ) )
    ( implies ( and x442 ( and x394 true ) ) ( = tmp502 2 ) )
    ( implies ( and ( not x298 ) ( and ( not x346 ) true ) ) ( = tmp501 0 ) )
    ( implies ( and ( not x298 ) ( and x346 true ) ) ( = tmp501 1 ) )
    ( implies ( and x298 ( and ( not x346 ) true ) ) ( = tmp501 1 ) )
    ( implies ( and x298 ( and x346 true ) ) ( = tmp501 2 ) )
    ( implies ( and ( not x536 ) ( and ( not x488 ) true ) ) ( = tmp500 0 ) )
    ( implies ( and ( not x536 ) ( and x488 true ) ) ( = tmp500 1 ) )
    ( implies ( and x536 ( and ( not x488 ) true ) ) ( = tmp500 1 ) )
    ( implies ( and x536 ( and x488 true ) ) ( = tmp500 2 ) )
    ( implies ( and ( not x206 ) ( and ( not x250 ) true ) ) ( = tmp499 0 ) )
    ( implies ( and ( not x206 ) ( and x250 true ) ) ( = tmp499 1 ) )
    ( implies ( and x206 ( and ( not x250 ) true ) ) ( = tmp499 1 ) )
    ( implies ( and x206 ( and x250 true ) ) ( = tmp499 2 ) )
    ( implies ( and ( not x631 ) ( and ( not x584 ) true ) ) ( = tmp498 0 ) )
    ( implies ( and ( not x631 ) ( and x584 true ) ) ( = tmp498 1 ) )
    ( implies ( and x631 ( and ( not x584 ) true ) ) ( = tmp498 1 ) )
    ( implies ( and x631 ( and x584 true ) ) ( = tmp498 2 ) )
    ( implies ( and ( not x111 ) ( and ( not x158 ) true ) ) ( = tmp497 0 ) )
    ( implies ( and ( not x111 ) ( and x158 true ) ) ( = tmp497 1 ) )
    ( implies ( and x111 ( and ( not x158 ) true ) ) ( = tmp497 1 ) )
    ( implies ( and x111 ( and x158 true ) ) ( = tmp497 2 ) )
    ( implies ( and ( not x726 ) ( and ( not x679 ) true ) ) ( = tmp496 0 ) )
    ( implies ( and ( not x726 ) ( and x679 true ) ) ( = tmp496 1 ) )
    ( implies ( and x726 ( and ( not x679 ) true ) ) ( = tmp496 1 ) )
    ( implies ( and x726 ( and x679 true ) ) ( = tmp496 2 ) )
    ( implies ( and ( not x16 ) ( and ( not x63 ) true ) ) ( = tmp495 0 ) )
    ( implies ( and ( not x16 ) ( and x63 true ) ) ( = tmp495 1 ) )
    ( implies ( and x16 ( and ( not x63 ) true ) ) ( = tmp495 1 ) )
    ( implies ( and x16 ( and x63 true ) ) ( = tmp495 2 ) )
    ( implies ( and ( not x441 ) ( and ( not x393 ) true ) ) ( = tmp494 0 ) )
    ( implies ( and ( not x441 ) ( and x393 true ) ) ( = tmp494 1 ) )
    ( implies ( and x441 ( and ( not x393 ) true ) ) ( = tmp494 1 ) )
    ( implies ( and x441 ( and x393 true ) ) ( = tmp494 2 ) )
    ( implies ( and ( not x297 ) ( and ( not x345 ) true ) ) ( = tmp493 0 ) )
    ( implies ( and ( not x297 ) ( and x345 true ) ) ( = tmp493 1 ) )
    ( implies ( and x297 ( and ( not x345 ) true ) ) ( = tmp493 1 ) )
    ( implies ( and x297 ( and x345 true ) ) ( = tmp493 2 ) )
    ( implies ( and ( not x535 ) ( and ( not x487 ) true ) ) ( = tmp492 0 ) )
    ( implies ( and ( not x535 ) ( and x487 true ) ) ( = tmp492 1 ) )
    ( implies ( and x535 ( and ( not x487 ) true ) ) ( = tmp492 1 ) )
    ( implies ( and x535 ( and x487 true ) ) ( = tmp492 2 ) )
    ( implies ( and ( not x205 ) ( and ( not x249 ) true ) ) ( = tmp491 0 ) )
    ( implies ( and ( not x205 ) ( and x249 true ) ) ( = tmp491 1 ) )
    ( implies ( and x205 ( and ( not x249 ) true ) ) ( = tmp491 1 ) )
    ( implies ( and x205 ( and x249 true ) ) ( = tmp491 2 ) )
    ( implies ( and ( not x630 ) ( and ( not x583 ) true ) ) ( = tmp490 0 ) )
    ( implies ( and ( not x630 ) ( and x583 true ) ) ( = tmp490 1 ) )
    ( implies ( and x630 ( and ( not x583 ) true ) ) ( = tmp490 1 ) )
    ( implies ( and x630 ( and x583 true ) ) ( = tmp490 2 ) )
    ( implies ( and ( not x110 ) ( and ( not x157 ) true ) ) ( = tmp489 0 ) )
    ( implies ( and ( not x110 ) ( and x157 true ) ) ( = tmp489 1 ) )
    ( implies ( and x110 ( and ( not x157 ) true ) ) ( = tmp489 1 ) )
    ( implies ( and x110 ( and x157 true ) ) ( = tmp489 2 ) )
    ( implies ( and ( not x725 ) ( and ( not x678 ) true ) ) ( = tmp488 0 ) )
    ( implies ( and ( not x725 ) ( and x678 true ) ) ( = tmp488 1 ) )
    ( implies ( and x725 ( and ( not x678 ) true ) ) ( = tmp488 1 ) )
    ( implies ( and x725 ( and x678 true ) ) ( = tmp488 2 ) )
    ( implies ( and ( not x15 ) ( and ( not x62 ) true ) ) ( = tmp487 0 ) )
    ( implies ( and ( not x15 ) ( and x62 true ) ) ( = tmp487 1 ) )
    ( implies ( and x15 ( and ( not x62 ) true ) ) ( = tmp487 1 ) )
    ( implies ( and x15 ( and x62 true ) ) ( = tmp487 2 ) )
    ( implies ( and ( not x486 ) ( and ( not x440 ) true ) ) ( = tmp486 0 ) )
    ( implies ( and ( not x486 ) ( and x440 true ) ) ( = tmp486 1 ) )
    ( implies ( and x486 ( and ( not x440 ) true ) ) ( = tmp486 1 ) )
    ( implies ( and x486 ( and x440 true ) ) ( = tmp486 2 ) )
    ( implies ( and ( not x344 ) ( and ( not x392 ) true ) ) ( = tmp485 0 ) )
    ( implies ( and ( not x344 ) ( and x392 true ) ) ( = tmp485 1 ) )
    ( implies ( and x344 ( and ( not x392 ) true ) ) ( = tmp485 1 ) )
    ( implies ( and x344 ( and x392 true ) ) ( = tmp485 2 ) )
    ( implies ( and ( not x582 ) ( and ( not x534 ) true ) ) ( = tmp484 0 ) )
    ( implies ( and ( not x582 ) ( and x534 true ) ) ( = tmp484 1 ) )
    ( implies ( and x582 ( and ( not x534 ) true ) ) ( = tmp484 1 ) )
    ( implies ( and x582 ( and x534 true ) ) ( = tmp484 2 ) )
    ( implies ( and ( not x204 ) ( and ( not x296 ) true ) ) ( = tmp483 0 ) )
    ( implies ( and ( not x204 ) ( and x296 true ) ) ( = tmp483 1 ) )
    ( implies ( and x204 ( and ( not x296 ) true ) ) ( = tmp483 1 ) )
    ( implies ( and x204 ( and x296 true ) ) ( = tmp483 2 ) )
    ( implies ( and ( not x677 ) ( and ( not x629 ) true ) ) ( = tmp482 0 ) )
    ( implies ( and ( not x677 ) ( and x629 true ) ) ( = tmp482 1 ) )
    ( implies ( and x677 ( and ( not x629 ) true ) ) ( = tmp482 1 ) )
    ( implies ( and x677 ( and x629 true ) ) ( = tmp482 2 ) )
    ( implies ( and ( not x109 ) ( and ( not x156 ) true ) ) ( = tmp481 0 ) )
    ( implies ( and ( not x109 ) ( and x156 true ) ) ( = tmp481 1 ) )
    ( implies ( and x109 ( and ( not x156 ) true ) ) ( = tmp481 1 ) )
    ( implies ( and x109 ( and x156 true ) ) ( = tmp481 2 ) )
    ( implies ( and ( not x764 ) ( and ( not x724 ) true ) ) ( = tmp480 0 ) )
    ( implies ( and ( not x764 ) ( and x724 true ) ) ( = tmp480 1 ) )
    ( implies ( and x764 ( and ( not x724 ) true ) ) ( = tmp480 1 ) )
    ( implies ( and x764 ( and x724 true ) ) ( = tmp480 2 ) )
    ( implies ( and ( not x14 ) ( and ( not x61 ) true ) ) ( = tmp479 0 ) )
    ( implies ( and ( not x14 ) ( and x61 true ) ) ( = tmp479 1 ) )
    ( implies ( and x14 ( and ( not x61 ) true ) ) ( = tmp479 1 ) )
    ( implies ( and x14 ( and x61 true ) ) ( = tmp479 2 ) )
    ( implies ( and ( not x485 ) ( and ( not x439 ) true ) ) ( = tmp478 0 ) )
    ( implies ( and ( not x485 ) ( and x439 true ) ) ( = tmp478 1 ) )
    ( implies ( and x485 ( and ( not x439 ) true ) ) ( = tmp478 1 ) )
    ( implies ( and x485 ( and x439 true ) ) ( = tmp478 2 ) )
    ( implies ( and ( not x343 ) ( and ( not x391 ) true ) ) ( = tmp477 0 ) )
    ( implies ( and ( not x343 ) ( and x391 true ) ) ( = tmp477 1 ) )
    ( implies ( and x343 ( and ( not x391 ) true ) ) ( = tmp477 1 ) )
    ( implies ( and x343 ( and x391 true ) ) ( = tmp477 2 ) )
    ( implies ( and ( not x581 ) ( and ( not x533 ) true ) ) ( = tmp476 0 ) )
    ( implies ( and ( not x581 ) ( and x533 true ) ) ( = tmp476 1 ) )
    ( implies ( and x581 ( and ( not x533 ) true ) ) ( = tmp476 1 ) )
    ( implies ( and x581 ( and x533 true ) ) ( = tmp476 2 ) )
    ( implies ( and ( not x203 ) ( and ( not x295 ) true ) ) ( = tmp475 0 ) )
    ( implies ( and ( not x203 ) ( and x295 true ) ) ( = tmp475 1 ) )
    ( implies ( and x203 ( and ( not x295 ) true ) ) ( = tmp475 1 ) )
    ( implies ( and x203 ( and x295 true ) ) ( = tmp475 2 ) )
    ( implies ( and ( not x676 ) ( and ( not x628 ) true ) ) ( = tmp474 0 ) )
    ( implies ( and ( not x676 ) ( and x628 true ) ) ( = tmp474 1 ) )
    ( implies ( and x676 ( and ( not x628 ) true ) ) ( = tmp474 1 ) )
    ( implies ( and x676 ( and x628 true ) ) ( = tmp474 2 ) )
    ( implies ( and ( not x108 ) ( and ( not x155 ) true ) ) ( = tmp473 0 ) )
    ( implies ( and ( not x108 ) ( and x155 true ) ) ( = tmp473 1 ) )
    ( implies ( and x108 ( and ( not x155 ) true ) ) ( = tmp473 1 ) )
    ( implies ( and x108 ( and x155 true ) ) ( = tmp473 2 ) )
    ( implies ( and ( not x763 ) ( and ( not x723 ) true ) ) ( = tmp472 0 ) )
    ( implies ( and ( not x763 ) ( and x723 true ) ) ( = tmp472 1 ) )
    ( implies ( and x763 ( and ( not x723 ) true ) ) ( = tmp472 1 ) )
    ( implies ( and x763 ( and x723 true ) ) ( = tmp472 2 ) )
    ( implies ( and ( not x13 ) ( and ( not x60 ) true ) ) ( = tmp471 0 ) )
    ( implies ( and ( not x13 ) ( and x60 true ) ) ( = tmp471 1 ) )
    ( implies ( and x13 ( and ( not x60 ) true ) ) ( = tmp471 1 ) )
    ( implies ( and x13 ( and x60 true ) ) ( = tmp471 2 ) )
    ( implies ( and ( not x484 ) ( and ( not x438 ) true ) ) ( = tmp470 0 ) )
    ( implies ( and ( not x484 ) ( and x438 true ) ) ( = tmp470 1 ) )
    ( implies ( and x484 ( and ( not x438 ) true ) ) ( = tmp470 1 ) )
    ( implies ( and x484 ( and x438 true ) ) ( = tmp470 2 ) )
    ( implies ( and ( not x342 ) ( and ( not x390 ) true ) ) ( = tmp469 0 ) )
    ( implies ( and ( not x342 ) ( and x390 true ) ) ( = tmp469 1 ) )
    ( implies ( and x342 ( and ( not x390 ) true ) ) ( = tmp469 1 ) )
    ( implies ( and x342 ( and x390 true ) ) ( = tmp469 2 ) )
    ( implies ( and ( not x580 ) ( and ( not x532 ) true ) ) ( = tmp468 0 ) )
    ( implies ( and ( not x580 ) ( and x532 true ) ) ( = tmp468 1 ) )
    ( implies ( and x580 ( and ( not x532 ) true ) ) ( = tmp468 1 ) )
    ( implies ( and x580 ( and x532 true ) ) ( = tmp468 2 ) )
    ( implies ( and ( not x202 ) ( and ( not x294 ) true ) ) ( = tmp467 0 ) )
    ( implies ( and ( not x202 ) ( and x294 true ) ) ( = tmp467 1 ) )
    ( implies ( and x202 ( and ( not x294 ) true ) ) ( = tmp467 1 ) )
    ( implies ( and x202 ( and x294 true ) ) ( = tmp467 2 ) )
    ( implies ( and ( not x675 ) ( and ( not x627 ) true ) ) ( = tmp466 0 ) )
    ( implies ( and ( not x675 ) ( and x627 true ) ) ( = tmp466 1 ) )
    ( implies ( and x675 ( and ( not x627 ) true ) ) ( = tmp466 1 ) )
    ( implies ( and x675 ( and x627 true ) ) ( = tmp466 2 ) )
    ( implies ( and ( not x107 ) ( and ( not x154 ) true ) ) ( = tmp465 0 ) )
    ( implies ( and ( not x107 ) ( and x154 true ) ) ( = tmp465 1 ) )
    ( implies ( and x107 ( and ( not x154 ) true ) ) ( = tmp465 1 ) )
    ( implies ( and x107 ( and x154 true ) ) ( = tmp465 2 ) )
    ( implies ( and ( not x762 ) ( and ( not x722 ) true ) ) ( = tmp464 0 ) )
    ( implies ( and ( not x762 ) ( and x722 true ) ) ( = tmp464 1 ) )
    ( implies ( and x762 ( and ( not x722 ) true ) ) ( = tmp464 1 ) )
    ( implies ( and x762 ( and x722 true ) ) ( = tmp464 2 ) )
    ( implies ( and ( not x12 ) ( and ( not x59 ) true ) ) ( = tmp463 0 ) )
    ( implies ( and ( not x12 ) ( and x59 true ) ) ( = tmp463 1 ) )
    ( implies ( and x12 ( and ( not x59 ) true ) ) ( = tmp463 1 ) )
    ( implies ( and x12 ( and x59 true ) ) ( = tmp463 2 ) )
    ( implies ( and ( not x483 ) ( and ( not x437 ) true ) ) ( = tmp462 0 ) )
    ( implies ( and ( not x483 ) ( and x437 true ) ) ( = tmp462 1 ) )
    ( implies ( and x483 ( and ( not x437 ) true ) ) ( = tmp462 1 ) )
    ( implies ( and x483 ( and x437 true ) ) ( = tmp462 2 ) )
    ( implies ( and ( not x341 ) ( and ( not x389 ) true ) ) ( = tmp461 0 ) )
    ( implies ( and ( not x341 ) ( and x389 true ) ) ( = tmp461 1 ) )
    ( implies ( and x341 ( and ( not x389 ) true ) ) ( = tmp461 1 ) )
    ( implies ( and x341 ( and x389 true ) ) ( = tmp461 2 ) )
    ( implies ( and ( not x579 ) ( and ( not x531 ) true ) ) ( = tmp460 0 ) )
    ( implies ( and ( not x579 ) ( and x531 true ) ) ( = tmp460 1 ) )
    ( implies ( and x579 ( and ( not x531 ) true ) ) ( = tmp460 1 ) )
    ( implies ( and x579 ( and x531 true ) ) ( = tmp460 2 ) )
    ( implies ( and ( not x201 ) ( and ( not x293 ) true ) ) ( = tmp459 0 ) )
    ( implies ( and ( not x201 ) ( and x293 true ) ) ( = tmp459 1 ) )
    ( implies ( and x201 ( and ( not x293 ) true ) ) ( = tmp459 1 ) )
    ( implies ( and x201 ( and x293 true ) ) ( = tmp459 2 ) )
    ( implies ( and ( not x674 ) ( and ( not x626 ) true ) ) ( = tmp458 0 ) )
    ( implies ( and ( not x674 ) ( and x626 true ) ) ( = tmp458 1 ) )
    ( implies ( and x674 ( and ( not x626 ) true ) ) ( = tmp458 1 ) )
    ( implies ( and x674 ( and x626 true ) ) ( = tmp458 2 ) )
    ( implies ( and ( not x106 ) ( and ( not x153 ) true ) ) ( = tmp457 0 ) )
    ( implies ( and ( not x106 ) ( and x153 true ) ) ( = tmp457 1 ) )
    ( implies ( and x106 ( and ( not x153 ) true ) ) ( = tmp457 1 ) )
    ( implies ( and x106 ( and x153 true ) ) ( = tmp457 2 ) )
    ( implies ( and ( not x761 ) ( and ( not x721 ) true ) ) ( = tmp456 0 ) )
    ( implies ( and ( not x761 ) ( and x721 true ) ) ( = tmp456 1 ) )
    ( implies ( and x761 ( and ( not x721 ) true ) ) ( = tmp456 1 ) )
    ( implies ( and x761 ( and x721 true ) ) ( = tmp456 2 ) )
    ( implies ( and ( not x11 ) ( and ( not x58 ) true ) ) ( = tmp455 0 ) )
    ( implies ( and ( not x11 ) ( and x58 true ) ) ( = tmp455 1 ) )
    ( implies ( and x11 ( and ( not x58 ) true ) ) ( = tmp455 1 ) )
    ( implies ( and x11 ( and x58 true ) ) ( = tmp455 2 ) )
    ( implies ( and ( not x436 ) ( and ( not x388 ) true ) ) ( = tmp454 0 ) )
    ( implies ( and ( not x436 ) ( and x388 true ) ) ( = tmp454 1 ) )
    ( implies ( and x436 ( and ( not x388 ) true ) ) ( = tmp454 1 ) )
    ( implies ( and x436 ( and x388 true ) ) ( = tmp454 2 ) )
    ( implies ( and ( not x292 ) ( and ( not x340 ) true ) ) ( = tmp453 0 ) )
    ( implies ( and ( not x292 ) ( and x340 true ) ) ( = tmp453 1 ) )
    ( implies ( and x292 ( and ( not x340 ) true ) ) ( = tmp453 1 ) )
    ( implies ( and x292 ( and x340 true ) ) ( = tmp453 2 ) )
    ( implies ( and ( not x530 ) ( and ( not x482 ) true ) ) ( = tmp452 0 ) )
    ( implies ( and ( not x530 ) ( and x482 true ) ) ( = tmp452 1 ) )
    ( implies ( and x530 ( and ( not x482 ) true ) ) ( = tmp452 1 ) )
    ( implies ( and x530 ( and x482 true ) ) ( = tmp452 2 ) )
    ( implies ( and ( not x200 ) ( and ( not x248 ) true ) ) ( = tmp451 0 ) )
    ( implies ( and ( not x200 ) ( and x248 true ) ) ( = tmp451 1 ) )
    ( implies ( and x200 ( and ( not x248 ) true ) ) ( = tmp451 1 ) )
    ( implies ( and x200 ( and x248 true ) ) ( = tmp451 2 ) )
    ( implies ( and ( not x625 ) ( and ( not x578 ) true ) ) ( = tmp450 0 ) )
    ( implies ( and ( not x625 ) ( and x578 true ) ) ( = tmp450 1 ) )
    ( implies ( and x625 ( and ( not x578 ) true ) ) ( = tmp450 1 ) )
    ( implies ( and x625 ( and x578 true ) ) ( = tmp450 2 ) )
    ( implies ( and ( not x105 ) ( and ( not x152 ) true ) ) ( = tmp449 0 ) )
    ( implies ( and ( not x105 ) ( and x152 true ) ) ( = tmp449 1 ) )
    ( implies ( and x105 ( and ( not x152 ) true ) ) ( = tmp449 1 ) )
    ( implies ( and x105 ( and x152 true ) ) ( = tmp449 2 ) )
    ( implies ( and ( not x720 ) ( and ( not x673 ) true ) ) ( = tmp448 0 ) )
    ( implies ( and ( not x720 ) ( and x673 true ) ) ( = tmp448 1 ) )
    ( implies ( and x720 ( and ( not x673 ) true ) ) ( = tmp448 1 ) )
    ( implies ( and x720 ( and x673 true ) ) ( = tmp448 2 ) )
    ( implies ( and ( not x10 ) ( and ( not x57 ) true ) ) ( = tmp447 0 ) )
    ( implies ( and ( not x10 ) ( and x57 true ) ) ( = tmp447 1 ) )
    ( implies ( and x10 ( and ( not x57 ) true ) ) ( = tmp447 1 ) )
    ( implies ( and x10 ( and x57 true ) ) ( = tmp447 2 ) )
    ( implies ( and ( not x435 ) ( and ( not x387 ) true ) ) ( = tmp446 0 ) )
    ( implies ( and ( not x435 ) ( and x387 true ) ) ( = tmp446 1 ) )
    ( implies ( and x435 ( and ( not x387 ) true ) ) ( = tmp446 1 ) )
    ( implies ( and x435 ( and x387 true ) ) ( = tmp446 2 ) )
    ( implies ( and ( not x291 ) ( and ( not x339 ) true ) ) ( = tmp445 0 ) )
    ( implies ( and ( not x291 ) ( and x339 true ) ) ( = tmp445 1 ) )
    ( implies ( and x291 ( and ( not x339 ) true ) ) ( = tmp445 1 ) )
    ( implies ( and x291 ( and x339 true ) ) ( = tmp445 2 ) )
    ( implies ( and ( not x529 ) ( and ( not x481 ) true ) ) ( = tmp444 0 ) )
    ( implies ( and ( not x529 ) ( and x481 true ) ) ( = tmp444 1 ) )
    ( implies ( and x529 ( and ( not x481 ) true ) ) ( = tmp444 1 ) )
    ( implies ( and x529 ( and x481 true ) ) ( = tmp444 2 ) )
    ( implies ( and ( not x199 ) ( and ( not x247 ) true ) ) ( = tmp443 0 ) )
    ( implies ( and ( not x199 ) ( and x247 true ) ) ( = tmp443 1 ) )
    ( implies ( and x199 ( and ( not x247 ) true ) ) ( = tmp443 1 ) )
    ( implies ( and x199 ( and x247 true ) ) ( = tmp443 2 ) )
    ( implies ( and ( not x624 ) ( and ( not x577 ) true ) ) ( = tmp442 0 ) )
    ( implies ( and ( not x624 ) ( and x577 true ) ) ( = tmp442 1 ) )
    ( implies ( and x624 ( and ( not x577 ) true ) ) ( = tmp442 1 ) )
    ( implies ( and x624 ( and x577 true ) ) ( = tmp442 2 ) )
    ( implies ( and ( not x104 ) ( and ( not x151 ) true ) ) ( = tmp441 0 ) )
    ( implies ( and ( not x104 ) ( and x151 true ) ) ( = tmp441 1 ) )
    ( implies ( and x104 ( and ( not x151 ) true ) ) ( = tmp441 1 ) )
    ( implies ( and x104 ( and x151 true ) ) ( = tmp441 2 ) )
    ( implies ( and ( not x719 ) ( and ( not x672 ) true ) ) ( = tmp440 0 ) )
    ( implies ( and ( not x719 ) ( and x672 true ) ) ( = tmp440 1 ) )
    ( implies ( and x719 ( and ( not x672 ) true ) ) ( = tmp440 1 ) )
    ( implies ( and x719 ( and x672 true ) ) ( = tmp440 2 ) )
    ( implies ( and ( not x9 ) ( and ( not x56 ) true ) ) ( = tmp439 0 ) )
    ( implies ( and ( not x9 ) ( and x56 true ) ) ( = tmp439 1 ) )
    ( implies ( and x9 ( and ( not x56 ) true ) ) ( = tmp439 1 ) )
    ( implies ( and x9 ( and x56 true ) ) ( = tmp439 2 ) )
    ( implies ( and ( not x434 ) ( and ( not x386 ) true ) ) ( = tmp438 0 ) )
    ( implies ( and ( not x434 ) ( and x386 true ) ) ( = tmp438 1 ) )
    ( implies ( and x434 ( and ( not x386 ) true ) ) ( = tmp438 1 ) )
    ( implies ( and x434 ( and x386 true ) ) ( = tmp438 2 ) )
    ( implies ( and ( not x290 ) ( and ( not x338 ) true ) ) ( = tmp437 0 ) )
    ( implies ( and ( not x290 ) ( and x338 true ) ) ( = tmp437 1 ) )
    ( implies ( and x290 ( and ( not x338 ) true ) ) ( = tmp437 1 ) )
    ( implies ( and x290 ( and x338 true ) ) ( = tmp437 2 ) )
    ( implies ( and ( not x528 ) ( and ( not x480 ) true ) ) ( = tmp436 0 ) )
    ( implies ( and ( not x528 ) ( and x480 true ) ) ( = tmp436 1 ) )
    ( implies ( and x528 ( and ( not x480 ) true ) ) ( = tmp436 1 ) )
    ( implies ( and x528 ( and x480 true ) ) ( = tmp436 2 ) )
    ( implies ( and ( not x198 ) ( and ( not x246 ) true ) ) ( = tmp435 0 ) )
    ( implies ( and ( not x198 ) ( and x246 true ) ) ( = tmp435 1 ) )
    ( implies ( and x198 ( and ( not x246 ) true ) ) ( = tmp435 1 ) )
    ( implies ( and x198 ( and x246 true ) ) ( = tmp435 2 ) )
    ( implies ( and ( not x623 ) ( and ( not x576 ) true ) ) ( = tmp434 0 ) )
    ( implies ( and ( not x623 ) ( and x576 true ) ) ( = tmp434 1 ) )
    ( implies ( and x623 ( and ( not x576 ) true ) ) ( = tmp434 1 ) )
    ( implies ( and x623 ( and x576 true ) ) ( = tmp434 2 ) )
    ( implies ( and ( not x103 ) ( and ( not x150 ) true ) ) ( = tmp433 0 ) )
    ( implies ( and ( not x103 ) ( and x150 true ) ) ( = tmp433 1 ) )
    ( implies ( and x103 ( and ( not x150 ) true ) ) ( = tmp433 1 ) )
    ( implies ( and x103 ( and x150 true ) ) ( = tmp433 2 ) )
    ( implies ( and ( not x718 ) ( and ( not x671 ) true ) ) ( = tmp432 0 ) )
    ( implies ( and ( not x718 ) ( and x671 true ) ) ( = tmp432 1 ) )
    ( implies ( and x718 ( and ( not x671 ) true ) ) ( = tmp432 1 ) )
    ( implies ( and x718 ( and x671 true ) ) ( = tmp432 2 ) )
    ( implies ( and ( not x8 ) ( and ( not x55 ) true ) ) ( = tmp431 0 ) )
    ( implies ( and ( not x8 ) ( and x55 true ) ) ( = tmp431 1 ) )
    ( implies ( and x8 ( and ( not x55 ) true ) ) ( = tmp431 1 ) )
    ( implies ( and x8 ( and x55 true ) ) ( = tmp431 2 ) )
    ( implies ( and ( not x433 ) ( and ( not x385 ) true ) ) ( = tmp430 0 ) )
    ( implies ( and ( not x433 ) ( and x385 true ) ) ( = tmp430 1 ) )
    ( implies ( and x433 ( and ( not x385 ) true ) ) ( = tmp430 1 ) )
    ( implies ( and x433 ( and x385 true ) ) ( = tmp430 2 ) )
    ( implies ( and ( not x289 ) ( and ( not x337 ) true ) ) ( = tmp429 0 ) )
    ( implies ( and ( not x289 ) ( and x337 true ) ) ( = tmp429 1 ) )
    ( implies ( and x289 ( and ( not x337 ) true ) ) ( = tmp429 1 ) )
    ( implies ( and x289 ( and x337 true ) ) ( = tmp429 2 ) )
    ( implies ( and ( not x527 ) ( and ( not x479 ) true ) ) ( = tmp428 0 ) )
    ( implies ( and ( not x527 ) ( and x479 true ) ) ( = tmp428 1 ) )
    ( implies ( and x527 ( and ( not x479 ) true ) ) ( = tmp428 1 ) )
    ( implies ( and x527 ( and x479 true ) ) ( = tmp428 2 ) )
    ( implies ( and ( not x197 ) ( and ( not x245 ) true ) ) ( = tmp427 0 ) )
    ( implies ( and ( not x197 ) ( and x245 true ) ) ( = tmp427 1 ) )
    ( implies ( and x197 ( and ( not x245 ) true ) ) ( = tmp427 1 ) )
    ( implies ( and x197 ( and x245 true ) ) ( = tmp427 2 ) )
    ( implies ( and ( not x622 ) ( and ( not x575 ) true ) ) ( = tmp426 0 ) )
    ( implies ( and ( not x622 ) ( and x575 true ) ) ( = tmp426 1 ) )
    ( implies ( and x622 ( and ( not x575 ) true ) ) ( = tmp426 1 ) )
    ( implies ( and x622 ( and x575 true ) ) ( = tmp426 2 ) )
    ( implies ( and ( not x102 ) ( and ( not x149 ) true ) ) ( = tmp425 0 ) )
    ( implies ( and ( not x102 ) ( and x149 true ) ) ( = tmp425 1 ) )
    ( implies ( and x102 ( and ( not x149 ) true ) ) ( = tmp425 1 ) )
    ( implies ( and x102 ( and x149 true ) ) ( = tmp425 2 ) )
    ( implies ( and ( not x717 ) ( and ( not x670 ) true ) ) ( = tmp424 0 ) )
    ( implies ( and ( not x717 ) ( and x670 true ) ) ( = tmp424 1 ) )
    ( implies ( and x717 ( and ( not x670 ) true ) ) ( = tmp424 1 ) )
    ( implies ( and x717 ( and x670 true ) ) ( = tmp424 2 ) )
    ( implies ( and ( not x7 ) ( and ( not x54 ) true ) ) ( = tmp423 0 ) )
    ( implies ( and ( not x7 ) ( and x54 true ) ) ( = tmp423 1 ) )
    ( implies ( and x7 ( and ( not x54 ) true ) ) ( = tmp423 1 ) )
    ( implies ( and x7 ( and x54 true ) ) ( = tmp423 2 ) )
    ( implies ( and ( not x432 ) ( and ( not x384 ) true ) ) ( = tmp422 0 ) )
    ( implies ( and ( not x432 ) ( and x384 true ) ) ( = tmp422 1 ) )
    ( implies ( and x432 ( and ( not x384 ) true ) ) ( = tmp422 1 ) )
    ( implies ( and x432 ( and x384 true ) ) ( = tmp422 2 ) )
    ( implies ( and ( not x288 ) ( and ( not x336 ) true ) ) ( = tmp421 0 ) )
    ( implies ( and ( not x288 ) ( and x336 true ) ) ( = tmp421 1 ) )
    ( implies ( and x288 ( and ( not x336 ) true ) ) ( = tmp421 1 ) )
    ( implies ( and x288 ( and x336 true ) ) ( = tmp421 2 ) )
    ( implies ( and ( not x526 ) ( and ( not x478 ) true ) ) ( = tmp420 0 ) )
    ( implies ( and ( not x526 ) ( and x478 true ) ) ( = tmp420 1 ) )
    ( implies ( and x526 ( and ( not x478 ) true ) ) ( = tmp420 1 ) )
    ( implies ( and x526 ( and x478 true ) ) ( = tmp420 2 ) )
    ( implies ( and ( not x196 ) ( and ( not x244 ) true ) ) ( = tmp419 0 ) )
    ( implies ( and ( not x196 ) ( and x244 true ) ) ( = tmp419 1 ) )
    ( implies ( and x196 ( and ( not x244 ) true ) ) ( = tmp419 1 ) )
    ( implies ( and x196 ( and x244 true ) ) ( = tmp419 2 ) )
    ( implies ( and ( not x621 ) ( and ( not x574 ) true ) ) ( = tmp418 0 ) )
    ( implies ( and ( not x621 ) ( and x574 true ) ) ( = tmp418 1 ) )
    ( implies ( and x621 ( and ( not x574 ) true ) ) ( = tmp418 1 ) )
    ( implies ( and x621 ( and x574 true ) ) ( = tmp418 2 ) )
    ( implies ( and ( not x101 ) ( and ( not x148 ) true ) ) ( = tmp417 0 ) )
    ( implies ( and ( not x101 ) ( and x148 true ) ) ( = tmp417 1 ) )
    ( implies ( and x101 ( and ( not x148 ) true ) ) ( = tmp417 1 ) )
    ( implies ( and x101 ( and x148 true ) ) ( = tmp417 2 ) )
    ( implies ( and ( not x716 ) ( and ( not x669 ) true ) ) ( = tmp416 0 ) )
    ( implies ( and ( not x716 ) ( and x669 true ) ) ( = tmp416 1 ) )
    ( implies ( and x716 ( and ( not x669 ) true ) ) ( = tmp416 1 ) )
    ( implies ( and x716 ( and x669 true ) ) ( = tmp416 2 ) )
    ( implies ( and ( not x6 ) ( and ( not x53 ) true ) ) ( = tmp415 0 ) )
    ( implies ( and ( not x6 ) ( and x53 true ) ) ( = tmp415 1 ) )
    ( implies ( and x6 ( and ( not x53 ) true ) ) ( = tmp415 1 ) )
    ( implies ( and x6 ( and x53 true ) ) ( = tmp415 2 ) )
    ( implies ( and ( not x431 ) ( and ( not x383 ) true ) ) ( = tmp414 0 ) )
    ( implies ( and ( not x431 ) ( and x383 true ) ) ( = tmp414 1 ) )
    ( implies ( and x431 ( and ( not x383 ) true ) ) ( = tmp414 1 ) )
    ( implies ( and x431 ( and x383 true ) ) ( = tmp414 2 ) )
    ( implies ( and ( not x287 ) ( and ( not x335 ) true ) ) ( = tmp413 0 ) )
    ( implies ( and ( not x287 ) ( and x335 true ) ) ( = tmp413 1 ) )
    ( implies ( and x287 ( and ( not x335 ) true ) ) ( = tmp413 1 ) )
    ( implies ( and x287 ( and x335 true ) ) ( = tmp413 2 ) )
    ( implies ( and ( not x525 ) ( and ( not x477 ) true ) ) ( = tmp412 0 ) )
    ( implies ( and ( not x525 ) ( and x477 true ) ) ( = tmp412 1 ) )
    ( implies ( and x525 ( and ( not x477 ) true ) ) ( = tmp412 1 ) )
    ( implies ( and x525 ( and x477 true ) ) ( = tmp412 2 ) )
    ( implies ( and ( not x195 ) ( and ( not x243 ) true ) ) ( = tmp411 0 ) )
    ( implies ( and ( not x195 ) ( and x243 true ) ) ( = tmp411 1 ) )
    ( implies ( and x195 ( and ( not x243 ) true ) ) ( = tmp411 1 ) )
    ( implies ( and x195 ( and x243 true ) ) ( = tmp411 2 ) )
    ( implies ( and ( not x620 ) ( and ( not x573 ) true ) ) ( = tmp410 0 ) )
    ( implies ( and ( not x620 ) ( and x573 true ) ) ( = tmp410 1 ) )
    ( implies ( and x620 ( and ( not x573 ) true ) ) ( = tmp410 1 ) )
    ( implies ( and x620 ( and x573 true ) ) ( = tmp410 2 ) )
    ( implies ( and ( not x100 ) ( and ( not x147 ) true ) ) ( = tmp409 0 ) )
    ( implies ( and ( not x100 ) ( and x147 true ) ) ( = tmp409 1 ) )
    ( implies ( and x100 ( and ( not x147 ) true ) ) ( = tmp409 1 ) )
    ( implies ( and x100 ( and x147 true ) ) ( = tmp409 2 ) )
    ( implies ( and ( not x715 ) ( and ( not x668 ) true ) ) ( = tmp408 0 ) )
    ( implies ( and ( not x715 ) ( and x668 true ) ) ( = tmp408 1 ) )
    ( implies ( and x715 ( and ( not x668 ) true ) ) ( = tmp408 1 ) )
    ( implies ( and x715 ( and x668 true ) ) ( = tmp408 2 ) )
    ( implies ( and ( not x5 ) ( and ( not x52 ) true ) ) ( = tmp407 0 ) )
    ( implies ( and ( not x5 ) ( and x52 true ) ) ( = tmp407 1 ) )
    ( implies ( and x5 ( and ( not x52 ) true ) ) ( = tmp407 1 ) )
    ( implies ( and x5 ( and x52 true ) ) ( = tmp407 2 ) )
    ( implies ( and ( not x430 ) ( and ( not x382 ) true ) ) ( = tmp406 0 ) )
    ( implies ( and ( not x430 ) ( and x382 true ) ) ( = tmp406 1 ) )
    ( implies ( and x430 ( and ( not x382 ) true ) ) ( = tmp406 1 ) )
    ( implies ( and x430 ( and x382 true ) ) ( = tmp406 2 ) )
    ( implies ( and ( not x286 ) ( and ( not x334 ) true ) ) ( = tmp405 0 ) )
    ( implies ( and ( not x286 ) ( and x334 true ) ) ( = tmp405 1 ) )
    ( implies ( and x286 ( and ( not x334 ) true ) ) ( = tmp405 1 ) )
    ( implies ( and x286 ( and x334 true ) ) ( = tmp405 2 ) )
    ( implies ( and ( not x524 ) ( and ( not x476 ) true ) ) ( = tmp404 0 ) )
    ( implies ( and ( not x524 ) ( and x476 true ) ) ( = tmp404 1 ) )
    ( implies ( and x524 ( and ( not x476 ) true ) ) ( = tmp404 1 ) )
    ( implies ( and x524 ( and x476 true ) ) ( = tmp404 2 ) )
    ( implies ( and ( not x194 ) ( and ( not x242 ) true ) ) ( = tmp403 0 ) )
    ( implies ( and ( not x194 ) ( and x242 true ) ) ( = tmp403 1 ) )
    ( implies ( and x194 ( and ( not x242 ) true ) ) ( = tmp403 1 ) )
    ( implies ( and x194 ( and x242 true ) ) ( = tmp403 2 ) )
    ( implies ( and ( not x619 ) ( and ( not x572 ) true ) ) ( = tmp402 0 ) )
    ( implies ( and ( not x619 ) ( and x572 true ) ) ( = tmp402 1 ) )
    ( implies ( and x619 ( and ( not x572 ) true ) ) ( = tmp402 1 ) )
    ( implies ( and x619 ( and x572 true ) ) ( = tmp402 2 ) )
    ( implies ( and ( not x99 ) ( and ( not x146 ) true ) ) ( = tmp401 0 ) )
    ( implies ( and ( not x99 ) ( and x146 true ) ) ( = tmp401 1 ) )
    ( implies ( and x99 ( and ( not x146 ) true ) ) ( = tmp401 1 ) )
    ( implies ( and x99 ( and x146 true ) ) ( = tmp401 2 ) )
    ( implies ( and ( not x714 ) ( and ( not x667 ) true ) ) ( = tmp400 0 ) )
    ( implies ( and ( not x714 ) ( and x667 true ) ) ( = tmp400 1 ) )
    ( implies ( and x714 ( and ( not x667 ) true ) ) ( = tmp400 1 ) )
    ( implies ( and x714 ( and x667 true ) ) ( = tmp400 2 ) )
    ( implies ( and ( not x4 ) ( and ( not x51 ) true ) ) ( = tmp399 0 ) )
    ( implies ( and ( not x4 ) ( and x51 true ) ) ( = tmp399 1 ) )
    ( implies ( and x4 ( and ( not x51 ) true ) ) ( = tmp399 1 ) )
    ( implies ( and x4 ( and x51 true ) ) ( = tmp399 2 ) )
    ( implies ( and ( not x429 ) ( and ( not x381 ) true ) ) ( = tmp398 0 ) )
    ( implies ( and ( not x429 ) ( and x381 true ) ) ( = tmp398 1 ) )
    ( implies ( and x429 ( and ( not x381 ) true ) ) ( = tmp398 1 ) )
    ( implies ( and x429 ( and x381 true ) ) ( = tmp398 2 ) )
    ( implies ( and ( not x285 ) ( and ( not x333 ) true ) ) ( = tmp397 0 ) )
    ( implies ( and ( not x285 ) ( and x333 true ) ) ( = tmp397 1 ) )
    ( implies ( and x285 ( and ( not x333 ) true ) ) ( = tmp397 1 ) )
    ( implies ( and x285 ( and x333 true ) ) ( = tmp397 2 ) )
    ( implies ( and ( not x523 ) ( and ( not x475 ) true ) ) ( = tmp396 0 ) )
    ( implies ( and ( not x523 ) ( and x475 true ) ) ( = tmp396 1 ) )
    ( implies ( and x523 ( and ( not x475 ) true ) ) ( = tmp396 1 ) )
    ( implies ( and x523 ( and x475 true ) ) ( = tmp396 2 ) )
    ( implies ( and ( not x193 ) ( and ( not x241 ) true ) ) ( = tmp395 0 ) )
    ( implies ( and ( not x193 ) ( and x241 true ) ) ( = tmp395 1 ) )
    ( implies ( and x193 ( and ( not x241 ) true ) ) ( = tmp395 1 ) )
    ( implies ( and x193 ( and x241 true ) ) ( = tmp395 2 ) )
    ( implies ( and ( not x618 ) ( and ( not x571 ) true ) ) ( = tmp394 0 ) )
    ( implies ( and ( not x618 ) ( and x571 true ) ) ( = tmp394 1 ) )
    ( implies ( and x618 ( and ( not x571 ) true ) ) ( = tmp394 1 ) )
    ( implies ( and x618 ( and x571 true ) ) ( = tmp394 2 ) )
    ( implies ( and ( not x98 ) ( and ( not x145 ) true ) ) ( = tmp393 0 ) )
    ( implies ( and ( not x98 ) ( and x145 true ) ) ( = tmp393 1 ) )
    ( implies ( and x98 ( and ( not x145 ) true ) ) ( = tmp393 1 ) )
    ( implies ( and x98 ( and x145 true ) ) ( = tmp393 2 ) )
    ( implies ( and ( not x713 ) ( and ( not x666 ) true ) ) ( = tmp392 0 ) )
    ( implies ( and ( not x713 ) ( and x666 true ) ) ( = tmp392 1 ) )
    ( implies ( and x713 ( and ( not x666 ) true ) ) ( = tmp392 1 ) )
    ( implies ( and x713 ( and x666 true ) ) ( = tmp392 2 ) )
    ( implies ( and ( not x3 ) ( and ( not x50 ) true ) ) ( = tmp391 0 ) )
    ( implies ( and ( not x3 ) ( and x50 true ) ) ( = tmp391 1 ) )
    ( implies ( and x3 ( and ( not x50 ) true ) ) ( = tmp391 1 ) )
    ( implies ( and x3 ( and x50 true ) ) ( = tmp391 2 ) )
    ( implies ( and ( not x428 ) ( and ( not x380 ) true ) ) ( = tmp390 0 ) )
    ( implies ( and ( not x428 ) ( and x380 true ) ) ( = tmp390 1 ) )
    ( implies ( and x428 ( and ( not x380 ) true ) ) ( = tmp390 1 ) )
    ( implies ( and x428 ( and x380 true ) ) ( = tmp390 2 ) )
    ( implies ( and ( not x284 ) ( and ( not x332 ) true ) ) ( = tmp389 0 ) )
    ( implies ( and ( not x284 ) ( and x332 true ) ) ( = tmp389 1 ) )
    ( implies ( and x284 ( and ( not x332 ) true ) ) ( = tmp389 1 ) )
    ( implies ( and x284 ( and x332 true ) ) ( = tmp389 2 ) )
    ( implies ( and ( not x570 ) ( and ( not x522 ) true ) ) ( = tmp388 0 ) )
    ( implies ( and ( not x570 ) ( and x522 true ) ) ( = tmp388 1 ) )
    ( implies ( and x570 ( and ( not x522 ) true ) ) ( = tmp388 1 ) )
    ( implies ( and x570 ( and x522 true ) ) ( = tmp388 2 ) )
    ( implies ( and ( not x192 ) ( and ( not x240 ) true ) ) ( = tmp387 0 ) )
    ( implies ( and ( not x192 ) ( and x240 true ) ) ( = tmp387 1 ) )
    ( implies ( and x192 ( and ( not x240 ) true ) ) ( = tmp387 1 ) )
    ( implies ( and x192 ( and x240 true ) ) ( = tmp387 2 ) )
    ( implies ( and ( not x665 ) ( and ( not x617 ) true ) ) ( = tmp386 0 ) )
    ( implies ( and ( not x665 ) ( and x617 true ) ) ( = tmp386 1 ) )
    ( implies ( and x665 ( and ( not x617 ) true ) ) ( = tmp386 1 ) )
    ( implies ( and x665 ( and x617 true ) ) ( = tmp386 2 ) )
    ( implies ( and ( not x97 ) ( and ( not x144 ) true ) ) ( = tmp385 0 ) )
    ( implies ( and ( not x97 ) ( and x144 true ) ) ( = tmp385 1 ) )
    ( implies ( and x97 ( and ( not x144 ) true ) ) ( = tmp385 1 ) )
    ( implies ( and x97 ( and x144 true ) ) ( = tmp385 2 ) )
    ( implies ( and ( not x760 ) ( and ( not x712 ) true ) ) ( = tmp384 0 ) )
    ( implies ( and ( not x760 ) ( and x712 true ) ) ( = tmp384 1 ) )
    ( implies ( and x760 ( and ( not x712 ) true ) ) ( = tmp384 1 ) )
    ( implies ( and x760 ( and x712 true ) ) ( = tmp384 2 ) )
    ( implies ( and ( not x2 ) ( and ( not x49 ) true ) ) ( = tmp383 0 ) )
    ( implies ( and ( not x2 ) ( and x49 true ) ) ( = tmp383 1 ) )
    ( implies ( and x2 ( and ( not x49 ) true ) ) ( = tmp383 1 ) )
    ( implies ( and x2 ( and x49 true ) ) ( = tmp383 2 ) )
    ( implies ( and ( not x737 ) ( and ( not x736 ) true ) ) ( = tmp382 0 ) )
    ( implies ( and ( not x737 ) ( and x736 true ) ) ( = tmp382 6 ) )
    ( implies ( and x737 ( and ( not x736 ) true ) ) ( = tmp382 6 ) )
    ( implies ( and x737 ( and x736 true ) ) ( = tmp382 12 ) )
    ( implies ( and ( not x734 ) ( and ( not x735 ) true ) ) ( = tmp381 0 ) )
    ( implies ( and ( not x734 ) ( and x735 true ) ) ( = tmp381 4 ) )
    ( implies ( and x734 ( and ( not x735 ) true ) ) ( = tmp381 4 ) )
    ( implies ( and x734 ( and x735 true ) ) ( = tmp381 8 ) )
    ( implies ( and ( not x739 ) ( and ( not x738 ) true ) ) ( = tmp380 0 ) )
    ( implies ( and ( not x739 ) ( and x738 true ) ) ( = tmp380 6 ) )
    ( implies ( and x739 ( and ( not x738 ) true ) ) ( = tmp380 6 ) )
    ( implies ( and x739 ( and x738 true ) ) ( = tmp380 12 ) )
    ( implies ( and ( not x732 ) ( and ( not x733 ) true ) ) ( = tmp379 0 ) )
    ( implies ( and ( not x732 ) ( and x733 true ) ) ( = tmp379 6 ) )
    ( implies ( and x732 ( and ( not x733 ) true ) ) ( = tmp379 6 ) )
    ( implies ( and x732 ( and x733 true ) ) ( = tmp379 12 ) )
    ( implies ( and ( not x741 ) ( and ( not x740 ) true ) ) ( = tmp378 0 ) )
    ( implies ( and ( not x741 ) ( and x740 true ) ) ( = tmp378 6 ) )
    ( implies ( and x741 ( and ( not x740 ) true ) ) ( = tmp378 8 ) )
    ( implies ( and x741 ( and x740 true ) ) ( = tmp378 14 ) )
    ( implies ( and ( not x730 ) ( and ( not x731 ) true ) ) ( = tmp377 0 ) )
    ( implies ( and ( not x730 ) ( and x731 true ) ) ( = tmp377 8 ) )
    ( implies ( and x730 ( and ( not x731 ) true ) ) ( = tmp377 8 ) )
    ( implies ( and x730 ( and x731 true ) ) ( = tmp377 16 ) )
    ( implies ( and ( not x743 ) ( and ( not x742 ) true ) ) ( = tmp376 0 ) )
    ( implies ( and ( not x743 ) ( and x742 true ) ) ( = tmp376 8 ) )
    ( implies ( and x743 ( and ( not x742 ) true ) ) ( = tmp376 8 ) )
    ( implies ( and x743 ( and x742 true ) ) ( = tmp376 16 ) )
    ( implies ( and ( not x728 ) ( and ( not x729 ) true ) ) ( = tmp375 0 ) )
    ( implies ( and ( not x728 ) ( and x729 true ) ) ( = tmp375 8 ) )
    ( implies ( and x728 ( and ( not x729 ) true ) ) ( = tmp375 8 ) )
    ( implies ( and x728 ( and x729 true ) ) ( = tmp375 16 ) )
    ( implies ( and ( not x745 ) ( and ( not x744 ) true ) ) ( = tmp374 0 ) )
    ( implies ( and ( not x745 ) ( and x744 true ) ) ( = tmp374 8 ) )
    ( implies ( and x745 ( and ( not x744 ) true ) ) ( = tmp374 8 ) )
    ( implies ( and x745 ( and x744 true ) ) ( = tmp374 16 ) )
    ( implies ( and ( not x726 ) ( and ( not x727 ) true ) ) ( = tmp373 0 ) )
    ( implies ( and ( not x726 ) ( and x727 true ) ) ( = tmp373 8 ) )
    ( implies ( and x726 ( and ( not x727 ) true ) ) ( = tmp373 8 ) )
    ( implies ( and x726 ( and x727 true ) ) ( = tmp373 16 ) )
    ( implies ( and ( not x747 ) ( and ( not x746 ) true ) ) ( = tmp372 0 ) )
    ( implies ( and ( not x747 ) ( and x746 true ) ) ( = tmp372 8 ) )
    ( implies ( and x747 ( and ( not x746 ) true ) ) ( = tmp372 8 ) )
    ( implies ( and x747 ( and x746 true ) ) ( = tmp372 16 ) )
    ( implies ( and ( not x724 ) ( and ( not x725 ) true ) ) ( = tmp371 0 ) )
    ( implies ( and ( not x724 ) ( and x725 true ) ) ( = tmp371 8 ) )
    ( implies ( and x724 ( and ( not x725 ) true ) ) ( = tmp371 8 ) )
    ( implies ( and x724 ( and x725 true ) ) ( = tmp371 16 ) )
    ( implies ( and ( not x749 ) ( and ( not x748 ) true ) ) ( = tmp370 0 ) )
    ( implies ( and ( not x749 ) ( and x748 true ) ) ( = tmp370 6 ) )
    ( implies ( and x749 ( and ( not x748 ) true ) ) ( = tmp370 6 ) )
    ( implies ( and x749 ( and x748 true ) ) ( = tmp370 12 ) )
    ( implies ( and ( not x722 ) ( and ( not x723 ) true ) ) ( = tmp369 0 ) )
    ( implies ( and ( not x722 ) ( and x723 true ) ) ( = tmp369 8 ) )
    ( implies ( and x722 ( and ( not x723 ) true ) ) ( = tmp369 8 ) )
    ( implies ( and x722 ( and x723 true ) ) ( = tmp369 16 ) )
    ( implies ( and ( not x751 ) ( and ( not x750 ) true ) ) ( = tmp368 0 ) )
    ( implies ( and ( not x751 ) ( and x750 true ) ) ( = tmp368 2 ) )
    ( implies ( and x751 ( and ( not x750 ) true ) ) ( = tmp368 6 ) )
    ( implies ( and x751 ( and x750 true ) ) ( = tmp368 8 ) )
    ( implies ( and ( not x720 ) ( and ( not x721 ) true ) ) ( = tmp367 0 ) )
    ( implies ( and ( not x720 ) ( and x721 true ) ) ( = tmp367 8 ) )
    ( implies ( and x720 ( and ( not x721 ) true ) ) ( = tmp367 8 ) )
    ( implies ( and x720 ( and x721 true ) ) ( = tmp367 16 ) )
    ( implies ( and ( not x753 ) ( and ( not x752 ) true ) ) ( = tmp366 0 ) )
    ( implies ( and ( not x753 ) ( and x752 true ) ) ( = tmp366 8 ) )
    ( implies ( and x753 ( and ( not x752 ) true ) ) ( = tmp366 8 ) )
    ( implies ( and x753 ( and x752 true ) ) ( = tmp366 16 ) )
    ( implies ( and ( not x718 ) ( and ( not x719 ) true ) ) ( = tmp365 0 ) )
    ( implies ( and ( not x718 ) ( and x719 true ) ) ( = tmp365 8 ) )
    ( implies ( and x718 ( and ( not x719 ) true ) ) ( = tmp365 6 ) )
    ( implies ( and x718 ( and x719 true ) ) ( = tmp365 14 ) )
    ( implies ( and ( not x755 ) ( and ( not x754 ) true ) ) ( = tmp364 0 ) )
    ( implies ( and ( not x755 ) ( and x754 true ) ) ( = tmp364 8 ) )
    ( implies ( and x755 ( and ( not x754 ) true ) ) ( = tmp364 8 ) )
    ( implies ( and x755 ( and x754 true ) ) ( = tmp364 16 ) )
    ( implies ( and ( not x716 ) ( and ( not x717 ) true ) ) ( = tmp363 0 ) )
    ( implies ( and ( not x716 ) ( and x717 true ) ) ( = tmp363 4 ) )
    ( implies ( and x716 ( and ( not x717 ) true ) ) ( = tmp363 6 ) )
    ( implies ( and x716 ( and x717 true ) ) ( = tmp363 10 ) )
    ( implies ( and ( not x757 ) ( and ( not x756 ) true ) ) ( = tmp362 0 ) )
    ( implies ( and ( not x757 ) ( and x756 true ) ) ( = tmp362 8 ) )
    ( implies ( and x757 ( and ( not x756 ) true ) ) ( = tmp362 8 ) )
    ( implies ( and x757 ( and x756 true ) ) ( = tmp362 16 ) )
    ( implies ( and ( not x714 ) ( and ( not x715 ) true ) ) ( = tmp361 0 ) )
    ( implies ( and ( not x714 ) ( and x715 true ) ) ( = tmp361 8 ) )
    ( implies ( and x714 ( and ( not x715 ) true ) ) ( = tmp361 8 ) )
    ( implies ( and x714 ( and x715 true ) ) ( = tmp361 16 ) )
    ( implies ( and ( not x759 ) ( and ( not x758 ) true ) ) ( = tmp360 0 ) )
    ( implies ( and ( not x759 ) ( and x758 true ) ) ( = tmp360 6 ) )
    ( implies ( and x759 ( and ( not x758 ) true ) ) ( = tmp360 8 ) )
    ( implies ( and x759 ( and x758 true ) ) ( = tmp360 14 ) )
    ( implies ( and ( not x712 ) ( and ( not x713 ) true ) ) ( = tmp359 0 ) )
    ( implies ( and ( not x712 ) ( and x713 true ) ) ( = tmp359 8 ) )
    ( implies ( and x712 ( and ( not x713 ) true ) ) ( = tmp359 8 ) )
    ( implies ( and x712 ( and x713 true ) ) ( = tmp359 16 ) )
    ( implies ( and ( not x689 ) true ) ( = tmp358 0 ) )
    ( implies ( and x689 true ) ( = tmp358 4 ) )
    ( implies ( and ( not x687 ) ( and ( not x688 ) true ) ) ( = tmp357 0 ) )
    ( implies ( and ( not x687 ) ( and x688 true ) ) ( = tmp357 4 ) )
    ( implies ( and x687 ( and ( not x688 ) true ) ) ( = tmp357 2 ) )
    ( implies ( and x687 ( and x688 true ) ) ( = tmp357 6 ) )
    ( implies ( and ( not x691 ) ( and ( not x690 ) true ) ) ( = tmp356 0 ) )
    ( implies ( and ( not x691 ) ( and x690 true ) ) ( = tmp356 2 ) )
    ( implies ( and x691 ( and ( not x690 ) true ) ) ( = tmp356 2 ) )
    ( implies ( and x691 ( and x690 true ) ) ( = tmp356 4 ) )
    ( implies ( and ( not x685 ) ( and ( not x686 ) true ) ) ( = tmp355 0 ) )
    ( implies ( and ( not x685 ) ( and x686 true ) ) ( = tmp355 4 ) )
    ( implies ( and x685 ( and ( not x686 ) true ) ) ( = tmp355 6 ) )
    ( implies ( and x685 ( and x686 true ) ) ( = tmp355 10 ) )
    ( implies ( and ( not x693 ) ( and ( not x692 ) true ) ) ( = tmp354 0 ) )
    ( implies ( and ( not x693 ) ( and x692 true ) ) ( = tmp354 4 ) )
    ( implies ( and x693 ( and ( not x692 ) true ) ) ( = tmp354 4 ) )
    ( implies ( and x693 ( and x692 true ) ) ( = tmp354 8 ) )
    ( implies ( and ( not x683 ) ( and ( not x684 ) true ) ) ( = tmp353 0 ) )
    ( implies ( and ( not x683 ) ( and x684 true ) ) ( = tmp353 6 ) )
    ( implies ( and x683 ( and ( not x684 ) true ) ) ( = tmp353 8 ) )
    ( implies ( and x683 ( and x684 true ) ) ( = tmp353 14 ) )
    ( implies ( and ( not x695 ) ( and ( not x694 ) true ) ) ( = tmp352 0 ) )
    ( implies ( and ( not x695 ) ( and x694 true ) ) ( = tmp352 4 ) )
    ( implies ( and x695 ( and ( not x694 ) true ) ) ( = tmp352 4 ) )
    ( implies ( and x695 ( and x694 true ) ) ( = tmp352 8 ) )
    ( implies ( and ( not x681 ) ( and ( not x682 ) true ) ) ( = tmp351 0 ) )
    ( implies ( and ( not x681 ) ( and x682 true ) ) ( = tmp351 8 ) )
    ( implies ( and x681 ( and ( not x682 ) true ) ) ( = tmp351 6 ) )
    ( implies ( and x681 ( and x682 true ) ) ( = tmp351 14 ) )
    ( implies ( and ( not x697 ) ( and ( not x696 ) true ) ) ( = tmp350 0 ) )
    ( implies ( and ( not x697 ) ( and x696 true ) ) ( = tmp350 2 ) )
    ( implies ( and x697 ( and ( not x696 ) true ) ) ( = tmp350 2 ) )
    ( implies ( and x697 ( and x696 true ) ) ( = tmp350 4 ) )
    ( implies ( and ( not x679 ) ( and ( not x680 ) true ) ) ( = tmp349 0 ) )
    ( implies ( and ( not x679 ) ( and x680 true ) ) ( = tmp349 6 ) )
    ( implies ( and x679 ( and ( not x680 ) true ) ) ( = tmp349 6 ) )
    ( implies ( and x679 ( and x680 true ) ) ( = tmp349 12 ) )
    ( implies ( and ( not x699 ) ( and ( not x698 ) true ) ) ( = tmp348 0 ) )
    ( implies ( and ( not x699 ) ( and x698 true ) ) ( = tmp348 4 ) )
    ( implies ( and x699 ( and ( not x698 ) true ) ) ( = tmp348 6 ) )
    ( implies ( and x699 ( and x698 true ) ) ( = tmp348 10 ) )
    ( implies ( and ( not x677 ) ( and ( not x678 ) true ) ) ( = tmp347 0 ) )
    ( implies ( and ( not x677 ) ( and x678 true ) ) ( = tmp347 6 ) )
    ( implies ( and x677 ( and ( not x678 ) true ) ) ( = tmp347 8 ) )
    ( implies ( and x677 ( and x678 true ) ) ( = tmp347 14 ) )
    ( implies ( and ( not x701 ) ( and ( not x700 ) true ) ) ( = tmp346 0 ) )
    ( implies ( and ( not x701 ) ( and x700 true ) ) ( = tmp346 6 ) )
    ( implies ( and x701 ( and ( not x700 ) true ) ) ( = tmp346 8 ) )
    ( implies ( and x701 ( and x700 true ) ) ( = tmp346 14 ) )
    ( implies ( and ( not x675 ) ( and ( not x676 ) true ) ) ( = tmp345 0 ) )
    ( implies ( and ( not x675 ) ( and x676 true ) ) ( = tmp345 8 ) )
    ( implies ( and x675 ( and ( not x676 ) true ) ) ( = tmp345 8 ) )
    ( implies ( and x675 ( and x676 true ) ) ( = tmp345 16 ) )
    ( implies ( and ( not x703 ) ( and ( not x702 ) true ) ) ( = tmp344 0 ) )
    ( implies ( and ( not x703 ) ( and x702 true ) ) ( = tmp344 6 ) )
    ( implies ( and x703 ( and ( not x702 ) true ) ) ( = tmp344 6 ) )
    ( implies ( and x703 ( and x702 true ) ) ( = tmp344 12 ) )
    ( implies ( and ( not x673 ) ( and ( not x674 ) true ) ) ( = tmp343 0 ) )
    ( implies ( and ( not x673 ) ( and x674 true ) ) ( = tmp343 8 ) )
    ( implies ( and x673 ( and ( not x674 ) true ) ) ( = tmp343 8 ) )
    ( implies ( and x673 ( and x674 true ) ) ( = tmp343 16 ) )
    ( implies ( and ( not x705 ) ( and ( not x704 ) true ) ) ( = tmp342 0 ) )
    ( implies ( and ( not x705 ) ( and x704 true ) ) ( = tmp342 4 ) )
    ( implies ( and x705 ( and ( not x704 ) true ) ) ( = tmp342 2 ) )
    ( implies ( and x705 ( and x704 true ) ) ( = tmp342 6 ) )
    ( implies ( and ( not x671 ) ( and ( not x672 ) true ) ) ( = tmp341 0 ) )
    ( implies ( and ( not x671 ) ( and x672 true ) ) ( = tmp341 8 ) )
    ( implies ( and x671 ( and ( not x672 ) true ) ) ( = tmp341 8 ) )
    ( implies ( and x671 ( and x672 true ) ) ( = tmp341 16 ) )
    ( implies ( and ( not x707 ) ( and ( not x706 ) true ) ) ( = tmp340 0 ) )
    ( implies ( and ( not x707 ) ( and x706 true ) ) ( = tmp340 2 ) )
    ( implies ( and x707 ( and ( not x706 ) true ) ) ( = tmp340 4 ) )
    ( implies ( and x707 ( and x706 true ) ) ( = tmp340 6 ) )
    ( implies ( and ( not x669 ) ( and ( not x670 ) true ) ) ( = tmp339 0 ) )
    ( implies ( and ( not x669 ) ( and x670 true ) ) ( = tmp339 8 ) )
    ( implies ( and x669 ( and ( not x670 ) true ) ) ( = tmp339 8 ) )
    ( implies ( and x669 ( and x670 true ) ) ( = tmp339 16 ) )
    ( implies ( and ( not x709 ) ( and ( not x708 ) true ) ) ( = tmp338 0 ) )
    ( implies ( and ( not x709 ) ( and x708 true ) ) ( = tmp338 6 ) )
    ( implies ( and x709 ( and ( not x708 ) true ) ) ( = tmp338 6 ) )
    ( implies ( and x709 ( and x708 true ) ) ( = tmp338 12 ) )
    ( implies ( and ( not x667 ) ( and ( not x668 ) true ) ) ( = tmp337 0 ) )
    ( implies ( and ( not x667 ) ( and x668 true ) ) ( = tmp337 8 ) )
    ( implies ( and x667 ( and ( not x668 ) true ) ) ( = tmp337 8 ) )
    ( implies ( and x667 ( and x668 true ) ) ( = tmp337 16 ) )
    ( implies ( and ( not x711 ) ( and ( not x710 ) true ) ) ( = tmp336 0 ) )
    ( implies ( and ( not x711 ) ( and x710 true ) ) ( = tmp336 6 ) )
    ( implies ( and x711 ( and ( not x710 ) true ) ) ( = tmp336 6 ) )
    ( implies ( and x711 ( and x710 true ) ) ( = tmp336 12 ) )
    ( implies ( and ( not x665 ) ( and ( not x666 ) true ) ) ( = tmp335 0 ) )
    ( implies ( and ( not x665 ) ( and x666 true ) ) ( = tmp335 8 ) )
    ( implies ( and x665 ( and ( not x666 ) true ) ) ( = tmp335 8 ) )
    ( implies ( and x665 ( and x666 true ) ) ( = tmp335 16 ) )
    ( implies ( and ( not x642 ) ( and ( not x641 ) true ) ) ( = tmp334 0 ) )
    ( implies ( and ( not x642 ) ( and x641 true ) ) ( = tmp334 6 ) )
    ( implies ( and x642 ( and ( not x641 ) true ) ) ( = tmp334 8 ) )
    ( implies ( and x642 ( and x641 true ) ) ( = tmp334 14 ) )
    ( implies ( and ( not x639 ) ( and ( not x640 ) true ) ) ( = tmp333 0 ) )
    ( implies ( and ( not x639 ) ( and x640 true ) ) ( = tmp333 6 ) )
    ( implies ( and x639 ( and ( not x640 ) true ) ) ( = tmp333 6 ) )
    ( implies ( and x639 ( and x640 true ) ) ( = tmp333 12 ) )
    ( implies ( and ( not x644 ) ( and ( not x643 ) true ) ) ( = tmp332 0 ) )
    ( implies ( and ( not x644 ) ( and x643 true ) ) ( = tmp332 8 ) )
    ( implies ( and x644 ( and ( not x643 ) true ) ) ( = tmp332 8 ) )
    ( implies ( and x644 ( and x643 true ) ) ( = tmp332 16 ) )
    ( implies ( and ( not x637 ) ( and ( not x638 ) true ) ) ( = tmp331 0 ) )
    ( implies ( and ( not x637 ) ( and x638 true ) ) ( = tmp331 6 ) )
    ( implies ( and x637 ( and ( not x638 ) true ) ) ( = tmp331 6 ) )
    ( implies ( and x637 ( and x638 true ) ) ( = tmp331 12 ) )
    ( implies ( and ( not x646 ) ( and ( not x645 ) true ) ) ( = tmp330 0 ) )
    ( implies ( and ( not x646 ) ( and x645 true ) ) ( = tmp330 8 ) )
    ( implies ( and x646 ( and ( not x645 ) true ) ) ( = tmp330 8 ) )
    ( implies ( and x646 ( and x645 true ) ) ( = tmp330 16 ) )
    ( implies ( and ( not x635 ) ( and ( not x636 ) true ) ) ( = tmp329 0 ) )
    ( implies ( and ( not x635 ) ( and x636 true ) ) ( = tmp329 6 ) )
    ( implies ( and x635 ( and ( not x636 ) true ) ) ( = tmp329 8 ) )
    ( implies ( and x635 ( and x636 true ) ) ( = tmp329 14 ) )
    ( implies ( and ( not x648 ) ( and ( not x647 ) true ) ) ( = tmp328 0 ) )
    ( implies ( and ( not x648 ) ( and x647 true ) ) ( = tmp328 8 ) )
    ( implies ( and x648 ( and ( not x647 ) true ) ) ( = tmp328 6 ) )
    ( implies ( and x648 ( and x647 true ) ) ( = tmp328 14 ) )
    ( implies ( and ( not x633 ) ( and ( not x634 ) true ) ) ( = tmp327 0 ) )
    ( implies ( and ( not x633 ) ( and x634 true ) ) ( = tmp327 8 ) )
    ( implies ( and x633 ( and ( not x634 ) true ) ) ( = tmp327 8 ) )
    ( implies ( and x633 ( and x634 true ) ) ( = tmp327 16 ) )
    ( implies ( and ( not x650 ) ( and ( not x649 ) true ) ) ( = tmp326 0 ) )
    ( implies ( and ( not x650 ) ( and x649 true ) ) ( = tmp326 6 ) )
    ( implies ( and x650 ( and ( not x649 ) true ) ) ( = tmp326 6 ) )
    ( implies ( and x650 ( and x649 true ) ) ( = tmp326 12 ) )
    ( implies ( and ( not x631 ) ( and ( not x632 ) true ) ) ( = tmp325 0 ) )
    ( implies ( and ( not x631 ) ( and x632 true ) ) ( = tmp325 6 ) )
    ( implies ( and x631 ( and ( not x632 ) true ) ) ( = tmp325 6 ) )
    ( implies ( and x631 ( and x632 true ) ) ( = tmp325 12 ) )
    ( implies ( and ( not x652 ) ( and ( not x651 ) true ) ) ( = tmp324 0 ) )
    ( implies ( and ( not x652 ) ( and x651 true ) ) ( = tmp324 6 ) )
    ( implies ( and x652 ( and ( not x651 ) true ) ) ( = tmp324 2 ) )
    ( implies ( and x652 ( and x651 true ) ) ( = tmp324 8 ) )
    ( implies ( and ( not x629 ) ( and ( not x630 ) true ) ) ( = tmp323 0 ) )
    ( implies ( and ( not x629 ) ( and x630 true ) ) ( = tmp323 2 ) )
    ( implies ( and x629 ( and ( not x630 ) true ) ) ( = tmp323 4 ) )
    ( implies ( and x629 ( and x630 true ) ) ( = tmp323 6 ) )
    ( implies ( and ( not x654 ) ( and ( not x653 ) true ) ) ( = tmp322 0 ) )
    ( implies ( and ( not x654 ) ( and x653 true ) ) ( = tmp322 4 ) )
    ( implies ( and x654 ( and ( not x653 ) true ) ) ( = tmp322 4 ) )
    ( implies ( and x654 ( and x653 true ) ) ( = tmp322 8 ) )
    ( implies ( and ( not x627 ) ( and ( not x628 ) true ) ) ( = tmp321 0 ) )
    ( implies ( and ( not x627 ) ( and x628 true ) ) ( = tmp321 4 ) )
    ( implies ( and x627 ( and ( not x628 ) true ) ) ( = tmp321 4 ) )
    ( implies ( and x627 ( and x628 true ) ) ( = tmp321 8 ) )
    ( implies ( and ( not x656 ) ( and ( not x655 ) true ) ) ( = tmp320 0 ) )
    ( implies ( and ( not x656 ) ( and x655 true ) ) ( = tmp320 4 ) )
    ( implies ( and x656 ( and ( not x655 ) true ) ) ( = tmp320 2 ) )
    ( implies ( and x656 ( and x655 true ) ) ( = tmp320 6 ) )
    ( implies ( and ( not x625 ) ( and ( not x626 ) true ) ) ( = tmp319 0 ) )
    ( implies ( and ( not x625 ) ( and x626 true ) ) ( = tmp319 4 ) )
    ( implies ( and x625 ( and ( not x626 ) true ) ) ( = tmp319 6 ) )
    ( implies ( and x625 ( and x626 true ) ) ( = tmp319 10 ) )
    ( implies ( and ( not x658 ) ( and ( not x657 ) true ) ) ( = tmp318 0 ) )
    ( implies ( and ( not x658 ) ( and x657 true ) ) ( = tmp318 4 ) )
    ( implies ( and x658 ( and ( not x657 ) true ) ) ( = tmp318 6 ) )
    ( implies ( and x658 ( and x657 true ) ) ( = tmp318 10 ) )
    ( implies ( and ( not x623 ) ( and ( not x624 ) true ) ) ( = tmp317 0 ) )
    ( implies ( and ( not x623 ) ( and x624 true ) ) ( = tmp317 6 ) )
    ( implies ( and x623 ( and ( not x624 ) true ) ) ( = tmp317 8 ) )
    ( implies ( and x623 ( and x624 true ) ) ( = tmp317 14 ) )
    ( implies ( and ( not x660 ) ( and ( not x659 ) true ) ) ( = tmp316 0 ) )
    ( implies ( and ( not x660 ) ( and x659 true ) ) ( = tmp316 8 ) )
    ( implies ( and x660 ( and ( not x659 ) true ) ) ( = tmp316 6 ) )
    ( implies ( and x660 ( and x659 true ) ) ( = tmp316 14 ) )
    ( implies ( and ( not x621 ) ( and ( not x622 ) true ) ) ( = tmp315 0 ) )
    ( implies ( and ( not x621 ) ( and x622 true ) ) ( = tmp315 6 ) )
    ( implies ( and x621 ( and ( not x622 ) true ) ) ( = tmp315 6 ) )
    ( implies ( and x621 ( and x622 true ) ) ( = tmp315 12 ) )
    ( implies ( and ( not x662 ) ( and ( not x661 ) true ) ) ( = tmp314 0 ) )
    ( implies ( and ( not x662 ) ( and x661 true ) ) ( = tmp314 6 ) )
    ( implies ( and x662 ( and ( not x661 ) true ) ) ( = tmp314 6 ) )
    ( implies ( and x662 ( and x661 true ) ) ( = tmp314 12 ) )
    ( implies ( and ( not x619 ) ( and ( not x620 ) true ) ) ( = tmp313 0 ) )
    ( implies ( and ( not x619 ) ( and x620 true ) ) ( = tmp313 6 ) )
    ( implies ( and x619 ( and ( not x620 ) true ) ) ( = tmp313 8 ) )
    ( implies ( and x619 ( and x620 true ) ) ( = tmp313 14 ) )
    ( implies ( and ( not x664 ) ( and ( not x663 ) true ) ) ( = tmp312 0 ) )
    ( implies ( and ( not x664 ) ( and x663 true ) ) ( = tmp312 6 ) )
    ( implies ( and x664 ( and ( not x663 ) true ) ) ( = tmp312 6 ) )
    ( implies ( and x664 ( and x663 true ) ) ( = tmp312 12 ) )
    ( implies ( and ( not x617 ) ( and ( not x618 ) true ) ) ( = tmp311 0 ) )
    ( implies ( and ( not x617 ) ( and x618 true ) ) ( = tmp311 8 ) )
    ( implies ( and x617 ( and ( not x618 ) true ) ) ( = tmp311 8 ) )
    ( implies ( and x617 ( and x618 true ) ) ( = tmp311 16 ) )
    ( implies ( and ( not x594 ) true ) ( = tmp310 0 ) )
    ( implies ( and x594 true ) ( = tmp310 1 ) )
    ( implies ( and ( not x592 ) ( and ( not x593 ) true ) ) ( = tmp309 0 ) )
    ( implies ( and ( not x592 ) ( and x593 true ) ) ( = tmp309 2 ) )
    ( implies ( and x592 ( and ( not x593 ) true ) ) ( = tmp309 4 ) )
    ( implies ( and x592 ( and x593 true ) ) ( = tmp309 6 ) )
    ( implies ( and ( not x596 ) ( and ( not x595 ) true ) ) ( = tmp308 0 ) )
    ( implies ( and ( not x596 ) ( and x595 true ) ) ( = tmp308 1 ) )
    ( implies ( and x596 ( and ( not x595 ) true ) ) ( = tmp308 4 ) )
    ( implies ( and x596 ( and x595 true ) ) ( = tmp308 5 ) )
    ( implies ( and ( not x590 ) ( and ( not x591 ) true ) ) ( = tmp307 0 ) )
    ( implies ( and ( not x590 ) ( and x591 true ) ) ( = tmp307 4 ) )
    ( implies ( and x590 ( and ( not x591 ) true ) ) ( = tmp307 4 ) )
    ( implies ( and x590 ( and x591 true ) ) ( = tmp307 8 ) )
    ( implies ( and ( not x598 ) ( and ( not x597 ) true ) ) ( = tmp306 0 ) )
    ( implies ( and ( not x598 ) ( and x597 true ) ) ( = tmp306 4 ) )
    ( implies ( and x598 ( and ( not x597 ) true ) ) ( = tmp306 4 ) )
    ( implies ( and x598 ( and x597 true ) ) ( = tmp306 8 ) )
    ( implies ( and ( not x588 ) ( and ( not x589 ) true ) ) ( = tmp305 0 ) )
    ( implies ( and ( not x588 ) ( and x589 true ) ) ( = tmp305 2 ) )
    ( implies ( and x588 ( and ( not x589 ) true ) ) ( = tmp305 4 ) )
    ( implies ( and x588 ( and x589 true ) ) ( = tmp305 6 ) )
    ( implies ( and ( not x600 ) ( and ( not x599 ) true ) ) ( = tmp304 0 ) )
    ( implies ( and ( not x600 ) ( and x599 true ) ) ( = tmp304 4 ) )
    ( implies ( and x600 ( and ( not x599 ) true ) ) ( = tmp304 4 ) )
    ( implies ( and x600 ( and x599 true ) ) ( = tmp304 8 ) )
    ( implies ( and ( not x586 ) ( and ( not x587 ) true ) ) ( = tmp303 0 ) )
    ( implies ( and ( not x586 ) ( and x587 true ) ) ( = tmp303 6 ) )
    ( implies ( and x586 ( and ( not x587 ) true ) ) ( = tmp303 6 ) )
    ( implies ( and x586 ( and x587 true ) ) ( = tmp303 12 ) )
    ( implies ( and ( not x602 ) ( and ( not x601 ) true ) ) ( = tmp302 0 ) )
    ( implies ( and ( not x602 ) ( and x601 true ) ) ( = tmp302 6 ) )
    ( implies ( and x602 ( and ( not x601 ) true ) ) ( = tmp302 6 ) )
    ( implies ( and x602 ( and x601 true ) ) ( = tmp302 12 ) )
    ( implies ( and ( not x584 ) ( and ( not x585 ) true ) ) ( = tmp301 0 ) )
    ( implies ( and ( not x584 ) ( and x585 true ) ) ( = tmp301 6 ) )
    ( implies ( and x584 ( and ( not x585 ) true ) ) ( = tmp301 8 ) )
    ( implies ( and x584 ( and x585 true ) ) ( = tmp301 14 ) )
    ( implies ( and ( not x604 ) ( and ( not x603 ) true ) ) ( = tmp300 0 ) )
    ( implies ( and ( not x604 ) ( and x603 true ) ) ( = tmp300 6 ) )
    ( implies ( and x604 ( and ( not x603 ) true ) ) ( = tmp300 6 ) )
    ( implies ( and x604 ( and x603 true ) ) ( = tmp300 12 ) )
    ( implies ( and ( not x582 ) ( and ( not x583 ) true ) ) ( = tmp299 0 ) )
    ( implies ( and ( not x582 ) ( and x583 true ) ) ( = tmp299 8 ) )
    ( implies ( and x582 ( and ( not x583 ) true ) ) ( = tmp299 8 ) )
    ( implies ( and x582 ( and x583 true ) ) ( = tmp299 16 ) )
    ( implies ( and ( not x606 ) ( and ( not x605 ) true ) ) ( = tmp298 0 ) )
    ( implies ( and ( not x606 ) ( and x605 true ) ) ( = tmp298 6 ) )
    ( implies ( and x606 ( and ( not x605 ) true ) ) ( = tmp298 6 ) )
    ( implies ( and x606 ( and x605 true ) ) ( = tmp298 12 ) )
    ( implies ( and ( not x580 ) ( and ( not x581 ) true ) ) ( = tmp297 0 ) )
    ( implies ( and ( not x580 ) ( and x581 true ) ) ( = tmp297 6 ) )
    ( implies ( and x580 ( and ( not x581 ) true ) ) ( = tmp297 6 ) )
    ( implies ( and x580 ( and x581 true ) ) ( = tmp297 12 ) )
    ( implies ( and ( not x608 ) ( and ( not x607 ) true ) ) ( = tmp296 0 ) )
    ( implies ( and ( not x608 ) ( and x607 true ) ) ( = tmp296 6 ) )
    ( implies ( and x608 ( and ( not x607 ) true ) ) ( = tmp296 4 ) )
    ( implies ( and x608 ( and x607 true ) ) ( = tmp296 10 ) )
    ( implies ( and ( not x578 ) ( and ( not x579 ) true ) ) ( = tmp295 0 ) )
    ( implies ( and ( not x578 ) ( and x579 true ) ) ( = tmp295 6 ) )
    ( implies ( and x578 ( and ( not x579 ) true ) ) ( = tmp295 6 ) )
    ( implies ( and x578 ( and x579 true ) ) ( = tmp295 12 ) )
    ( implies ( and ( not x610 ) ( and ( not x609 ) true ) ) ( = tmp294 0 ) )
    ( implies ( and ( not x610 ) ( and x609 true ) ) ( = tmp294 2 ) )
    ( implies ( and x610 ( and ( not x609 ) true ) ) ( = tmp294 2 ) )
    ( implies ( and x610 ( and x609 true ) ) ( = tmp294 4 ) )
    ( implies ( and ( not x576 ) ( and ( not x577 ) true ) ) ( = tmp293 0 ) )
    ( implies ( and ( not x576 ) ( and x577 true ) ) ( = tmp293 6 ) )
    ( implies ( and x576 ( and ( not x577 ) true ) ) ( = tmp293 6 ) )
    ( implies ( and x576 ( and x577 true ) ) ( = tmp293 12 ) )
    ( implies ( and ( not x612 ) ( and ( not x611 ) true ) ) ( = tmp292 0 ) )
    ( implies ( and ( not x612 ) ( and x611 true ) ) ( = tmp292 4 ) )
    ( implies ( and x612 ( and ( not x611 ) true ) ) ( = tmp292 4 ) )
    ( implies ( and x612 ( and x611 true ) ) ( = tmp292 8 ) )
    ( implies ( and ( not x574 ) ( and ( not x575 ) true ) ) ( = tmp291 0 ) )
    ( implies ( and ( not x574 ) ( and x575 true ) ) ( = tmp291 6 ) )
    ( implies ( and x574 ( and ( not x575 ) true ) ) ( = tmp291 6 ) )
    ( implies ( and x574 ( and x575 true ) ) ( = tmp291 12 ) )
    ( implies ( and ( not x614 ) ( and ( not x613 ) true ) ) ( = tmp290 0 ) )
    ( implies ( and ( not x614 ) ( and x613 true ) ) ( = tmp290 4 ) )
    ( implies ( and x614 ( and ( not x613 ) true ) ) ( = tmp290 4 ) )
    ( implies ( and x614 ( and x613 true ) ) ( = tmp290 8 ) )
    ( implies ( and ( not x572 ) ( and ( not x573 ) true ) ) ( = tmp289 0 ) )
    ( implies ( and ( not x572 ) ( and x573 true ) ) ( = tmp289 4 ) )
    ( implies ( and x572 ( and ( not x573 ) true ) ) ( = tmp289 4 ) )
    ( implies ( and x572 ( and x573 true ) ) ( = tmp289 8 ) )
    ( implies ( and ( not x616 ) ( and ( not x615 ) true ) ) ( = tmp288 0 ) )
    ( implies ( and ( not x616 ) ( and x615 true ) ) ( = tmp288 4 ) )
    ( implies ( and x616 ( and ( not x615 ) true ) ) ( = tmp288 4 ) )
    ( implies ( and x616 ( and x615 true ) ) ( = tmp288 8 ) )
    ( implies ( and ( not x570 ) ( and ( not x571 ) true ) ) ( = tmp287 0 ) )
    ( implies ( and ( not x570 ) ( and x571 true ) ) ( = tmp287 6 ) )
    ( implies ( and x570 ( and ( not x571 ) true ) ) ( = tmp287 6 ) )
    ( implies ( and x570 ( and x571 true ) ) ( = tmp287 12 ) )
    ( implies ( and ( not x547 ) ( and ( not x546 ) true ) ) ( = tmp286 0 ) )
    ( implies ( and ( not x547 ) ( and x546 true ) ) ( = tmp286 6 ) )
    ( implies ( and x547 ( and ( not x546 ) true ) ) ( = tmp286 6 ) )
    ( implies ( and x547 ( and x546 true ) ) ( = tmp286 12 ) )
    ( implies ( and ( not x544 ) ( and ( not x545 ) true ) ) ( = tmp285 0 ) )
    ( implies ( and ( not x544 ) ( and x545 true ) ) ( = tmp285 6 ) )
    ( implies ( and x544 ( and ( not x545 ) true ) ) ( = tmp285 4 ) )
    ( implies ( and x544 ( and x545 true ) ) ( = tmp285 10 ) )
    ( implies ( and ( not x549 ) ( and ( not x548 ) true ) ) ( = tmp284 0 ) )
    ( implies ( and ( not x549 ) ( and x548 true ) ) ( = tmp284 6 ) )
    ( implies ( and x549 ( and ( not x548 ) true ) ) ( = tmp284 6 ) )
    ( implies ( and x549 ( and x548 true ) ) ( = tmp284 12 ) )
    ( implies ( and ( not x542 ) ( and ( not x543 ) true ) ) ( = tmp283 0 ) )
    ( implies ( and ( not x542 ) ( and x543 true ) ) ( = tmp283 4 ) )
    ( implies ( and x542 ( and ( not x543 ) true ) ) ( = tmp283 4 ) )
    ( implies ( and x542 ( and x543 true ) ) ( = tmp283 8 ) )
    ( implies ( and ( not x551 ) ( and ( not x550 ) true ) ) ( = tmp282 0 ) )
    ( implies ( and ( not x551 ) ( and x550 true ) ) ( = tmp282 6 ) )
    ( implies ( and x551 ( and ( not x550 ) true ) ) ( = tmp282 6 ) )
    ( implies ( and x551 ( and x550 true ) ) ( = tmp282 12 ) )
    ( implies ( and ( not x540 ) ( and ( not x541 ) true ) ) ( = tmp281 0 ) )
    ( implies ( and ( not x540 ) ( and x541 true ) ) ( = tmp281 2 ) )
    ( implies ( and x540 ( and ( not x541 ) true ) ) ( = tmp281 2 ) )
    ( implies ( and x540 ( and x541 true ) ) ( = tmp281 4 ) )
    ( implies ( and ( not x553 ) ( and ( not x552 ) true ) ) ( = tmp280 0 ) )
    ( implies ( and ( not x553 ) ( and x552 true ) ) ( = tmp280 8 ) )
    ( implies ( and x553 ( and ( not x552 ) true ) ) ( = tmp280 8 ) )
    ( implies ( and x553 ( and x552 true ) ) ( = tmp280 16 ) )
    ( implies ( and ( not x538 ) ( and ( not x539 ) true ) ) ( = tmp279 0 ) )
    ( implies ( and ( not x538 ) ( and x539 true ) ) ( = tmp279 2 ) )
    ( implies ( and x538 ( and ( not x539 ) true ) ) ( = tmp279 2 ) )
    ( implies ( and x538 ( and x539 true ) ) ( = tmp279 4 ) )
    ( implies ( and ( not x555 ) ( and ( not x554 ) true ) ) ( = tmp278 0 ) )
    ( implies ( and ( not x555 ) ( and x554 true ) ) ( = tmp278 8 ) )
    ( implies ( and x555 ( and ( not x554 ) true ) ) ( = tmp278 6 ) )
    ( implies ( and x555 ( and x554 true ) ) ( = tmp278 14 ) )
    ( implies ( and ( not x536 ) ( and ( not x537 ) true ) ) ( = tmp277 0 ) )
    ( implies ( and ( not x536 ) ( and x537 true ) ) ( = tmp277 2 ) )
    ( implies ( and x536 ( and ( not x537 ) true ) ) ( = tmp277 2 ) )
    ( implies ( and x536 ( and x537 true ) ) ( = tmp277 4 ) )
    ( implies ( and ( not x557 ) ( and ( not x556 ) true ) ) ( = tmp276 0 ) )
    ( implies ( and ( not x557 ) ( and x556 true ) ) ( = tmp276 6 ) )
    ( implies ( and x557 ( and ( not x556 ) true ) ) ( = tmp276 6 ) )
    ( implies ( and x557 ( and x556 true ) ) ( = tmp276 12 ) )
    ( implies ( and ( not x534 ) ( and ( not x535 ) true ) ) ( = tmp275 0 ) )
    ( implies ( and ( not x534 ) ( and x535 true ) ) ( = tmp275 2 ) )
    ( implies ( and x534 ( and ( not x535 ) true ) ) ( = tmp275 2 ) )
    ( implies ( and x534 ( and x535 true ) ) ( = tmp275 4 ) )
    ( implies ( and ( not x559 ) ( and ( not x558 ) true ) ) ( = tmp274 0 ) )
    ( implies ( and ( not x559 ) ( and x558 true ) ) ( = tmp274 6 ) )
    ( implies ( and x559 ( and ( not x558 ) true ) ) ( = tmp274 6 ) )
    ( implies ( and x559 ( and x558 true ) ) ( = tmp274 12 ) )
    ( implies ( and ( not x532 ) ( and ( not x533 ) true ) ) ( = tmp273 0 ) )
    ( implies ( and ( not x532 ) ( and x533 true ) ) ( = tmp273 4 ) )
    ( implies ( and x532 ( and ( not x533 ) true ) ) ( = tmp273 4 ) )
    ( implies ( and x532 ( and x533 true ) ) ( = tmp273 8 ) )
    ( implies ( and ( not x561 ) ( and ( not x560 ) true ) ) ( = tmp272 0 ) )
    ( implies ( and ( not x561 ) ( and x560 true ) ) ( = tmp272 6 ) )
    ( implies ( and x561 ( and ( not x560 ) true ) ) ( = tmp272 6 ) )
    ( implies ( and x561 ( and x560 true ) ) ( = tmp272 12 ) )
    ( implies ( and ( not x530 ) ( and ( not x531 ) true ) ) ( = tmp271 0 ) )
    ( implies ( and ( not x530 ) ( and x531 true ) ) ( = tmp271 6 ) )
    ( implies ( and x530 ( and ( not x531 ) true ) ) ( = tmp271 6 ) )
    ( implies ( and x530 ( and x531 true ) ) ( = tmp271 12 ) )
    ( implies ( and ( not x563 ) ( and ( not x562 ) true ) ) ( = tmp270 0 ) )
    ( implies ( and ( not x563 ) ( and x562 true ) ) ( = tmp270 8 ) )
    ( implies ( and x563 ( and ( not x562 ) true ) ) ( = tmp270 8 ) )
    ( implies ( and x563 ( and x562 true ) ) ( = tmp270 16 ) )
    ( implies ( and ( not x528 ) ( and ( not x529 ) true ) ) ( = tmp269 0 ) )
    ( implies ( and ( not x528 ) ( and x529 true ) ) ( = tmp269 6 ) )
    ( implies ( and x528 ( and ( not x529 ) true ) ) ( = tmp269 8 ) )
    ( implies ( and x528 ( and x529 true ) ) ( = tmp269 14 ) )
    ( implies ( and ( not x565 ) ( and ( not x564 ) true ) ) ( = tmp268 0 ) )
    ( implies ( and ( not x565 ) ( and x564 true ) ) ( = tmp268 6 ) )
    ( implies ( and x565 ( and ( not x564 ) true ) ) ( = tmp268 6 ) )
    ( implies ( and x565 ( and x564 true ) ) ( = tmp268 12 ) )
    ( implies ( and ( not x526 ) ( and ( not x527 ) true ) ) ( = tmp267 0 ) )
    ( implies ( and ( not x526 ) ( and x527 true ) ) ( = tmp267 8 ) )
    ( implies ( and x526 ( and ( not x527 ) true ) ) ( = tmp267 8 ) )
    ( implies ( and x526 ( and x527 true ) ) ( = tmp267 16 ) )
    ( implies ( and ( not x567 ) ( and ( not x566 ) true ) ) ( = tmp266 0 ) )
    ( implies ( and ( not x567 ) ( and x566 true ) ) ( = tmp266 6 ) )
    ( implies ( and x567 ( and ( not x566 ) true ) ) ( = tmp266 6 ) )
    ( implies ( and x567 ( and x566 true ) ) ( = tmp266 12 ) )
    ( implies ( and ( not x524 ) ( and ( not x525 ) true ) ) ( = tmp265 0 ) )
    ( implies ( and ( not x524 ) ( and x525 true ) ) ( = tmp265 8 ) )
    ( implies ( and x524 ( and ( not x525 ) true ) ) ( = tmp265 8 ) )
    ( implies ( and x524 ( and x525 true ) ) ( = tmp265 16 ) )
    ( implies ( and ( not x569 ) ( and ( not x568 ) true ) ) ( = tmp264 0 ) )
    ( implies ( and ( not x569 ) ( and x568 true ) ) ( = tmp264 4 ) )
    ( implies ( and x569 ( and ( not x568 ) true ) ) ( = tmp264 6 ) )
    ( implies ( and x569 ( and x568 true ) ) ( = tmp264 10 ) )
    ( implies ( and ( not x522 ) ( and ( not x523 ) true ) ) ( = tmp263 0 ) )
    ( implies ( and ( not x522 ) ( and x523 true ) ) ( = tmp263 6 ) )
    ( implies ( and x522 ( and ( not x523 ) true ) ) ( = tmp263 6 ) )
    ( implies ( and x522 ( and x523 true ) ) ( = tmp263 12 ) )
    ( implies ( and ( not x499 ) true ) ( = tmp262 0 ) )
    ( implies ( and x499 true ) ( = tmp262 2 ) )
    ( implies ( and ( not x497 ) ( and ( not x498 ) true ) ) ( = tmp261 0 ) )
    ( implies ( and ( not x497 ) ( and x498 true ) ) ( = tmp261 2 ) )
    ( implies ( and x497 ( and ( not x498 ) true ) ) ( = tmp261 4 ) )
    ( implies ( and x497 ( and x498 true ) ) ( = tmp261 6 ) )
    ( implies ( and ( not x501 ) ( and ( not x500 ) true ) ) ( = tmp260 0 ) )
    ( implies ( and ( not x501 ) ( and x500 true ) ) ( = tmp260 4 ) )
    ( implies ( and x501 ( and ( not x500 ) true ) ) ( = tmp260 4 ) )
    ( implies ( and x501 ( and x500 true ) ) ( = tmp260 8 ) )
    ( implies ( and ( not x495 ) ( and ( not x496 ) true ) ) ( = tmp259 0 ) )
    ( implies ( and ( not x495 ) ( and x496 true ) ) ( = tmp259 4 ) )
    ( implies ( and x495 ( and ( not x496 ) true ) ) ( = tmp259 2 ) )
    ( implies ( and x495 ( and x496 true ) ) ( = tmp259 6 ) )
    ( implies ( and ( not x503 ) ( and ( not x502 ) true ) ) ( = tmp258 0 ) )
    ( implies ( and ( not x503 ) ( and x502 true ) ) ( = tmp258 4 ) )
    ( implies ( and x503 ( and ( not x502 ) true ) ) ( = tmp258 4 ) )
    ( implies ( and x503 ( and x502 true ) ) ( = tmp258 8 ) )
    ( implies ( and ( not x493 ) ( and ( not x494 ) true ) ) ( = tmp257 0 ) )
    ( implies ( and ( not x493 ) ( and x494 true ) ) ( = tmp257 2 ) )
    ( implies ( and x493 ( and ( not x494 ) true ) ) ( = tmp257 4 ) )
    ( implies ( and x493 ( and x494 true ) ) ( = tmp257 6 ) )
    ( implies ( and ( not x505 ) ( and ( not x504 ) true ) ) ( = tmp256 0 ) )
    ( implies ( and ( not x505 ) ( and x504 true ) ) ( = tmp256 2 ) )
    ( implies ( and x505 ( and ( not x504 ) true ) ) ( = tmp256 2 ) )
    ( implies ( and x505 ( and x504 true ) ) ( = tmp256 4 ) )
    ( implies ( and ( not x491 ) ( and ( not x492 ) true ) ) ( = tmp255 0 ) )
    ( implies ( and ( not x491 ) ( and x492 true ) ) ( = tmp255 6 ) )
    ( implies ( and x491 ( and ( not x492 ) true ) ) ( = tmp255 6 ) )
    ( implies ( and x491 ( and x492 true ) ) ( = tmp255 12 ) )
    ( implies ( and ( not x507 ) ( and ( not x506 ) true ) ) ( = tmp254 0 ) )
    ( implies ( and ( not x507 ) ( and x506 true ) ) ( = tmp254 4 ) )
    ( implies ( and x507 ( and ( not x506 ) true ) ) ( = tmp254 6 ) )
    ( implies ( and x507 ( and x506 true ) ) ( = tmp254 10 ) )
    ( implies ( and ( not x489 ) ( and ( not x490 ) true ) ) ( = tmp253 0 ) )
    ( implies ( and ( not x489 ) ( and x490 true ) ) ( = tmp253 6 ) )
    ( implies ( and x489 ( and ( not x490 ) true ) ) ( = tmp253 6 ) )
    ( implies ( and x489 ( and x490 true ) ) ( = tmp253 12 ) )
    ( implies ( and ( not x509 ) ( and ( not x508 ) true ) ) ( = tmp252 0 ) )
    ( implies ( and ( not x509 ) ( and x508 true ) ) ( = tmp252 4 ) )
    ( implies ( and x509 ( and ( not x508 ) true ) ) ( = tmp252 4 ) )
    ( implies ( and x509 ( and x508 true ) ) ( = tmp252 8 ) )
    ( implies ( and ( not x487 ) ( and ( not x488 ) true ) ) ( = tmp251 0 ) )
    ( implies ( and ( not x487 ) ( and x488 true ) ) ( = tmp251 6 ) )
    ( implies ( and x487 ( and ( not x488 ) true ) ) ( = tmp251 6 ) )
    ( implies ( and x487 ( and x488 true ) ) ( = tmp251 12 ) )
    ( implies ( and ( not x511 ) ( and ( not x510 ) true ) ) ( = tmp250 0 ) )
    ( implies ( and ( not x511 ) ( and x510 true ) ) ( = tmp250 6 ) )
    ( implies ( and x511 ( and ( not x510 ) true ) ) ( = tmp250 6 ) )
    ( implies ( and x511 ( and x510 true ) ) ( = tmp250 12 ) )
    ( implies ( and ( not x485 ) ( and ( not x486 ) true ) ) ( = tmp249 0 ) )
    ( implies ( and ( not x485 ) ( and x486 true ) ) ( = tmp249 6 ) )
    ( implies ( and x485 ( and ( not x486 ) true ) ) ( = tmp249 4 ) )
    ( implies ( and x485 ( and x486 true ) ) ( = tmp249 10 ) )
    ( implies ( and ( not x513 ) ( and ( not x512 ) true ) ) ( = tmp248 0 ) )
    ( implies ( and ( not x513 ) ( and x512 true ) ) ( = tmp248 6 ) )
    ( implies ( and x513 ( and ( not x512 ) true ) ) ( = tmp248 6 ) )
    ( implies ( and x513 ( and x512 true ) ) ( = tmp248 12 ) )
    ( implies ( and ( not x483 ) ( and ( not x484 ) true ) ) ( = tmp247 0 ) )
    ( implies ( and ( not x483 ) ( and x484 true ) ) ( = tmp247 4 ) )
    ( implies ( and x483 ( and ( not x484 ) true ) ) ( = tmp247 2 ) )
    ( implies ( and x483 ( and x484 true ) ) ( = tmp247 6 ) )
    ( implies ( and ( not x515 ) ( and ( not x514 ) true ) ) ( = tmp246 0 ) )
    ( implies ( and ( not x515 ) ( and x514 true ) ) ( = tmp246 4 ) )
    ( implies ( and x515 ( and ( not x514 ) true ) ) ( = tmp246 6 ) )
    ( implies ( and x515 ( and x514 true ) ) ( = tmp246 10 ) )
    ( implies ( and ( not x481 ) ( and ( not x482 ) true ) ) ( = tmp245 0 ) )
    ( implies ( and ( not x481 ) ( and x482 true ) ) ( = tmp245 2 ) )
    ( implies ( and x481 ( and ( not x482 ) true ) ) ( = tmp245 4 ) )
    ( implies ( and x481 ( and x482 true ) ) ( = tmp245 6 ) )
    ( implies ( and ( not x517 ) ( and ( not x516 ) true ) ) ( = tmp244 0 ) )
    ( implies ( and ( not x517 ) ( and x516 true ) ) ( = tmp244 6 ) )
    ( implies ( and x517 ( and ( not x516 ) true ) ) ( = tmp244 6 ) )
    ( implies ( and x517 ( and x516 true ) ) ( = tmp244 12 ) )
    ( implies ( and ( not x479 ) ( and ( not x480 ) true ) ) ( = tmp243 0 ) )
    ( implies ( and ( not x479 ) ( and x480 true ) ) ( = tmp243 4 ) )
    ( implies ( and x479 ( and ( not x480 ) true ) ) ( = tmp243 2 ) )
    ( implies ( and x479 ( and x480 true ) ) ( = tmp243 6 ) )
    ( implies ( and ( not x519 ) ( and ( not x518 ) true ) ) ( = tmp242 0 ) )
    ( implies ( and ( not x519 ) ( and x518 true ) ) ( = tmp242 6 ) )
    ( implies ( and x519 ( and ( not x518 ) true ) ) ( = tmp242 8 ) )
    ( implies ( and x519 ( and x518 true ) ) ( = tmp242 14 ) )
    ( implies ( and ( not x477 ) ( and ( not x478 ) true ) ) ( = tmp241 0 ) )
    ( implies ( and ( not x477 ) ( and x478 true ) ) ( = tmp241 4 ) )
    ( implies ( and x477 ( and ( not x478 ) true ) ) ( = tmp241 6 ) )
    ( implies ( and x477 ( and x478 true ) ) ( = tmp241 10 ) )
    ( implies ( and ( not x521 ) ( and ( not x520 ) true ) ) ( = tmp240 0 ) )
    ( implies ( and ( not x521 ) ( and x520 true ) ) ( = tmp240 8 ) )
    ( implies ( and x521 ( and ( not x520 ) true ) ) ( = tmp240 8 ) )
    ( implies ( and x521 ( and x520 true ) ) ( = tmp240 16 ) )
    ( implies ( and ( not x475 ) ( and ( not x476 ) true ) ) ( = tmp239 0 ) )
    ( implies ( and ( not x475 ) ( and x476 true ) ) ( = tmp239 6 ) )
    ( implies ( and x475 ( and ( not x476 ) true ) ) ( = tmp239 4 ) )
    ( implies ( and x475 ( and x476 true ) ) ( = tmp239 10 ) )
    ( implies ( and ( not x452 ) true ) ( = tmp238 0 ) )
    ( implies ( and x452 true ) ( = tmp238 4 ) )
    ( implies ( and ( not x450 ) ( and ( not x451 ) true ) ) ( = tmp237 0 ) )
    ( implies ( and ( not x450 ) ( and x451 true ) ) ( = tmp237 4 ) )
    ( implies ( and x450 ( and ( not x451 ) true ) ) ( = tmp237 4 ) )
    ( implies ( and x450 ( and x451 true ) ) ( = tmp237 8 ) )
    ( implies ( and ( not x454 ) ( and ( not x453 ) true ) ) ( = tmp236 0 ) )
    ( implies ( and ( not x454 ) ( and x453 true ) ) ( = tmp236 2 ) )
    ( implies ( and x454 ( and ( not x453 ) true ) ) ( = tmp236 1 ) )
    ( implies ( and x454 ( and x453 true ) ) ( = tmp236 3 ) )
    ( implies ( and ( not x448 ) ( and ( not x449 ) true ) ) ( = tmp235 0 ) )
    ( implies ( and ( not x448 ) ( and x449 true ) ) ( = tmp235 4 ) )
    ( implies ( and x448 ( and ( not x449 ) true ) ) ( = tmp235 4 ) )
    ( implies ( and x448 ( and x449 true ) ) ( = tmp235 8 ) )
    ( implies ( and ( not x456 ) ( and ( not x455 ) true ) ) ( = tmp234 0 ) )
    ( implies ( and ( not x456 ) ( and x455 true ) ) ( = tmp234 2 ) )
    ( implies ( and x456 ( and ( not x455 ) true ) ) ( = tmp234 4 ) )
    ( implies ( and x456 ( and x455 true ) ) ( = tmp234 6 ) )
    ( implies ( and ( not x446 ) ( and ( not x447 ) true ) ) ( = tmp233 0 ) )
    ( implies ( and ( not x446 ) ( and x447 true ) ) ( = tmp233 4 ) )
    ( implies ( and x446 ( and ( not x447 ) true ) ) ( = tmp233 4 ) )
    ( implies ( and x446 ( and x447 true ) ) ( = tmp233 8 ) )
    ( implies ( and ( not x458 ) ( and ( not x457 ) true ) ) ( = tmp232 0 ) )
    ( implies ( and ( not x458 ) ( and x457 true ) ) ( = tmp232 4 ) )
    ( implies ( and x458 ( and ( not x457 ) true ) ) ( = tmp232 6 ) )
    ( implies ( and x458 ( and x457 true ) ) ( = tmp232 10 ) )
    ( implies ( and ( not x444 ) ( and ( not x445 ) true ) ) ( = tmp231 0 ) )
    ( implies ( and ( not x444 ) ( and x445 true ) ) ( = tmp231 4 ) )
    ( implies ( and x444 ( and ( not x445 ) true ) ) ( = tmp231 4 ) )
    ( implies ( and x444 ( and x445 true ) ) ( = tmp231 8 ) )
    ( implies ( and ( not x460 ) ( and ( not x459 ) true ) ) ( = tmp230 0 ) )
    ( implies ( and ( not x460 ) ( and x459 true ) ) ( = tmp230 6 ) )
    ( implies ( and x460 ( and ( not x459 ) true ) ) ( = tmp230 6 ) )
    ( implies ( and x460 ( and x459 true ) ) ( = tmp230 12 ) )
    ( implies ( and ( not x442 ) ( and ( not x443 ) true ) ) ( = tmp229 0 ) )
    ( implies ( and ( not x442 ) ( and x443 true ) ) ( = tmp229 2 ) )
    ( implies ( and x442 ( and ( not x443 ) true ) ) ( = tmp229 2 ) )
    ( implies ( and x442 ( and x443 true ) ) ( = tmp229 4 ) )
    ( implies ( and ( not x462 ) ( and ( not x461 ) true ) ) ( = tmp228 0 ) )
    ( implies ( and ( not x462 ) ( and x461 true ) ) ( = tmp228 6 ) )
    ( implies ( and x462 ( and ( not x461 ) true ) ) ( = tmp228 8 ) )
    ( implies ( and x462 ( and x461 true ) ) ( = tmp228 14 ) )
    ( implies ( and ( not x440 ) ( and ( not x441 ) true ) ) ( = tmp227 0 ) )
    ( implies ( and ( not x440 ) ( and x441 true ) ) ( = tmp227 2 ) )
    ( implies ( and x440 ( and ( not x441 ) true ) ) ( = tmp227 2 ) )
    ( implies ( and x440 ( and x441 true ) ) ( = tmp227 4 ) )
    ( implies ( and ( not x464 ) ( and ( not x463 ) true ) ) ( = tmp226 0 ) )
    ( implies ( and ( not x464 ) ( and x463 true ) ) ( = tmp226 8 ) )
    ( implies ( and x464 ( and ( not x463 ) true ) ) ( = tmp226 8 ) )
    ( implies ( and x464 ( and x463 true ) ) ( = tmp226 16 ) )
    ( implies ( and ( not x438 ) ( and ( not x439 ) true ) ) ( = tmp225 0 ) )
    ( implies ( and ( not x438 ) ( and x439 true ) ) ( = tmp225 4 ) )
    ( implies ( and x438 ( and ( not x439 ) true ) ) ( = tmp225 4 ) )
    ( implies ( and x438 ( and x439 true ) ) ( = tmp225 8 ) )
    ( implies ( and ( not x466 ) ( and ( not x465 ) true ) ) ( = tmp224 0 ) )
    ( implies ( and ( not x466 ) ( and x465 true ) ) ( = tmp224 8 ) )
    ( implies ( and x466 ( and ( not x465 ) true ) ) ( = tmp224 8 ) )
    ( implies ( and x466 ( and x465 true ) ) ( = tmp224 16 ) )
    ( implies ( and ( not x436 ) ( and ( not x437 ) true ) ) ( = tmp223 0 ) )
    ( implies ( and ( not x436 ) ( and x437 true ) ) ( = tmp223 4 ) )
    ( implies ( and x436 ( and ( not x437 ) true ) ) ( = tmp223 4 ) )
    ( implies ( and x436 ( and x437 true ) ) ( = tmp223 8 ) )
    ( implies ( and ( not x468 ) ( and ( not x467 ) true ) ) ( = tmp222 0 ) )
    ( implies ( and ( not x468 ) ( and x467 true ) ) ( = tmp222 8 ) )
    ( implies ( and x468 ( and ( not x467 ) true ) ) ( = tmp222 8 ) )
    ( implies ( and x468 ( and x467 true ) ) ( = tmp222 16 ) )
    ( implies ( and ( not x434 ) ( and ( not x435 ) true ) ) ( = tmp221 0 ) )
    ( implies ( and ( not x434 ) ( and x435 true ) ) ( = tmp221 4 ) )
    ( implies ( and x434 ( and ( not x435 ) true ) ) ( = tmp221 4 ) )
    ( implies ( and x434 ( and x435 true ) ) ( = tmp221 8 ) )
    ( implies ( and ( not x470 ) ( and ( not x469 ) true ) ) ( = tmp220 0 ) )
    ( implies ( and ( not x470 ) ( and x469 true ) ) ( = tmp220 6 ) )
    ( implies ( and x470 ( and ( not x469 ) true ) ) ( = tmp220 6 ) )
    ( implies ( and x470 ( and x469 true ) ) ( = tmp220 12 ) )
    ( implies ( and ( not x432 ) ( and ( not x433 ) true ) ) ( = tmp219 0 ) )
    ( implies ( and ( not x432 ) ( and x433 true ) ) ( = tmp219 4 ) )
    ( implies ( and x432 ( and ( not x433 ) true ) ) ( = tmp219 4 ) )
    ( implies ( and x432 ( and x433 true ) ) ( = tmp219 8 ) )
    ( implies ( and ( not x472 ) ( and ( not x471 ) true ) ) ( = tmp218 0 ) )
    ( implies ( and ( not x472 ) ( and x471 true ) ) ( = tmp218 6 ) )
    ( implies ( and x472 ( and ( not x471 ) true ) ) ( = tmp218 6 ) )
    ( implies ( and x472 ( and x471 true ) ) ( = tmp218 12 ) )
    ( implies ( and ( not x430 ) ( and ( not x431 ) true ) ) ( = tmp217 0 ) )
    ( implies ( and ( not x430 ) ( and x431 true ) ) ( = tmp217 4 ) )
    ( implies ( and x430 ( and ( not x431 ) true ) ) ( = tmp217 2 ) )
    ( implies ( and x430 ( and x431 true ) ) ( = tmp217 6 ) )
    ( implies ( and ( not x474 ) ( and ( not x473 ) true ) ) ( = tmp216 0 ) )
    ( implies ( and ( not x474 ) ( and x473 true ) ) ( = tmp216 6 ) )
    ( implies ( and x474 ( and ( not x473 ) true ) ) ( = tmp216 4 ) )
    ( implies ( and x474 ( and x473 true ) ) ( = tmp216 10 ) )
    ( implies ( and ( not x428 ) ( and ( not x429 ) true ) ) ( = tmp215 0 ) )
    ( implies ( and ( not x428 ) ( and x429 true ) ) ( = tmp215 2 ) )
    ( implies ( and x428 ( and ( not x429 ) true ) ) ( = tmp215 1 ) )
    ( implies ( and x428 ( and x429 true ) ) ( = tmp215 3 ) )
    ( implies ( and ( not x405 ) ( and ( not x404 ) true ) ) ( = tmp214 0 ) )
    ( implies ( and ( not x405 ) ( and x404 true ) ) ( = tmp214 6 ) )
    ( implies ( and x405 ( and ( not x404 ) true ) ) ( = tmp214 4 ) )
    ( implies ( and x405 ( and x404 true ) ) ( = tmp214 10 ) )
    ( implies ( and ( not x402 ) ( and ( not x403 ) true ) ) ( = tmp213 0 ) )
    ( implies ( and ( not x402 ) ( and x403 true ) ) ( = tmp213 6 ) )
    ( implies ( and x402 ( and ( not x403 ) true ) ) ( = tmp213 6 ) )
    ( implies ( and x402 ( and x403 true ) ) ( = tmp213 12 ) )
    ( implies ( and ( not x407 ) ( and ( not x406 ) true ) ) ( = tmp212 0 ) )
    ( implies ( and ( not x407 ) ( and x406 true ) ) ( = tmp212 4 ) )
    ( implies ( and x407 ( and ( not x406 ) true ) ) ( = tmp212 2 ) )
    ( implies ( and x407 ( and x406 true ) ) ( = tmp212 6 ) )
    ( implies ( and ( not x400 ) ( and ( not x401 ) true ) ) ( = tmp211 0 ) )
    ( implies ( and ( not x400 ) ( and x401 true ) ) ( = tmp211 6 ) )
    ( implies ( and x400 ( and ( not x401 ) true ) ) ( = tmp211 4 ) )
    ( implies ( and x400 ( and x401 true ) ) ( = tmp211 10 ) )
    ( implies ( and ( not x409 ) ( and ( not x408 ) true ) ) ( = tmp210 0 ) )
    ( implies ( and ( not x409 ) ( and x408 true ) ) ( = tmp210 2 ) )
    ( implies ( and x409 ( and ( not x408 ) true ) ) ( = tmp210 4 ) )
    ( implies ( and x409 ( and x408 true ) ) ( = tmp210 6 ) )
    ( implies ( and ( not x398 ) ( and ( not x399 ) true ) ) ( = tmp209 0 ) )
    ( implies ( and ( not x398 ) ( and x399 true ) ) ( = tmp209 4 ) )
    ( implies ( and x398 ( and ( not x399 ) true ) ) ( = tmp209 4 ) )
    ( implies ( and x398 ( and x399 true ) ) ( = tmp209 8 ) )
    ( implies ( and ( not x411 ) ( and ( not x410 ) true ) ) ( = tmp208 0 ) )
    ( implies ( and ( not x411 ) ( and x410 true ) ) ( = tmp208 4 ) )
    ( implies ( and x411 ( and ( not x410 ) true ) ) ( = tmp208 4 ) )
    ( implies ( and x411 ( and x410 true ) ) ( = tmp208 8 ) )
    ( implies ( and ( not x396 ) ( and ( not x397 ) true ) ) ( = tmp207 0 ) )
    ( implies ( and ( not x396 ) ( and x397 true ) ) ( = tmp207 4 ) )
    ( implies ( and x396 ( and ( not x397 ) true ) ) ( = tmp207 4 ) )
    ( implies ( and x396 ( and x397 true ) ) ( = tmp207 8 ) )
    ( implies ( and ( not x413 ) ( and ( not x412 ) true ) ) ( = tmp206 0 ) )
    ( implies ( and ( not x413 ) ( and x412 true ) ) ( = tmp206 4 ) )
    ( implies ( and x413 ( and ( not x412 ) true ) ) ( = tmp206 4 ) )
    ( implies ( and x413 ( and x412 true ) ) ( = tmp206 8 ) )
    ( implies ( and ( not x394 ) ( and ( not x395 ) true ) ) ( = tmp205 0 ) )
    ( implies ( and ( not x394 ) ( and x395 true ) ) ( = tmp205 4 ) )
    ( implies ( and x394 ( and ( not x395 ) true ) ) ( = tmp205 4 ) )
    ( implies ( and x394 ( and x395 true ) ) ( = tmp205 8 ) )
    ( implies ( and ( not x415 ) ( and ( not x414 ) true ) ) ( = tmp204 0 ) )
    ( implies ( and ( not x415 ) ( and x414 true ) ) ( = tmp204 4 ) )
    ( implies ( and x415 ( and ( not x414 ) true ) ) ( = tmp204 4 ) )
    ( implies ( and x415 ( and x414 true ) ) ( = tmp204 8 ) )
    ( implies ( and ( not x392 ) ( and ( not x393 ) true ) ) ( = tmp203 0 ) )
    ( implies ( and ( not x392 ) ( and x393 true ) ) ( = tmp203 2 ) )
    ( implies ( and x392 ( and ( not x393 ) true ) ) ( = tmp203 2 ) )
    ( implies ( and x392 ( and x393 true ) ) ( = tmp203 4 ) )
    ( implies ( and ( not x417 ) ( and ( not x416 ) true ) ) ( = tmp202 0 ) )
    ( implies ( and ( not x417 ) ( and x416 true ) ) ( = tmp202 4 ) )
    ( implies ( and x417 ( and ( not x416 ) true ) ) ( = tmp202 6 ) )
    ( implies ( and x417 ( and x416 true ) ) ( = tmp202 10 ) )
    ( implies ( and ( not x390 ) ( and ( not x391 ) true ) ) ( = tmp201 0 ) )
    ( implies ( and ( not x390 ) ( and x391 true ) ) ( = tmp201 2 ) )
    ( implies ( and x390 ( and ( not x391 ) true ) ) ( = tmp201 2 ) )
    ( implies ( and x390 ( and x391 true ) ) ( = tmp201 4 ) )
    ( implies ( and ( not x419 ) ( and ( not x418 ) true ) ) ( = tmp200 0 ) )
    ( implies ( and ( not x419 ) ( and x418 true ) ) ( = tmp200 6 ) )
    ( implies ( and x419 ( and ( not x418 ) true ) ) ( = tmp200 6 ) )
    ( implies ( and x419 ( and x418 true ) ) ( = tmp200 12 ) )
    ( implies ( and ( not x388 ) ( and ( not x389 ) true ) ) ( = tmp199 0 ) )
    ( implies ( and ( not x388 ) ( and x389 true ) ) ( = tmp199 2 ) )
    ( implies ( and x388 ( and ( not x389 ) true ) ) ( = tmp199 2 ) )
    ( implies ( and x388 ( and x389 true ) ) ( = tmp199 4 ) )
    ( implies ( and ( not x421 ) ( and ( not x420 ) true ) ) ( = tmp198 0 ) )
    ( implies ( and ( not x421 ) ( and x420 true ) ) ( = tmp198 6 ) )
    ( implies ( and x421 ( and ( not x420 ) true ) ) ( = tmp198 6 ) )
    ( implies ( and x421 ( and x420 true ) ) ( = tmp198 12 ) )
    ( implies ( and ( not x386 ) ( and ( not x387 ) true ) ) ( = tmp197 0 ) )
    ( implies ( and ( not x386 ) ( and x387 true ) ) ( = tmp197 4 ) )
    ( implies ( and x386 ( and ( not x387 ) true ) ) ( = tmp197 4 ) )
    ( implies ( and x386 ( and x387 true ) ) ( = tmp197 8 ) )
    ( implies ( and ( not x423 ) ( and ( not x422 ) true ) ) ( = tmp196 0 ) )
    ( implies ( and ( not x423 ) ( and x422 true ) ) ( = tmp196 6 ) )
    ( implies ( and x423 ( and ( not x422 ) true ) ) ( = tmp196 4 ) )
    ( implies ( and x423 ( and x422 true ) ) ( = tmp196 10 ) )
    ( implies ( and ( not x384 ) ( and ( not x385 ) true ) ) ( = tmp195 0 ) )
    ( implies ( and ( not x384 ) ( and x385 true ) ) ( = tmp195 6 ) )
    ( implies ( and x384 ( and ( not x385 ) true ) ) ( = tmp195 6 ) )
    ( implies ( and x384 ( and x385 true ) ) ( = tmp195 12 ) )
    ( implies ( and ( not x425 ) ( and ( not x424 ) true ) ) ( = tmp194 0 ) )
    ( implies ( and ( not x425 ) ( and x424 true ) ) ( = tmp194 4 ) )
    ( implies ( and x425 ( and ( not x424 ) true ) ) ( = tmp194 4 ) )
    ( implies ( and x425 ( and x424 true ) ) ( = tmp194 8 ) )
    ( implies ( and ( not x382 ) ( and ( not x383 ) true ) ) ( = tmp193 0 ) )
    ( implies ( and ( not x382 ) ( and x383 true ) ) ( = tmp193 6 ) )
    ( implies ( and x382 ( and ( not x383 ) true ) ) ( = tmp193 6 ) )
    ( implies ( and x382 ( and x383 true ) ) ( = tmp193 12 ) )
    ( implies ( and ( not x427 ) ( and ( not x426 ) true ) ) ( = tmp192 0 ) )
    ( implies ( and ( not x427 ) ( and x426 true ) ) ( = tmp192 4 ) )
    ( implies ( and x427 ( and ( not x426 ) true ) ) ( = tmp192 4 ) )
    ( implies ( and x427 ( and x426 true ) ) ( = tmp192 8 ) )
    ( implies ( and ( not x380 ) ( and ( not x381 ) true ) ) ( = tmp191 0 ) )
    ( implies ( and ( not x380 ) ( and x381 true ) ) ( = tmp191 4 ) )
    ( implies ( and x380 ( and ( not x381 ) true ) ) ( = tmp191 4 ) )
    ( implies ( and x380 ( and x381 true ) ) ( = tmp191 8 ) )
    ( implies ( and ( not x357 ) ( and ( not x356 ) true ) ) ( = tmp190 0 ) )
    ( implies ( and ( not x357 ) ( and x356 true ) ) ( = tmp190 2 ) )
    ( implies ( and x357 ( and ( not x356 ) true ) ) ( = tmp190 2 ) )
    ( implies ( and x357 ( and x356 true ) ) ( = tmp190 4 ) )
    ( implies ( and ( not x354 ) ( and ( not x355 ) true ) ) ( = tmp189 0 ) )
    ( implies ( and ( not x354 ) ( and x355 true ) ) ( = tmp189 2 ) )
    ( implies ( and x354 ( and ( not x355 ) true ) ) ( = tmp189 2 ) )
    ( implies ( and x354 ( and x355 true ) ) ( = tmp189 4 ) )
    ( implies ( and ( not x359 ) ( and ( not x358 ) true ) ) ( = tmp188 0 ) )
    ( implies ( and ( not x359 ) ( and x358 true ) ) ( = tmp188 4 ) )
    ( implies ( and x359 ( and ( not x358 ) true ) ) ( = tmp188 4 ) )
    ( implies ( and x359 ( and x358 true ) ) ( = tmp188 8 ) )
    ( implies ( and ( not x352 ) ( and ( not x353 ) true ) ) ( = tmp187 0 ) )
    ( implies ( and ( not x352 ) ( and x353 true ) ) ( = tmp187 4 ) )
    ( implies ( and x352 ( and ( not x353 ) true ) ) ( = tmp187 4 ) )
    ( implies ( and x352 ( and x353 true ) ) ( = tmp187 8 ) )
    ( implies ( and ( not x361 ) ( and ( not x360 ) true ) ) ( = tmp186 0 ) )
    ( implies ( and ( not x361 ) ( and x360 true ) ) ( = tmp186 4 ) )
    ( implies ( and x361 ( and ( not x360 ) true ) ) ( = tmp186 4 ) )
    ( implies ( and x361 ( and x360 true ) ) ( = tmp186 8 ) )
    ( implies ( and ( not x350 ) ( and ( not x351 ) true ) ) ( = tmp185 0 ) )
    ( implies ( and ( not x350 ) ( and x351 true ) ) ( = tmp185 6 ) )
    ( implies ( and x350 ( and ( not x351 ) true ) ) ( = tmp185 6 ) )
    ( implies ( and x350 ( and x351 true ) ) ( = tmp185 12 ) )
    ( implies ( and ( not x363 ) ( and ( not x362 ) true ) ) ( = tmp184 0 ) )
    ( implies ( and ( not x363 ) ( and x362 true ) ) ( = tmp184 4 ) )
    ( implies ( and x363 ( and ( not x362 ) true ) ) ( = tmp184 4 ) )
    ( implies ( and x363 ( and x362 true ) ) ( = tmp184 8 ) )
    ( implies ( and ( not x348 ) ( and ( not x349 ) true ) ) ( = tmp183 0 ) )
    ( implies ( and ( not x348 ) ( and x349 true ) ) ( = tmp183 6 ) )
    ( implies ( and x348 ( and ( not x349 ) true ) ) ( = tmp183 6 ) )
    ( implies ( and x348 ( and x349 true ) ) ( = tmp183 12 ) )
    ( implies ( and ( not x365 ) ( and ( not x364 ) true ) ) ( = tmp182 0 ) )
    ( implies ( and ( not x365 ) ( and x364 true ) ) ( = tmp182 4 ) )
    ( implies ( and x365 ( and ( not x364 ) true ) ) ( = tmp182 6 ) )
    ( implies ( and x365 ( and x364 true ) ) ( = tmp182 10 ) )
    ( implies ( and ( not x346 ) ( and ( not x347 ) true ) ) ( = tmp181 0 ) )
    ( implies ( and ( not x346 ) ( and x347 true ) ) ( = tmp181 8 ) )
    ( implies ( and x346 ( and ( not x347 ) true ) ) ( = tmp181 8 ) )
    ( implies ( and x346 ( and x347 true ) ) ( = tmp181 16 ) )
    ( implies ( and ( not x367 ) ( and ( not x366 ) true ) ) ( = tmp180 0 ) )
    ( implies ( and ( not x367 ) ( and x366 true ) ) ( = tmp180 6 ) )
    ( implies ( and x367 ( and ( not x366 ) true ) ) ( = tmp180 6 ) )
    ( implies ( and x367 ( and x366 true ) ) ( = tmp180 12 ) )
    ( implies ( and ( not x344 ) ( and ( not x345 ) true ) ) ( = tmp179 0 ) )
    ( implies ( and ( not x344 ) ( and x345 true ) ) ( = tmp179 8 ) )
    ( implies ( and x344 ( and ( not x345 ) true ) ) ( = tmp179 8 ) )
    ( implies ( and x344 ( and x345 true ) ) ( = tmp179 16 ) )
    ( implies ( and ( not x369 ) ( and ( not x368 ) true ) ) ( = tmp178 0 ) )
    ( implies ( and ( not x369 ) ( and x368 true ) ) ( = tmp178 6 ) )
    ( implies ( and x369 ( and ( not x368 ) true ) ) ( = tmp178 6 ) )
    ( implies ( and x369 ( and x368 true ) ) ( = tmp178 12 ) )
    ( implies ( and ( not x342 ) ( and ( not x343 ) true ) ) ( = tmp177 0 ) )
    ( implies ( and ( not x342 ) ( and x343 true ) ) ( = tmp177 8 ) )
    ( implies ( and x342 ( and ( not x343 ) true ) ) ( = tmp177 6 ) )
    ( implies ( and x342 ( and x343 true ) ) ( = tmp177 14 ) )
    ( implies ( and ( not x371 ) ( and ( not x370 ) true ) ) ( = tmp176 0 ) )
    ( implies ( and ( not x371 ) ( and x370 true ) ) ( = tmp176 6 ) )
    ( implies ( and x371 ( and ( not x370 ) true ) ) ( = tmp176 6 ) )
    ( implies ( and x371 ( and x370 true ) ) ( = tmp176 12 ) )
    ( implies ( and ( not x340 ) ( and ( not x341 ) true ) ) ( = tmp175 0 ) )
    ( implies ( and ( not x340 ) ( and x341 true ) ) ( = tmp175 6 ) )
    ( implies ( and x340 ( and ( not x341 ) true ) ) ( = tmp175 6 ) )
    ( implies ( and x340 ( and x341 true ) ) ( = tmp175 12 ) )
    ( implies ( and ( not x373 ) ( and ( not x372 ) true ) ) ( = tmp174 0 ) )
    ( implies ( and ( not x373 ) ( and x372 true ) ) ( = tmp174 6 ) )
    ( implies ( and x373 ( and ( not x372 ) true ) ) ( = tmp174 6 ) )
    ( implies ( and x373 ( and x372 true ) ) ( = tmp174 12 ) )
    ( implies ( and ( not x338 ) ( and ( not x339 ) true ) ) ( = tmp173 0 ) )
    ( implies ( and ( not x338 ) ( and x339 true ) ) ( = tmp173 6 ) )
    ( implies ( and x338 ( and ( not x339 ) true ) ) ( = tmp173 4 ) )
    ( implies ( and x338 ( and x339 true ) ) ( = tmp173 10 ) )
    ( implies ( and ( not x375 ) ( and ( not x374 ) true ) ) ( = tmp172 0 ) )
    ( implies ( and ( not x375 ) ( and x374 true ) ) ( = tmp172 6 ) )
    ( implies ( and x375 ( and ( not x374 ) true ) ) ( = tmp172 4 ) )
    ( implies ( and x375 ( and x374 true ) ) ( = tmp172 10 ) )
    ( implies ( and ( not x336 ) ( and ( not x337 ) true ) ) ( = tmp171 0 ) )
    ( implies ( and ( not x336 ) ( and x337 true ) ) ( = tmp171 4 ) )
    ( implies ( and x336 ( and ( not x337 ) true ) ) ( = tmp171 2 ) )
    ( implies ( and x336 ( and x337 true ) ) ( = tmp171 6 ) )
    ( implies ( and ( not x377 ) ( and ( not x376 ) true ) ) ( = tmp170 0 ) )
    ( implies ( and ( not x377 ) ( and x376 true ) ) ( = tmp170 4 ) )
    ( implies ( and x377 ( and ( not x376 ) true ) ) ( = tmp170 2 ) )
    ( implies ( and x377 ( and x376 true ) ) ( = tmp170 6 ) )
    ( implies ( and ( not x334 ) ( and ( not x335 ) true ) ) ( = tmp169 0 ) )
    ( implies ( and ( not x334 ) ( and x335 true ) ) ( = tmp169 4 ) )
    ( implies ( and x334 ( and ( not x335 ) true ) ) ( = tmp169 4 ) )
    ( implies ( and x334 ( and x335 true ) ) ( = tmp169 8 ) )
    ( implies ( and ( not x379 ) ( and ( not x378 ) true ) ) ( = tmp168 0 ) )
    ( implies ( and ( not x379 ) ( and x378 true ) ) ( = tmp168 1 ) )
    ( implies ( and x379 ( and ( not x378 ) true ) ) ( = tmp168 1 ) )
    ( implies ( and x379 ( and x378 true ) ) ( = tmp168 2 ) )
    ( implies ( and ( not x332 ) ( and ( not x333 ) true ) ) ( = tmp167 0 ) )
    ( implies ( and ( not x332 ) ( and x333 true ) ) ( = tmp167 4 ) )
    ( implies ( and x332 ( and ( not x333 ) true ) ) ( = tmp167 4 ) )
    ( implies ( and x332 ( and x333 true ) ) ( = tmp167 8 ) )
    ( implies ( and ( not x309 ) ( and ( not x308 ) true ) ) ( = tmp166 0 ) )
    ( implies ( and ( not x309 ) ( and x308 true ) ) ( = tmp166 4 ) )
    ( implies ( and x309 ( and ( not x308 ) true ) ) ( = tmp166 4 ) )
    ( implies ( and x309 ( and x308 true ) ) ( = tmp166 8 ) )
    ( implies ( and ( not x306 ) ( and ( not x307 ) true ) ) ( = tmp165 0 ) )
    ( implies ( and ( not x306 ) ( and x307 true ) ) ( = tmp165 4 ) )
    ( implies ( and x306 ( and ( not x307 ) true ) ) ( = tmp165 4 ) )
    ( implies ( and x306 ( and x307 true ) ) ( = tmp165 8 ) )
    ( implies ( and ( not x311 ) ( and ( not x310 ) true ) ) ( = tmp164 0 ) )
    ( implies ( and ( not x311 ) ( and x310 true ) ) ( = tmp164 4 ) )
    ( implies ( and x311 ( and ( not x310 ) true ) ) ( = tmp164 4 ) )
    ( implies ( and x311 ( and x310 true ) ) ( = tmp164 8 ) )
    ( implies ( and ( not x304 ) ( and ( not x305 ) true ) ) ( = tmp163 0 ) )
    ( implies ( and ( not x304 ) ( and x305 true ) ) ( = tmp163 4 ) )
    ( implies ( and x304 ( and ( not x305 ) true ) ) ( = tmp163 6 ) )
    ( implies ( and x304 ( and x305 true ) ) ( = tmp163 10 ) )
    ( implies ( and ( not x313 ) ( and ( not x312 ) true ) ) ( = tmp162 0 ) )
    ( implies ( and ( not x313 ) ( and x312 true ) ) ( = tmp162 4 ) )
    ( implies ( and x313 ( and ( not x312 ) true ) ) ( = tmp162 4 ) )
    ( implies ( and x313 ( and x312 true ) ) ( = tmp162 8 ) )
    ( implies ( and ( not x302 ) ( and ( not x303 ) true ) ) ( = tmp161 0 ) )
    ( implies ( and ( not x302 ) ( and x303 true ) ) ( = tmp161 6 ) )
    ( implies ( and x302 ( and ( not x303 ) true ) ) ( = tmp161 6 ) )
    ( implies ( and x302 ( and x303 true ) ) ( = tmp161 12 ) )
    ( implies ( and ( not x315 ) ( and ( not x314 ) true ) ) ( = tmp160 0 ) )
    ( implies ( and ( not x315 ) ( and x314 true ) ) ( = tmp160 6 ) )
    ( implies ( and x315 ( and ( not x314 ) true ) ) ( = tmp160 6 ) )
    ( implies ( and x315 ( and x314 true ) ) ( = tmp160 12 ) )
    ( implies ( and ( not x300 ) ( and ( not x301 ) true ) ) ( = tmp159 0 ) )
    ( implies ( and ( not x300 ) ( and x301 true ) ) ( = tmp159 6 ) )
    ( implies ( and x300 ( and ( not x301 ) true ) ) ( = tmp159 6 ) )
    ( implies ( and x300 ( and x301 true ) ) ( = tmp159 12 ) )
    ( implies ( and ( not x317 ) ( and ( not x316 ) true ) ) ( = tmp158 0 ) )
    ( implies ( and ( not x317 ) ( and x316 true ) ) ( = tmp158 6 ) )
    ( implies ( and x317 ( and ( not x316 ) true ) ) ( = tmp158 6 ) )
    ( implies ( and x317 ( and x316 true ) ) ( = tmp158 12 ) )
    ( implies ( and ( not x298 ) ( and ( not x299 ) true ) ) ( = tmp157 0 ) )
    ( implies ( and ( not x298 ) ( and x299 true ) ) ( = tmp157 6 ) )
    ( implies ( and x298 ( and ( not x299 ) true ) ) ( = tmp157 4 ) )
    ( implies ( and x298 ( and x299 true ) ) ( = tmp157 10 ) )
    ( implies ( and ( not x319 ) ( and ( not x318 ) true ) ) ( = tmp156 0 ) )
    ( implies ( and ( not x319 ) ( and x318 true ) ) ( = tmp156 6 ) )
    ( implies ( and x319 ( and ( not x318 ) true ) ) ( = tmp156 6 ) )
    ( implies ( and x319 ( and x318 true ) ) ( = tmp156 12 ) )
    ( implies ( and ( not x296 ) ( and ( not x297 ) true ) ) ( = tmp155 0 ) )
    ( implies ( and ( not x296 ) ( and x297 true ) ) ( = tmp155 4 ) )
    ( implies ( and x296 ( and ( not x297 ) true ) ) ( = tmp155 4 ) )
    ( implies ( and x296 ( and x297 true ) ) ( = tmp155 8 ) )
    ( implies ( and ( not x321 ) ( and ( not x320 ) true ) ) ( = tmp154 0 ) )
    ( implies ( and ( not x321 ) ( and x320 true ) ) ( = tmp154 6 ) )
    ( implies ( and x321 ( and ( not x320 ) true ) ) ( = tmp154 6 ) )
    ( implies ( and x321 ( and x320 true ) ) ( = tmp154 12 ) )
    ( implies ( and ( not x294 ) ( and ( not x295 ) true ) ) ( = tmp153 0 ) )
    ( implies ( and ( not x294 ) ( and x295 true ) ) ( = tmp153 4 ) )
    ( implies ( and x294 ( and ( not x295 ) true ) ) ( = tmp153 4 ) )
    ( implies ( and x294 ( and x295 true ) ) ( = tmp153 8 ) )
    ( implies ( and ( not x323 ) ( and ( not x322 ) true ) ) ( = tmp152 0 ) )
    ( implies ( and ( not x323 ) ( and x322 true ) ) ( = tmp152 4 ) )
    ( implies ( and x323 ( and ( not x322 ) true ) ) ( = tmp152 4 ) )
    ( implies ( and x323 ( and x322 true ) ) ( = tmp152 8 ) )
    ( implies ( and ( not x292 ) ( and ( not x293 ) true ) ) ( = tmp151 0 ) )
    ( implies ( and ( not x292 ) ( and x293 true ) ) ( = tmp151 6 ) )
    ( implies ( and x292 ( and ( not x293 ) true ) ) ( = tmp151 4 ) )
    ( implies ( and x292 ( and x293 true ) ) ( = tmp151 10 ) )
    ( implies ( and ( not x325 ) ( and ( not x324 ) true ) ) ( = tmp150 0 ) )
    ( implies ( and ( not x325 ) ( and x324 true ) ) ( = tmp150 4 ) )
    ( implies ( and x325 ( and ( not x324 ) true ) ) ( = tmp150 4 ) )
    ( implies ( and x325 ( and x324 true ) ) ( = tmp150 8 ) )
    ( implies ( and ( not x290 ) ( and ( not x291 ) true ) ) ( = tmp149 0 ) )
    ( implies ( and ( not x290 ) ( and x291 true ) ) ( = tmp149 4 ) )
    ( implies ( and x290 ( and ( not x291 ) true ) ) ( = tmp149 2 ) )
    ( implies ( and x290 ( and x291 true ) ) ( = tmp149 6 ) )
    ( implies ( and ( not x327 ) ( and ( not x326 ) true ) ) ( = tmp148 0 ) )
    ( implies ( and ( not x327 ) ( and x326 true ) ) ( = tmp148 4 ) )
    ( implies ( and x327 ( and ( not x326 ) true ) ) ( = tmp148 4 ) )
    ( implies ( and x327 ( and x326 true ) ) ( = tmp148 8 ) )
    ( implies ( and ( not x288 ) ( and ( not x289 ) true ) ) ( = tmp147 0 ) )
    ( implies ( and ( not x288 ) ( and x289 true ) ) ( = tmp147 1 ) )
    ( implies ( and x288 ( and ( not x289 ) true ) ) ( = tmp147 2 ) )
    ( implies ( and x288 ( and x289 true ) ) ( = tmp147 3 ) )
    ( implies ( and ( not x329 ) ( and ( not x328 ) true ) ) ( = tmp146 0 ) )
    ( implies ( and ( not x329 ) ( and x328 true ) ) ( = tmp146 4 ) )
    ( implies ( and x329 ( and ( not x328 ) true ) ) ( = tmp146 4 ) )
    ( implies ( and x329 ( and x328 true ) ) ( = tmp146 8 ) )
    ( implies ( and ( not x286 ) ( and ( not x287 ) true ) ) ( = tmp145 0 ) )
    ( implies ( and ( not x286 ) ( and x287 true ) ) ( = tmp145 4 ) )
    ( implies ( and x286 ( and ( not x287 ) true ) ) ( = tmp145 4 ) )
    ( implies ( and x286 ( and x287 true ) ) ( = tmp145 8 ) )
    ( implies ( and ( not x331 ) ( and ( not x330 ) true ) ) ( = tmp144 0 ) )
    ( implies ( and ( not x331 ) ( and x330 true ) ) ( = tmp144 4 ) )
    ( implies ( and x331 ( and ( not x330 ) true ) ) ( = tmp144 4 ) )
    ( implies ( and x331 ( and x330 true ) ) ( = tmp144 8 ) )
    ( implies ( and ( not x284 ) ( and ( not x285 ) true ) ) ( = tmp143 0 ) )
    ( implies ( and ( not x284 ) ( and x285 true ) ) ( = tmp143 4 ) )
    ( implies ( and x284 ( and ( not x285 ) true ) ) ( = tmp143 4 ) )
    ( implies ( and x284 ( and x285 true ) ) ( = tmp143 8 ) )
    ( implies ( and ( not x263 ) ( and ( not x262 ) true ) ) ( = tmp142 0 ) )
    ( implies ( and ( not x263 ) ( and x262 true ) ) ( = tmp142 2 ) )
    ( implies ( and x263 ( and ( not x262 ) true ) ) ( = tmp142 2 ) )
    ( implies ( and x263 ( and x262 true ) ) ( = tmp142 4 ) )
    ( implies ( and ( not x260 ) ( and ( not x261 ) true ) ) ( = tmp141 0 ) )
    ( implies ( and ( not x260 ) ( and x261 true ) ) ( = tmp141 1 ) )
    ( implies ( and x260 ( and ( not x261 ) true ) ) ( = tmp141 1 ) )
    ( implies ( and x260 ( and x261 true ) ) ( = tmp141 2 ) )
    ( implies ( and ( not x265 ) ( and ( not x264 ) true ) ) ( = tmp140 0 ) )
    ( implies ( and ( not x265 ) ( and x264 true ) ) ( = tmp140 4 ) )
    ( implies ( and x265 ( and ( not x264 ) true ) ) ( = tmp140 4 ) )
    ( implies ( and x265 ( and x264 true ) ) ( = tmp140 8 ) )
    ( implies ( and ( not x258 ) ( and ( not x259 ) true ) ) ( = tmp139 0 ) )
    ( implies ( and ( not x258 ) ( and x259 true ) ) ( = tmp139 2 ) )
    ( implies ( and x258 ( and ( not x259 ) true ) ) ( = tmp139 2 ) )
    ( implies ( and x258 ( and x259 true ) ) ( = tmp139 4 ) )
    ( implies ( and ( not x267 ) ( and ( not x266 ) true ) ) ( = tmp138 0 ) )
    ( implies ( and ( not x267 ) ( and x266 true ) ) ( = tmp138 4 ) )
    ( implies ( and x267 ( and ( not x266 ) true ) ) ( = tmp138 4 ) )
    ( implies ( and x267 ( and x266 true ) ) ( = tmp138 8 ) )
    ( implies ( and ( not x256 ) ( and ( not x257 ) true ) ) ( = tmp137 0 ) )
    ( implies ( and ( not x256 ) ( and x257 true ) ) ( = tmp137 2 ) )
    ( implies ( and x256 ( and ( not x257 ) true ) ) ( = tmp137 2 ) )
    ( implies ( and x256 ( and x257 true ) ) ( = tmp137 4 ) )
    ( implies ( and ( not x269 ) ( and ( not x268 ) true ) ) ( = tmp136 0 ) )
    ( implies ( and ( not x269 ) ( and x268 true ) ) ( = tmp136 4 ) )
    ( implies ( and x269 ( and ( not x268 ) true ) ) ( = tmp136 4 ) )
    ( implies ( and x269 ( and x268 true ) ) ( = tmp136 8 ) )
    ( implies ( and ( not x254 ) ( and ( not x255 ) true ) ) ( = tmp135 0 ) )
    ( implies ( and ( not x254 ) ( and x255 true ) ) ( = tmp135 2 ) )
    ( implies ( and x254 ( and ( not x255 ) true ) ) ( = tmp135 2 ) )
    ( implies ( and x254 ( and x255 true ) ) ( = tmp135 4 ) )
    ( implies ( and ( not x271 ) ( and ( not x270 ) true ) ) ( = tmp134 0 ) )
    ( implies ( and ( not x271 ) ( and x270 true ) ) ( = tmp134 4 ) )
    ( implies ( and x271 ( and ( not x270 ) true ) ) ( = tmp134 4 ) )
    ( implies ( and x271 ( and x270 true ) ) ( = tmp134 8 ) )
    ( implies ( and ( not x252 ) ( and ( not x253 ) true ) ) ( = tmp133 0 ) )
    ( implies ( and ( not x252 ) ( and x253 true ) ) ( = tmp133 2 ) )
    ( implies ( and x252 ( and ( not x253 ) true ) ) ( = tmp133 2 ) )
    ( implies ( and x252 ( and x253 true ) ) ( = tmp133 4 ) )
    ( implies ( and ( not x273 ) ( and ( not x272 ) true ) ) ( = tmp132 0 ) )
    ( implies ( and ( not x273 ) ( and x272 true ) ) ( = tmp132 4 ) )
    ( implies ( and x273 ( and ( not x272 ) true ) ) ( = tmp132 4 ) )
    ( implies ( and x273 ( and x272 true ) ) ( = tmp132 8 ) )
    ( implies ( and ( not x250 ) ( and ( not x251 ) true ) ) ( = tmp131 0 ) )
    ( implies ( and ( not x250 ) ( and x251 true ) ) ( = tmp131 1 ) )
    ( implies ( and x250 ( and ( not x251 ) true ) ) ( = tmp131 1 ) )
    ( implies ( and x250 ( and x251 true ) ) ( = tmp131 2 ) )
    ( implies ( and ( not x275 ) ( and ( not x274 ) true ) ) ( = tmp130 0 ) )
    ( implies ( and ( not x275 ) ( and x274 true ) ) ( = tmp130 2 ) )
    ( implies ( and x275 ( and ( not x274 ) true ) ) ( = tmp130 2 ) )
    ( implies ( and x275 ( and x274 true ) ) ( = tmp130 4 ) )
    ( implies ( and ( not x248 ) ( and ( not x249 ) true ) ) ( = tmp129 0 ) )
    ( implies ( and ( not x248 ) ( and x249 true ) ) ( = tmp129 1 ) )
    ( implies ( and x248 ( and ( not x249 ) true ) ) ( = tmp129 1 ) )
    ( implies ( and x248 ( and x249 true ) ) ( = tmp129 2 ) )
    ( implies ( and ( not x277 ) ( and ( not x276 ) true ) ) ( = tmp128 0 ) )
    ( implies ( and ( not x277 ) ( and x276 true ) ) ( = tmp128 2 ) )
    ( implies ( and x277 ( and ( not x276 ) true ) ) ( = tmp128 4 ) )
    ( implies ( and x277 ( and x276 true ) ) ( = tmp128 6 ) )
    ( implies ( and ( not x246 ) ( and ( not x247 ) true ) ) ( = tmp127 0 ) )
    ( implies ( and ( not x246 ) ( and x247 true ) ) ( = tmp127 1 ) )
    ( implies ( and x246 ( and ( not x247 ) true ) ) ( = tmp127 1 ) )
    ( implies ( and x246 ( and x247 true ) ) ( = tmp127 2 ) )
    ( implies ( and ( not x279 ) ( and ( not x278 ) true ) ) ( = tmp126 0 ) )
    ( implies ( and ( not x279 ) ( and x278 true ) ) ( = tmp126 4 ) )
    ( implies ( and x279 ( and ( not x278 ) true ) ) ( = tmp126 4 ) )
    ( implies ( and x279 ( and x278 true ) ) ( = tmp126 8 ) )
    ( implies ( and ( not x244 ) ( and ( not x245 ) true ) ) ( = tmp125 0 ) )
    ( implies ( and ( not x244 ) ( and x245 true ) ) ( = tmp125 1 ) )
    ( implies ( and x244 ( and ( not x245 ) true ) ) ( = tmp125 2 ) )
    ( implies ( and x244 ( and x245 true ) ) ( = tmp125 3 ) )
    ( implies ( and ( not x281 ) ( and ( not x280 ) true ) ) ( = tmp124 0 ) )
    ( implies ( and ( not x281 ) ( and x280 true ) ) ( = tmp124 6 ) )
    ( implies ( and x281 ( and ( not x280 ) true ) ) ( = tmp124 6 ) )
    ( implies ( and x281 ( and x280 true ) ) ( = tmp124 12 ) )
    ( implies ( and ( not x242 ) ( and ( not x243 ) true ) ) ( = tmp123 0 ) )
    ( implies ( and ( not x242 ) ( and x243 true ) ) ( = tmp123 2 ) )
    ( implies ( and x242 ( and ( not x243 ) true ) ) ( = tmp123 2 ) )
    ( implies ( and x242 ( and x243 true ) ) ( = tmp123 4 ) )
    ( implies ( and ( not x283 ) ( and ( not x282 ) true ) ) ( = tmp122 0 ) )
    ( implies ( and ( not x283 ) ( and x282 true ) ) ( = tmp122 6 ) )
    ( implies ( and x283 ( and ( not x282 ) true ) ) ( = tmp122 6 ) )
    ( implies ( and x283 ( and x282 true ) ) ( = tmp122 12 ) )
    ( implies ( and ( not x240 ) ( and ( not x241 ) true ) ) ( = tmp121 0 ) )
    ( implies ( and ( not x240 ) ( and x241 true ) ) ( = tmp121 2 ) )
    ( implies ( and x240 ( and ( not x241 ) true ) ) ( = tmp121 2 ) )
    ( implies ( and x240 ( and x241 true ) ) ( = tmp121 4 ) )
    ( implies ( and ( not x217 ) ( and ( not x216 ) true ) ) ( = tmp120 0 ) )
    ( implies ( and ( not x217 ) ( and x216 true ) ) ( = tmp120 2 ) )
    ( implies ( and x217 ( and ( not x216 ) true ) ) ( = tmp120 1 ) )
    ( implies ( and x217 ( and x216 true ) ) ( = tmp120 3 ) )
    ( implies ( and ( not x214 ) ( and ( not x215 ) true ) ) ( = tmp119 0 ) )
    ( implies ( and ( not x214 ) ( and x215 true ) ) ( = tmp119 2 ) )
    ( implies ( and x214 ( and ( not x215 ) true ) ) ( = tmp119 2 ) )
    ( implies ( and x214 ( and x215 true ) ) ( = tmp119 4 ) )
    ( implies ( and ( not x219 ) ( and ( not x218 ) true ) ) ( = tmp118 0 ) )
    ( implies ( and ( not x219 ) ( and x218 true ) ) ( = tmp118 1 ) )
    ( implies ( and x219 ( and ( not x218 ) true ) ) ( = tmp118 2 ) )
    ( implies ( and x219 ( and x218 true ) ) ( = tmp118 3 ) )
    ( implies ( and ( not x212 ) ( and ( not x213 ) true ) ) ( = tmp117 0 ) )
    ( implies ( and ( not x212 ) ( and x213 true ) ) ( = tmp117 4 ) )
    ( implies ( and x212 ( and ( not x213 ) true ) ) ( = tmp117 4 ) )
    ( implies ( and x212 ( and x213 true ) ) ( = tmp117 8 ) )
    ( implies ( and ( not x221 ) ( and ( not x220 ) true ) ) ( = tmp116 0 ) )
    ( implies ( and ( not x221 ) ( and x220 true ) ) ( = tmp116 2 ) )
    ( implies ( and x221 ( and ( not x220 ) true ) ) ( = tmp116 2 ) )
    ( implies ( and x221 ( and x220 true ) ) ( = tmp116 4 ) )
    ( implies ( and ( not x210 ) ( and ( not x211 ) true ) ) ( = tmp115 0 ) )
    ( implies ( and ( not x210 ) ( and x211 true ) ) ( = tmp115 4 ) )
    ( implies ( and x210 ( and ( not x211 ) true ) ) ( = tmp115 6 ) )
    ( implies ( and x210 ( and x211 true ) ) ( = tmp115 10 ) )
    ( implies ( and ( not x223 ) ( and ( not x222 ) true ) ) ( = tmp114 0 ) )
    ( implies ( and ( not x223 ) ( and x222 true ) ) ( = tmp114 2 ) )
    ( implies ( and x223 ( and ( not x222 ) true ) ) ( = tmp114 2 ) )
    ( implies ( and x223 ( and x222 true ) ) ( = tmp114 4 ) )
    ( implies ( and ( not x208 ) ( and ( not x209 ) true ) ) ( = tmp113 0 ) )
    ( implies ( and ( not x208 ) ( and x209 true ) ) ( = tmp113 6 ) )
    ( implies ( and x208 ( and ( not x209 ) true ) ) ( = tmp113 6 ) )
    ( implies ( and x208 ( and x209 true ) ) ( = tmp113 12 ) )
    ( implies ( and ( not x225 ) ( and ( not x224 ) true ) ) ( = tmp112 0 ) )
    ( implies ( and ( not x225 ) ( and x224 true ) ) ( = tmp112 2 ) )
    ( implies ( and x225 ( and ( not x224 ) true ) ) ( = tmp112 2 ) )
    ( implies ( and x225 ( and x224 true ) ) ( = tmp112 4 ) )
    ( implies ( and ( not x206 ) ( and ( not x207 ) true ) ) ( = tmp111 0 ) )
    ( implies ( and ( not x206 ) ( and x207 true ) ) ( = tmp111 6 ) )
    ( implies ( and x206 ( and ( not x207 ) true ) ) ( = tmp111 6 ) )
    ( implies ( and x206 ( and x207 true ) ) ( = tmp111 12 ) )
    ( implies ( and ( not x227 ) ( and ( not x226 ) true ) ) ( = tmp110 0 ) )
    ( implies ( and ( not x227 ) ( and x226 true ) ) ( = tmp110 2 ) )
    ( implies ( and x227 ( and ( not x226 ) true ) ) ( = tmp110 2 ) )
    ( implies ( and x227 ( and x226 true ) ) ( = tmp110 4 ) )
    ( implies ( and ( not x204 ) ( and ( not x205 ) true ) ) ( = tmp109 0 ) )
    ( implies ( and ( not x204 ) ( and x205 true ) ) ( = tmp109 6 ) )
    ( implies ( and x204 ( and ( not x205 ) true ) ) ( = tmp109 6 ) )
    ( implies ( and x204 ( and x205 true ) ) ( = tmp109 12 ) )
    ( implies ( and ( not x229 ) ( and ( not x228 ) true ) ) ( = tmp108 0 ) )
    ( implies ( and ( not x229 ) ( and x228 true ) ) ( = tmp108 2 ) )
    ( implies ( and x229 ( and ( not x228 ) true ) ) ( = tmp108 2 ) )
    ( implies ( and x229 ( and x228 true ) ) ( = tmp108 4 ) )
    ( implies ( and ( not x202 ) ( and ( not x203 ) true ) ) ( = tmp107 0 ) )
    ( implies ( and ( not x202 ) ( and x203 true ) ) ( = tmp107 6 ) )
    ( implies ( and x202 ( and ( not x203 ) true ) ) ( = tmp107 6 ) )
    ( implies ( and x202 ( and x203 true ) ) ( = tmp107 12 ) )
    ( implies ( and ( not x231 ) ( and ( not x230 ) true ) ) ( = tmp106 0 ) )
    ( implies ( and ( not x231 ) ( and x230 true ) ) ( = tmp106 2 ) )
    ( implies ( and x231 ( and ( not x230 ) true ) ) ( = tmp106 2 ) )
    ( implies ( and x231 ( and x230 true ) ) ( = tmp106 4 ) )
    ( implies ( and ( not x200 ) ( and ( not x201 ) true ) ) ( = tmp105 0 ) )
    ( implies ( and ( not x200 ) ( and x201 true ) ) ( = tmp105 4 ) )
    ( implies ( and x200 ( and ( not x201 ) true ) ) ( = tmp105 4 ) )
    ( implies ( and x200 ( and x201 true ) ) ( = tmp105 8 ) )
    ( implies ( and ( not x233 ) ( and ( not x232 ) true ) ) ( = tmp104 0 ) )
    ( implies ( and ( not x233 ) ( and x232 true ) ) ( = tmp104 2 ) )
    ( implies ( and x233 ( and ( not x232 ) true ) ) ( = tmp104 2 ) )
    ( implies ( and x233 ( and x232 true ) ) ( = tmp104 4 ) )
    ( implies ( and ( not x198 ) ( and ( not x199 ) true ) ) ( = tmp103 0 ) )
    ( implies ( and ( not x198 ) ( and x199 true ) ) ( = tmp103 4 ) )
    ( implies ( and x198 ( and ( not x199 ) true ) ) ( = tmp103 4 ) )
    ( implies ( and x198 ( and x199 true ) ) ( = tmp103 8 ) )
    ( implies ( and ( not x235 ) ( and ( not x234 ) true ) ) ( = tmp102 0 ) )
    ( implies ( and ( not x235 ) ( and x234 true ) ) ( = tmp102 2 ) )
    ( implies ( and x235 ( and ( not x234 ) true ) ) ( = tmp102 2 ) )
    ( implies ( and x235 ( and x234 true ) ) ( = tmp102 4 ) )
    ( implies ( and ( not x196 ) ( and ( not x197 ) true ) ) ( = tmp101 0 ) )
    ( implies ( and ( not x196 ) ( and x197 true ) ) ( = tmp101 4 ) )
    ( implies ( and x196 ( and ( not x197 ) true ) ) ( = tmp101 4 ) )
    ( implies ( and x196 ( and x197 true ) ) ( = tmp101 8 ) )
    ( implies ( and ( not x237 ) ( and ( not x236 ) true ) ) ( = tmp100 0 ) )
    ( implies ( and ( not x237 ) ( and x236 true ) ) ( = tmp100 2 ) )
    ( implies ( and x237 ( and ( not x236 ) true ) ) ( = tmp100 2 ) )
    ( implies ( and x237 ( and x236 true ) ) ( = tmp100 4 ) )
    ( implies ( and ( not x194 ) ( and ( not x195 ) true ) ) ( = tmp99 0 ) )
    ( implies ( and ( not x194 ) ( and x195 true ) ) ( = tmp99 6 ) )
    ( implies ( and x194 ( and ( not x195 ) true ) ) ( = tmp99 6 ) )
    ( implies ( and x194 ( and x195 true ) ) ( = tmp99 12 ) )
    ( implies ( and ( not x239 ) ( and ( not x238 ) true ) ) ( = tmp98 0 ) )
    ( implies ( and ( not x239 ) ( and x238 true ) ) ( = tmp98 2 ) )
    ( implies ( and x239 ( and ( not x238 ) true ) ) ( = tmp98 2 ) )
    ( implies ( and x239 ( and x238 true ) ) ( = tmp98 4 ) )
    ( implies ( and ( not x192 ) ( and ( not x193 ) true ) ) ( = tmp97 0 ) )
    ( implies ( and ( not x192 ) ( and x193 true ) ) ( = tmp97 6 ) )
    ( implies ( and x192 ( and ( not x193 ) true ) ) ( = tmp97 6 ) )
    ( implies ( and x192 ( and x193 true ) ) ( = tmp97 12 ) )
    ( implies ( and ( not x169 ) ( and ( not x168 ) true ) ) ( = tmp96 0 ) )
    ( implies ( and ( not x169 ) ( and x168 true ) ) ( = tmp96 4 ) )
    ( implies ( and x169 ( and ( not x168 ) true ) ) ( = tmp96 4 ) )
    ( implies ( and x169 ( and x168 true ) ) ( = tmp96 8 ) )
    ( implies ( and ( not x166 ) ( and ( not x167 ) true ) ) ( = tmp95 0 ) )
    ( implies ( and ( not x166 ) ( and x167 true ) ) ( = tmp95 4 ) )
    ( implies ( and x166 ( and ( not x167 ) true ) ) ( = tmp95 4 ) )
    ( implies ( and x166 ( and x167 true ) ) ( = tmp95 8 ) )
    ( implies ( and ( not x171 ) ( and ( not x170 ) true ) ) ( = tmp94 0 ) )
    ( implies ( and ( not x171 ) ( and x170 true ) ) ( = tmp94 6 ) )
    ( implies ( and x171 ( and ( not x170 ) true ) ) ( = tmp94 4 ) )
    ( implies ( and x171 ( and x170 true ) ) ( = tmp94 10 ) )
    ( implies ( and ( not x164 ) ( and ( not x165 ) true ) ) ( = tmp93 0 ) )
    ( implies ( and ( not x164 ) ( and x165 true ) ) ( = tmp93 6 ) )
    ( implies ( and x164 ( and ( not x165 ) true ) ) ( = tmp93 6 ) )
    ( implies ( and x164 ( and x165 true ) ) ( = tmp93 12 ) )
    ( implies ( and ( not x173 ) ( and ( not x172 ) true ) ) ( = tmp92 0 ) )
    ( implies ( and ( not x173 ) ( and x172 true ) ) ( = tmp92 4 ) )
    ( implies ( and x173 ( and ( not x172 ) true ) ) ( = tmp92 4 ) )
    ( implies ( and x173 ( and x172 true ) ) ( = tmp92 8 ) )
    ( implies ( and ( not x162 ) ( and ( not x163 ) true ) ) ( = tmp91 0 ) )
    ( implies ( and ( not x162 ) ( and x163 true ) ) ( = tmp91 6 ) )
    ( implies ( and x162 ( and ( not x163 ) true ) ) ( = tmp91 6 ) )
    ( implies ( and x162 ( and x163 true ) ) ( = tmp91 12 ) )
    ( implies ( and ( not x175 ) ( and ( not x174 ) true ) ) ( = tmp90 0 ) )
    ( implies ( and ( not x175 ) ( and x174 true ) ) ( = tmp90 2 ) )
    ( implies ( and x175 ( and ( not x174 ) true ) ) ( = tmp90 2 ) )
    ( implies ( and x175 ( and x174 true ) ) ( = tmp90 4 ) )
    ( implies ( and ( not x160 ) ( and ( not x161 ) true ) ) ( = tmp89 0 ) )
    ( implies ( and ( not x160 ) ( and x161 true ) ) ( = tmp89 6 ) )
    ( implies ( and x160 ( and ( not x161 ) true ) ) ( = tmp89 6 ) )
    ( implies ( and x160 ( and x161 true ) ) ( = tmp89 12 ) )
    ( implies ( and ( not x177 ) ( and ( not x176 ) true ) ) ( = tmp88 0 ) )
    ( implies ( and ( not x177 ) ( and x176 true ) ) ( = tmp88 4 ) )
    ( implies ( and x177 ( and ( not x176 ) true ) ) ( = tmp88 6 ) )
    ( implies ( and x177 ( and x176 true ) ) ( = tmp88 10 ) )
    ( implies ( and ( not x158 ) ( and ( not x159 ) true ) ) ( = tmp87 0 ) )
    ( implies ( and ( not x158 ) ( and x159 true ) ) ( = tmp87 6 ) )
    ( implies ( and x158 ( and ( not x159 ) true ) ) ( = tmp87 6 ) )
    ( implies ( and x158 ( and x159 true ) ) ( = tmp87 12 ) )
    ( implies ( and ( not x179 ) ( and ( not x178 ) true ) ) ( = tmp86 0 ) )
    ( implies ( and ( not x179 ) ( and x178 true ) ) ( = tmp86 6 ) )
    ( implies ( and x179 ( and ( not x178 ) true ) ) ( = tmp86 6 ) )
    ( implies ( and x179 ( and x178 true ) ) ( = tmp86 12 ) )
    ( implies ( and ( not x156 ) ( and ( not x157 ) true ) ) ( = tmp85 0 ) )
    ( implies ( and ( not x156 ) ( and x157 true ) ) ( = tmp85 6 ) )
    ( implies ( and x156 ( and ( not x157 ) true ) ) ( = tmp85 4 ) )
    ( implies ( and x156 ( and x157 true ) ) ( = tmp85 10 ) )
    ( implies ( and ( not x181 ) ( and ( not x180 ) true ) ) ( = tmp84 0 ) )
    ( implies ( and ( not x181 ) ( and x180 true ) ) ( = tmp84 6 ) )
    ( implies ( and x181 ( and ( not x180 ) true ) ) ( = tmp84 6 ) )
    ( implies ( and x181 ( and x180 true ) ) ( = tmp84 12 ) )
    ( implies ( and ( not x154 ) ( and ( not x155 ) true ) ) ( = tmp83 0 ) )
    ( implies ( and ( not x154 ) ( and x155 true ) ) ( = tmp83 4 ) )
    ( implies ( and x154 ( and ( not x155 ) true ) ) ( = tmp83 4 ) )
    ( implies ( and x154 ( and x155 true ) ) ( = tmp83 8 ) )
    ( implies ( and ( not x183 ) ( and ( not x182 ) true ) ) ( = tmp82 0 ) )
    ( implies ( and ( not x183 ) ( and x182 true ) ) ( = tmp82 4 ) )
    ( implies ( and x183 ( and ( not x182 ) true ) ) ( = tmp82 4 ) )
    ( implies ( and x183 ( and x182 true ) ) ( = tmp82 8 ) )
    ( implies ( and ( not x152 ) ( and ( not x153 ) true ) ) ( = tmp81 0 ) )
    ( implies ( and ( not x152 ) ( and x153 true ) ) ( = tmp81 4 ) )
    ( implies ( and x152 ( and ( not x153 ) true ) ) ( = tmp81 4 ) )
    ( implies ( and x152 ( and x153 true ) ) ( = tmp81 8 ) )
    ( implies ( and ( not x185 ) ( and ( not x184 ) true ) ) ( = tmp80 0 ) )
    ( implies ( and ( not x185 ) ( and x184 true ) ) ( = tmp80 6 ) )
    ( implies ( and x185 ( and ( not x184 ) true ) ) ( = tmp80 6 ) )
    ( implies ( and x185 ( and x184 true ) ) ( = tmp80 12 ) )
    ( implies ( and ( not x150 ) ( and ( not x151 ) true ) ) ( = tmp79 0 ) )
    ( implies ( and ( not x150 ) ( and x151 true ) ) ( = tmp79 2 ) )
    ( implies ( and x150 ( and ( not x151 ) true ) ) ( = tmp79 1 ) )
    ( implies ( and x150 ( and x151 true ) ) ( = tmp79 3 ) )
    ( implies ( and ( not x187 ) ( and ( not x186 ) true ) ) ( = tmp78 0 ) )
    ( implies ( and ( not x187 ) ( and x186 true ) ) ( = tmp78 6 ) )
    ( implies ( and x187 ( and ( not x186 ) true ) ) ( = tmp78 6 ) )
    ( implies ( and x187 ( and x186 true ) ) ( = tmp78 12 ) )
    ( implies ( and ( not x148 ) ( and ( not x149 ) true ) ) ( = tmp77 0 ) )
    ( implies ( and ( not x148 ) ( and x149 true ) ) ( = tmp77 2 ) )
    ( implies ( and x148 ( and ( not x149 ) true ) ) ( = tmp77 4 ) )
    ( implies ( and x148 ( and x149 true ) ) ( = tmp77 6 ) )
    ( implies ( and ( not x189 ) ( and ( not x188 ) true ) ) ( = tmp76 0 ) )
    ( implies ( and ( not x189 ) ( and x188 true ) ) ( = tmp76 4 ) )
    ( implies ( and x189 ( and ( not x188 ) true ) ) ( = tmp76 2 ) )
    ( implies ( and x189 ( and x188 true ) ) ( = tmp76 6 ) )
    ( implies ( and ( not x146 ) ( and ( not x147 ) true ) ) ( = tmp75 0 ) )
    ( implies ( and ( not x146 ) ( and x147 true ) ) ( = tmp75 4 ) )
    ( implies ( and x146 ( and ( not x147 ) true ) ) ( = tmp75 4 ) )
    ( implies ( and x146 ( and x147 true ) ) ( = tmp75 8 ) )
    ( implies ( and ( not x191 ) ( and ( not x190 ) true ) ) ( = tmp74 0 ) )
    ( implies ( and ( not x191 ) ( and x190 true ) ) ( = tmp74 2 ) )
    ( implies ( and x191 ( and ( not x190 ) true ) ) ( = tmp74 2 ) )
    ( implies ( and x191 ( and x190 true ) ) ( = tmp74 4 ) )
    ( implies ( and ( not x144 ) ( and ( not x145 ) true ) ) ( = tmp73 0 ) )
    ( implies ( and ( not x144 ) ( and x145 true ) ) ( = tmp73 4 ) )
    ( implies ( and x144 ( and ( not x145 ) true ) ) ( = tmp73 4 ) )
    ( implies ( and x144 ( and x145 true ) ) ( = tmp73 8 ) )
    ( implies ( and ( not x121 ) true ) ( = tmp72 0 ) )
    ( implies ( and x121 true ) ( = tmp72 4 ) )
    ( implies ( and ( not x119 ) ( and ( not x120 ) true ) ) ( = tmp71 0 ) )
    ( implies ( and ( not x119 ) ( and x120 true ) ) ( = tmp71 2 ) )
    ( implies ( and x119 ( and ( not x120 ) true ) ) ( = tmp71 1 ) )
    ( implies ( and x119 ( and x120 true ) ) ( = tmp71 3 ) )
    ( implies ( and ( not x123 ) ( and ( not x122 ) true ) ) ( = tmp70 0 ) )
    ( implies ( and ( not x123 ) ( and x122 true ) ) ( = tmp70 4 ) )
    ( implies ( and x123 ( and ( not x122 ) true ) ) ( = tmp70 6 ) )
    ( implies ( and x123 ( and x122 true ) ) ( = tmp70 10 ) )
    ( implies ( and ( not x117 ) ( and ( not x118 ) true ) ) ( = tmp69 0 ) )
    ( implies ( and ( not x117 ) ( and x118 true ) ) ( = tmp69 1 ) )
    ( implies ( and x117 ( and ( not x118 ) true ) ) ( = tmp69 2 ) )
    ( implies ( and x117 ( and x118 true ) ) ( = tmp69 3 ) )
    ( implies ( and ( not x125 ) ( and ( not x124 ) true ) ) ( = tmp68 0 ) )
    ( implies ( and ( not x125 ) ( and x124 true ) ) ( = tmp68 6 ) )
    ( implies ( and x125 ( and ( not x124 ) true ) ) ( = tmp68 6 ) )
    ( implies ( and x125 ( and x124 true ) ) ( = tmp68 12 ) )
    ( implies ( and ( not x115 ) ( and ( not x116 ) true ) ) ( = tmp67 0 ) )
    ( implies ( and ( not x115 ) ( and x116 true ) ) ( = tmp67 2 ) )
    ( implies ( and x115 ( and ( not x116 ) true ) ) ( = tmp67 4 ) )
    ( implies ( and x115 ( and x116 true ) ) ( = tmp67 6 ) )
    ( implies ( and ( not x127 ) ( and ( not x126 ) true ) ) ( = tmp66 0 ) )
    ( implies ( and ( not x127 ) ( and x126 true ) ) ( = tmp66 4 ) )
    ( implies ( and x127 ( and ( not x126 ) true ) ) ( = tmp66 4 ) )
    ( implies ( and x127 ( and x126 true ) ) ( = tmp66 8 ) )
    ( implies ( and ( not x113 ) ( and ( not x114 ) true ) ) ( = tmp65 0 ) )
    ( implies ( and ( not x113 ) ( and x114 true ) ) ( = tmp65 4 ) )
    ( implies ( and x113 ( and ( not x114 ) true ) ) ( = tmp65 4 ) )
    ( implies ( and x113 ( and x114 true ) ) ( = tmp65 8 ) )
    ( implies ( and ( not x129 ) ( and ( not x128 ) true ) ) ( = tmp64 0 ) )
    ( implies ( and ( not x129 ) ( and x128 true ) ) ( = tmp64 2 ) )
    ( implies ( and x129 ( and ( not x128 ) true ) ) ( = tmp64 2 ) )
    ( implies ( and x129 ( and x128 true ) ) ( = tmp64 4 ) )
    ( implies ( and ( not x111 ) ( and ( not x112 ) true ) ) ( = tmp63 0 ) )
    ( implies ( and ( not x111 ) ( and x112 true ) ) ( = tmp63 4 ) )
    ( implies ( and x111 ( and ( not x112 ) true ) ) ( = tmp63 4 ) )
    ( implies ( and x111 ( and x112 true ) ) ( = tmp63 8 ) )
    ( implies ( and ( not x131 ) ( and ( not x130 ) true ) ) ( = tmp62 0 ) )
    ( implies ( and ( not x131 ) ( and x130 true ) ) ( = tmp62 2 ) )
    ( implies ( and x131 ( and ( not x130 ) true ) ) ( = tmp62 4 ) )
    ( implies ( and x131 ( and x130 true ) ) ( = tmp62 6 ) )
    ( implies ( and ( not x109 ) ( and ( not x110 ) true ) ) ( = tmp61 0 ) )
    ( implies ( and ( not x109 ) ( and x110 true ) ) ( = tmp61 4 ) )
    ( implies ( and x109 ( and ( not x110 ) true ) ) ( = tmp61 4 ) )
    ( implies ( and x109 ( and x110 true ) ) ( = tmp61 8 ) )
    ( implies ( and ( not x133 ) ( and ( not x132 ) true ) ) ( = tmp60 0 ) )
    ( implies ( and ( not x133 ) ( and x132 true ) ) ( = tmp60 4 ) )
    ( implies ( and x133 ( and ( not x132 ) true ) ) ( = tmp60 2 ) )
    ( implies ( and x133 ( and x132 true ) ) ( = tmp60 6 ) )
    ( implies ( and ( not x107 ) ( and ( not x108 ) true ) ) ( = tmp59 0 ) )
    ( implies ( and ( not x107 ) ( and x108 true ) ) ( = tmp59 4 ) )
    ( implies ( and x107 ( and ( not x108 ) true ) ) ( = tmp59 6 ) )
    ( implies ( and x107 ( and x108 true ) ) ( = tmp59 10 ) )
    ( implies ( and ( not x135 ) ( and ( not x134 ) true ) ) ( = tmp58 0 ) )
    ( implies ( and ( not x135 ) ( and x134 true ) ) ( = tmp58 2 ) )
    ( implies ( and x135 ( and ( not x134 ) true ) ) ( = tmp58 4 ) )
    ( implies ( and x135 ( and x134 true ) ) ( = tmp58 6 ) )
    ( implies ( and ( not x105 ) ( and ( not x106 ) true ) ) ( = tmp57 0 ) )
    ( implies ( and ( not x105 ) ( and x106 true ) ) ( = tmp57 6 ) )
    ( implies ( and x105 ( and ( not x106 ) true ) ) ( = tmp57 6 ) )
    ( implies ( and x105 ( and x106 true ) ) ( = tmp57 12 ) )
    ( implies ( and ( not x137 ) ( and ( not x136 ) true ) ) ( = tmp56 0 ) )
    ( implies ( and ( not x137 ) ( and x136 true ) ) ( = tmp56 4 ) )
    ( implies ( and x137 ( and ( not x136 ) true ) ) ( = tmp56 4 ) )
    ( implies ( and x137 ( and x136 true ) ) ( = tmp56 8 ) )
    ( implies ( and ( not x103 ) ( and ( not x104 ) true ) ) ( = tmp55 0 ) )
    ( implies ( and ( not x103 ) ( and x104 true ) ) ( = tmp55 6 ) )
    ( implies ( and x103 ( and ( not x104 ) true ) ) ( = tmp55 6 ) )
    ( implies ( and x103 ( and x104 true ) ) ( = tmp55 12 ) )
    ( implies ( and ( not x139 ) ( and ( not x138 ) true ) ) ( = tmp54 0 ) )
    ( implies ( and ( not x139 ) ( and x138 true ) ) ( = tmp54 4 ) )
    ( implies ( and x139 ( and ( not x138 ) true ) ) ( = tmp54 1 ) )
    ( implies ( and x139 ( and x138 true ) ) ( = tmp54 5 ) )
    ( implies ( and ( not x101 ) ( and ( not x102 ) true ) ) ( = tmp53 0 ) )
    ( implies ( and ( not x101 ) ( and x102 true ) ) ( = tmp53 6 ) )
    ( implies ( and x101 ( and ( not x102 ) true ) ) ( = tmp53 6 ) )
    ( implies ( and x101 ( and x102 true ) ) ( = tmp53 12 ) )
    ( implies ( and ( not x141 ) ( and ( not x140 ) true ) ) ( = tmp52 0 ) )
    ( implies ( and ( not x141 ) ( and x140 true ) ) ( = tmp52 2 ) )
    ( implies ( and x141 ( and ( not x140 ) true ) ) ( = tmp52 4 ) )
    ( implies ( and x141 ( and x140 true ) ) ( = tmp52 6 ) )
    ( implies ( and ( not x99 ) ( and ( not x100 ) true ) ) ( = tmp51 0 ) )
    ( implies ( and ( not x99 ) ( and x100 true ) ) ( = tmp51 4 ) )
    ( implies ( and x99 ( and ( not x100 ) true ) ) ( = tmp51 4 ) )
    ( implies ( and x99 ( and x100 true ) ) ( = tmp51 8 ) )
    ( implies ( and ( not x143 ) ( and ( not x142 ) true ) ) ( = tmp50 0 ) )
    ( implies ( and ( not x143 ) ( and x142 true ) ) ( = tmp50 6 ) )
    ( implies ( and x143 ( and ( not x142 ) true ) ) ( = tmp50 6 ) )
    ( implies ( and x143 ( and x142 true ) ) ( = tmp50 12 ) )
    ( implies ( and ( not x97 ) ( and ( not x98 ) true ) ) ( = tmp49 0 ) )
    ( implies ( and ( not x97 ) ( and x98 true ) ) ( = tmp49 4 ) )
    ( implies ( and x97 ( and ( not x98 ) true ) ) ( = tmp49 2 ) )
    ( implies ( and x97 ( and x98 true ) ) ( = tmp49 6 ) )
    ( implies ( and ( not x74 ) ( and ( not x73 ) true ) ) ( = tmp48 0 ) )
    ( implies ( and ( not x74 ) ( and x73 true ) ) ( = tmp48 2 ) )
    ( implies ( and x74 ( and ( not x73 ) true ) ) ( = tmp48 4 ) )
    ( implies ( and x74 ( and x73 true ) ) ( = tmp48 6 ) )
    ( implies ( and ( not x71 ) ( and ( not x72 ) true ) ) ( = tmp47 0 ) )
    ( implies ( and ( not x71 ) ( and x72 true ) ) ( = tmp47 1 ) )
    ( implies ( and x71 ( and ( not x72 ) true ) ) ( = tmp47 2 ) )
    ( implies ( and x71 ( and x72 true ) ) ( = tmp47 3 ) )
    ( implies ( and ( not x76 ) ( and ( not x75 ) true ) ) ( = tmp46 0 ) )
    ( implies ( and ( not x76 ) ( and x75 true ) ) ( = tmp46 2 ) )
    ( implies ( and x76 ( and ( not x75 ) true ) ) ( = tmp46 2 ) )
    ( implies ( and x76 ( and x75 true ) ) ( = tmp46 4 ) )
    ( implies ( and ( not x69 ) ( and ( not x70 ) true ) ) ( = tmp45 0 ) )
    ( implies ( and ( not x69 ) ( and x70 true ) ) ( = tmp45 4 ) )
    ( implies ( and x69 ( and ( not x70 ) true ) ) ( = tmp45 4 ) )
    ( implies ( and x69 ( and x70 true ) ) ( = tmp45 8 ) )
    ( implies ( and ( not x78 ) ( and ( not x77 ) true ) ) ( = tmp44 0 ) )
    ( implies ( and ( not x78 ) ( and x77 true ) ) ( = tmp44 4 ) )
    ( implies ( and x78 ( and ( not x77 ) true ) ) ( = tmp44 4 ) )
    ( implies ( and x78 ( and x77 true ) ) ( = tmp44 8 ) )
    ( implies ( and ( not x67 ) ( and ( not x68 ) true ) ) ( = tmp43 0 ) )
    ( implies ( and ( not x67 ) ( and x68 true ) ) ( = tmp43 4 ) )
    ( implies ( and x67 ( and ( not x68 ) true ) ) ( = tmp43 4 ) )
    ( implies ( and x67 ( and x68 true ) ) ( = tmp43 8 ) )
    ( implies ( and ( not x80 ) ( and ( not x79 ) true ) ) ( = tmp42 0 ) )
    ( implies ( and ( not x80 ) ( and x79 true ) ) ( = tmp42 4 ) )
    ( implies ( and x80 ( and ( not x79 ) true ) ) ( = tmp42 2 ) )
    ( implies ( and x80 ( and x79 true ) ) ( = tmp42 6 ) )
    ( implies ( and ( not x65 ) ( and ( not x66 ) true ) ) ( = tmp41 0 ) )
    ( implies ( and ( not x65 ) ( and x66 true ) ) ( = tmp41 4 ) )
    ( implies ( and x65 ( and ( not x66 ) true ) ) ( = tmp41 6 ) )
    ( implies ( and x65 ( and x66 true ) ) ( = tmp41 10 ) )
    ( implies ( and ( not x82 ) ( and ( not x81 ) true ) ) ( = tmp40 0 ) )
    ( implies ( and ( not x82 ) ( and x81 true ) ) ( = tmp40 2 ) )
    ( implies ( and x82 ( and ( not x81 ) true ) ) ( = tmp40 4 ) )
    ( implies ( and x82 ( and x81 true ) ) ( = tmp40 6 ) )
    ( implies ( and ( not x63 ) ( and ( not x64 ) true ) ) ( = tmp39 0 ) )
    ( implies ( and ( not x63 ) ( and x64 true ) ) ( = tmp39 6 ) )
    ( implies ( and x63 ( and ( not x64 ) true ) ) ( = tmp39 4 ) )
    ( implies ( and x63 ( and x64 true ) ) ( = tmp39 10 ) )
    ( implies ( and ( not x84 ) ( and ( not x83 ) true ) ) ( = tmp38 0 ) )
    ( implies ( and ( not x84 ) ( and x83 true ) ) ( = tmp38 4 ) )
    ( implies ( and x84 ( and ( not x83 ) true ) ) ( = tmp38 4 ) )
    ( implies ( and x84 ( and x83 true ) ) ( = tmp38 8 ) )
    ( implies ( and ( not x61 ) ( and ( not x62 ) true ) ) ( = tmp37 0 ) )
    ( implies ( and ( not x61 ) ( and x62 true ) ) ( = tmp37 2 ) )
    ( implies ( and x61 ( and ( not x62 ) true ) ) ( = tmp37 2 ) )
    ( implies ( and x61 ( and x62 true ) ) ( = tmp37 4 ) )
    ( implies ( and ( not x86 ) ( and ( not x85 ) true ) ) ( = tmp36 0 ) )
    ( implies ( and ( not x86 ) ( and x85 true ) ) ( = tmp36 4 ) )
    ( implies ( and x86 ( and ( not x85 ) true ) ) ( = tmp36 4 ) )
    ( implies ( and x86 ( and x85 true ) ) ( = tmp36 8 ) )
    ( implies ( and ( not x59 ) ( and ( not x60 ) true ) ) ( = tmp35 0 ) )
    ( implies ( and ( not x59 ) ( and x60 true ) ) ( = tmp35 4 ) )
    ( implies ( and x59 ( and ( not x60 ) true ) ) ( = tmp35 4 ) )
    ( implies ( and x59 ( and x60 true ) ) ( = tmp35 8 ) )
    ( implies ( and ( not x88 ) ( and ( not x87 ) true ) ) ( = tmp34 0 ) )
    ( implies ( and ( not x88 ) ( and x87 true ) ) ( = tmp34 4 ) )
    ( implies ( and x88 ( and ( not x87 ) true ) ) ( = tmp34 4 ) )
    ( implies ( and x88 ( and x87 true ) ) ( = tmp34 8 ) )
    ( implies ( and ( not x57 ) ( and ( not x58 ) true ) ) ( = tmp33 0 ) )
    ( implies ( and ( not x57 ) ( and x58 true ) ) ( = tmp33 4 ) )
    ( implies ( and x57 ( and ( not x58 ) true ) ) ( = tmp33 2 ) )
    ( implies ( and x57 ( and x58 true ) ) ( = tmp33 6 ) )
    ( implies ( and ( not x90 ) ( and ( not x89 ) true ) ) ( = tmp32 0 ) )
    ( implies ( and ( not x90 ) ( and x89 true ) ) ( = tmp32 4 ) )
    ( implies ( and x90 ( and ( not x89 ) true ) ) ( = tmp32 4 ) )
    ( implies ( and x90 ( and x89 true ) ) ( = tmp32 8 ) )
    ( implies ( and ( not x55 ) ( and ( not x56 ) true ) ) ( = tmp31 0 ) )
    ( implies ( and ( not x55 ) ( and x56 true ) ) ( = tmp31 4 ) )
    ( implies ( and x55 ( and ( not x56 ) true ) ) ( = tmp31 4 ) )
    ( implies ( and x55 ( and x56 true ) ) ( = tmp31 8 ) )
    ( implies ( and ( not x92 ) ( and ( not x91 ) true ) ) ( = tmp30 0 ) )
    ( implies ( and ( not x92 ) ( and x91 true ) ) ( = tmp30 4 ) )
    ( implies ( and x92 ( and ( not x91 ) true ) ) ( = tmp30 2 ) )
    ( implies ( and x92 ( and x91 true ) ) ( = tmp30 6 ) )
    ( implies ( and ( not x53 ) ( and ( not x54 ) true ) ) ( = tmp29 0 ) )
    ( implies ( and ( not x53 ) ( and x54 true ) ) ( = tmp29 4 ) )
    ( implies ( and x53 ( and ( not x54 ) true ) ) ( = tmp29 4 ) )
    ( implies ( and x53 ( and x54 true ) ) ( = tmp29 8 ) )
    ( implies ( and ( not x94 ) ( and ( not x93 ) true ) ) ( = tmp28 0 ) )
    ( implies ( and ( not x94 ) ( and x93 true ) ) ( = tmp28 2 ) )
    ( implies ( and x94 ( and ( not x93 ) true ) ) ( = tmp28 4 ) )
    ( implies ( and x94 ( and x93 true ) ) ( = tmp28 6 ) )
    ( implies ( and ( not x51 ) ( and ( not x52 ) true ) ) ( = tmp27 0 ) )
    ( implies ( and ( not x51 ) ( and x52 true ) ) ( = tmp27 4 ) )
    ( implies ( and x51 ( and ( not x52 ) true ) ) ( = tmp27 2 ) )
    ( implies ( and x51 ( and x52 true ) ) ( = tmp27 6 ) )
    ( implies ( and ( not x96 ) ( and ( not x95 ) true ) ) ( = tmp26 0 ) )
    ( implies ( and ( not x96 ) ( and x95 true ) ) ( = tmp26 4 ) )
    ( implies ( and x96 ( and ( not x95 ) true ) ) ( = tmp26 4 ) )
    ( implies ( and x96 ( and x95 true ) ) ( = tmp26 8 ) )
    ( implies ( and ( not x49 ) ( and ( not x50 ) true ) ) ( = tmp25 0 ) )
    ( implies ( and ( not x49 ) ( and x50 true ) ) ( = tmp25 2 ) )
    ( implies ( and x49 ( and ( not x50 ) true ) ) ( = tmp25 2 ) )
    ( implies ( and x49 ( and x50 true ) ) ( = tmp25 4 ) )
    ( implies ( and ( not x26 ) true ) ( = tmp24 0 ) )
    ( implies ( and x26 true ) ( = tmp24 4 ) )
    ( implies ( and ( not x24 ) ( and ( not x25 ) true ) ) ( = tmp23 0 ) )
    ( implies ( and ( not x24 ) ( and x25 true ) ) ( = tmp23 4 ) )
    ( implies ( and x24 ( and ( not x25 ) true ) ) ( = tmp23 2 ) )
    ( implies ( and x24 ( and x25 true ) ) ( = tmp23 6 ) )
    ( implies ( and ( not x28 ) ( and ( not x27 ) true ) ) ( = tmp22 0 ) )
    ( implies ( and ( not x28 ) ( and x27 true ) ) ( = tmp22 4 ) )
    ( implies ( and x28 ( and ( not x27 ) true ) ) ( = tmp22 4 ) )
    ( implies ( and x28 ( and x27 true ) ) ( = tmp22 8 ) )
    ( implies ( and ( not x22 ) ( and ( not x23 ) true ) ) ( = tmp21 0 ) )
    ( implies ( and ( not x22 ) ( and x23 true ) ) ( = tmp21 2 ) )
    ( implies ( and x22 ( and ( not x23 ) true ) ) ( = tmp21 2 ) )
    ( implies ( and x22 ( and x23 true ) ) ( = tmp21 4 ) )
    ( implies ( and ( not x30 ) ( and ( not x29 ) true ) ) ( = tmp20 0 ) )
    ( implies ( and ( not x30 ) ( and x29 true ) ) ( = tmp20 4 ) )
    ( implies ( and x30 ( and ( not x29 ) true ) ) ( = tmp20 2 ) )
    ( implies ( and x30 ( and x29 true ) ) ( = tmp20 6 ) )
    ( implies ( and ( not x20 ) ( and ( not x21 ) true ) ) ( = tmp19 0 ) )
    ( implies ( and ( not x20 ) ( and x21 true ) ) ( = tmp19 2 ) )
    ( implies ( and x20 ( and ( not x21 ) true ) ) ( = tmp19 2 ) )
    ( implies ( and x20 ( and x21 true ) ) ( = tmp19 4 ) )
    ( implies ( and ( not x32 ) ( and ( not x31 ) true ) ) ( = tmp18 0 ) )
    ( implies ( and ( not x32 ) ( and x31 true ) ) ( = tmp18 2 ) )
    ( implies ( and x32 ( and ( not x31 ) true ) ) ( = tmp18 2 ) )
    ( implies ( and x32 ( and x31 true ) ) ( = tmp18 4 ) )
    ( implies ( and ( not x18 ) ( and ( not x19 ) true ) ) ( = tmp17 0 ) )
    ( implies ( and ( not x18 ) ( and x19 true ) ) ( = tmp17 2 ) )
    ( implies ( and x18 ( and ( not x19 ) true ) ) ( = tmp17 1 ) )
    ( implies ( and x18 ( and x19 true ) ) ( = tmp17 3 ) )
    ( implies ( and ( not x34 ) ( and ( not x33 ) true ) ) ( = tmp16 0 ) )
    ( implies ( and ( not x34 ) ( and x33 true ) ) ( = tmp16 4 ) )
    ( implies ( and x34 ( and ( not x33 ) true ) ) ( = tmp16 4 ) )
    ( implies ( and x34 ( and x33 true ) ) ( = tmp16 8 ) )
    ( implies ( and ( not x16 ) ( and ( not x17 ) true ) ) ( = tmp15 0 ) )
    ( implies ( and ( not x16 ) ( and x17 true ) ) ( = tmp15 1 ) )
    ( implies ( and x16 ( and ( not x17 ) true ) ) ( = tmp15 2 ) )
    ( implies ( and x16 ( and x17 true ) ) ( = tmp15 3 ) )
    ( implies ( and ( not x36 ) ( and ( not x35 ) true ) ) ( = tmp14 0 ) )
    ( implies ( and ( not x36 ) ( and x35 true ) ) ( = tmp14 6 ) )
    ( implies ( and x36 ( and ( not x35 ) true ) ) ( = tmp14 6 ) )
    ( implies ( and x36 ( and x35 true ) ) ( = tmp14 12 ) )
    ( implies ( and ( not x14 ) ( and ( not x15 ) true ) ) ( = tmp13 0 ) )
    ( implies ( and ( not x14 ) ( and x15 true ) ) ( = tmp13 2 ) )
    ( implies ( and x14 ( and ( not x15 ) true ) ) ( = tmp13 2 ) )
    ( implies ( and x14 ( and x15 true ) ) ( = tmp13 4 ) )
    ( implies ( and ( not x38 ) ( and ( not x37 ) true ) ) ( = tmp12 0 ) )
    ( implies ( and ( not x38 ) ( and x37 true ) ) ( = tmp12 6 ) )
    ( implies ( and x38 ( and ( not x37 ) true ) ) ( = tmp12 6 ) )
    ( implies ( and x38 ( and x37 true ) ) ( = tmp12 12 ) )
    ( implies ( and ( not x12 ) ( and ( not x13 ) true ) ) ( = tmp11 0 ) )
    ( implies ( and ( not x12 ) ( and x13 true ) ) ( = tmp11 2 ) )
    ( implies ( and x12 ( and ( not x13 ) true ) ) ( = tmp11 2 ) )
    ( implies ( and x12 ( and x13 true ) ) ( = tmp11 4 ) )
    ( implies ( and ( not x40 ) ( and ( not x39 ) true ) ) ( = tmp10 0 ) )
    ( implies ( and ( not x40 ) ( and x39 true ) ) ( = tmp10 8 ) )
    ( implies ( and x40 ( and ( not x39 ) true ) ) ( = tmp10 6 ) )
    ( implies ( and x40 ( and x39 true ) ) ( = tmp10 14 ) )
    ( implies ( and ( not x10 ) ( and ( not x11 ) true ) ) ( = tmp9 0 ) )
    ( implies ( and ( not x10 ) ( and x11 true ) ) ( = tmp9 2 ) )
    ( implies ( and x10 ( and ( not x11 ) true ) ) ( = tmp9 2 ) )
    ( implies ( and x10 ( and x11 true ) ) ( = tmp9 4 ) )
    ( implies ( and ( not x42 ) ( and ( not x41 ) true ) ) ( = tmp8 0 ) )
    ( implies ( and ( not x42 ) ( and x41 true ) ) ( = tmp8 6 ) )
    ( implies ( and x42 ( and ( not x41 ) true ) ) ( = tmp8 6 ) )
    ( implies ( and x42 ( and x41 true ) ) ( = tmp8 12 ) )
    ( implies ( and ( not x8 ) ( and ( not x9 ) true ) ) ( = tmp7 0 ) )
    ( implies ( and ( not x8 ) ( and x9 true ) ) ( = tmp7 2 ) )
    ( implies ( and x8 ( and ( not x9 ) true ) ) ( = tmp7 4 ) )
    ( implies ( and x8 ( and x9 true ) ) ( = tmp7 6 ) )
    ( implies ( and ( not x44 ) ( and ( not x43 ) true ) ) ( = tmp6 0 ) )
    ( implies ( and ( not x44 ) ( and x43 true ) ) ( = tmp6 6 ) )
    ( implies ( and x44 ( and ( not x43 ) true ) ) ( = tmp6 4 ) )
    ( implies ( and x44 ( and x43 true ) ) ( = tmp6 10 ) )
    ( implies ( and ( not x6 ) ( and ( not x7 ) true ) ) ( = tmp5 0 ) )
    ( implies ( and ( not x6 ) ( and x7 true ) ) ( = tmp5 4 ) )
    ( implies ( and x6 ( and ( not x7 ) true ) ) ( = tmp5 4 ) )
    ( implies ( and x6 ( and x7 true ) ) ( = tmp5 8 ) )
    ( implies ( and ( not x46 ) ( and ( not x45 ) true ) ) ( = tmp4 0 ) )
    ( implies ( and ( not x46 ) ( and x45 true ) ) ( = tmp4 4 ) )
    ( implies ( and x46 ( and ( not x45 ) true ) ) ( = tmp4 4 ) )
    ( implies ( and x46 ( and x45 true ) ) ( = tmp4 8 ) )
    ( implies ( and ( not x4 ) ( and ( not x5 ) true ) ) ( = tmp3 0 ) )
    ( implies ( and ( not x4 ) ( and x5 true ) ) ( = tmp3 4 ) )
    ( implies ( and x4 ( and ( not x5 ) true ) ) ( = tmp3 4 ) )
    ( implies ( and x4 ( and x5 true ) ) ( = tmp3 8 ) )
    ( implies ( and ( not x48 ) ( and ( not x47 ) true ) ) ( = tmp2 0 ) )
    ( implies ( and ( not x48 ) ( and x47 true ) ) ( = tmp2 4 ) )
    ( implies ( and x48 ( and ( not x47 ) true ) ) ( = tmp2 4 ) )
    ( implies ( and x48 ( and x47 true ) ) ( = tmp2 8 ) )
    ( implies ( and ( not x2 ) ( and ( not x3 ) true ) ) ( = tmp1 0 ) )
    ( implies ( and ( not x2 ) ( and x3 true ) ) ( = tmp1 4 ) )
    ( implies ( and x2 ( and ( not x3 ) true ) ) ( = tmp1 4 ) )
    ( implies ( and x2 ( and x3 true ) ) ( = tmp1 8 ) )
  )
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback