File: mm-set.cpp

package info (click to toggle)
gecode-snapshot 6.2.0%2Bgit20240207-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 35,308 kB
  • sloc: cpp: 475,516; perl: 2,077; makefile: 1,816; sh: 198
file content (4545 lines) | stat: -rwxr-xr-x 151,295 bytes parent folder | download | duplicates (4)
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
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
 *  Main authors:
 *     Christian Schulte <schulte@gecode.org>
 *
 *  Copyright:
 *     Christian Schulte, 2008
 *
 *  This file is part of Gecode, the generic constraint
 *  development environment:
 *     http://www.gecode.org
 *
 *  Permission is hereby granted, free of charge, to any person obtaining
 *  a copy of this software and associated documentation files (the
 *  "Software"), to deal in the Software without restriction, including
 *  without limitation the rights to use, copy, modify, merge, publish,
 *  distribute, sublicense, and/or sell copies of the Software, and to
 *  permit persons to whom the Software is furnished to do so, subject to
 *  the following conditions:
 *
 *  The above copyright notice and this permission notice shall be
 *  included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */

#include "test/int.hh"

#include <gecode/minimodel.hh>

namespace Test { namespace Int {

  /// %Tests for minimal modelling constraints (%Set)
  namespace MiniModelSet {

    /// Set opcode
    enum SetOpcode {
      SO_CMPL,   ///< Complement
      SO_UNION,  ///< Union
      SO_DUNION, ///< Disjoint union
      SO_INTER,  ///< Intersection
      SO_MINUS,  ///< Difference
      SO_HLT     ///< Stop execution
    };

    /// Type for representing a set instruction
    class SetInstr {
    public:
      SetOpcode o; ///< Which instruction to execute
      unsigned char x, y, z;  ///< Instruction arguments, \a z is destination (or \a y for complement)
    };

    /// Executes set instruction for evaluation (checking)
    int
    eval(const SetInstr* pc, int reg[], bool& failed) {
      failed = false;
      while (true) {
        switch (pc->o) {
        case SO_CMPL: reg[pc->y] = !reg[pc->x]; break;
        case SO_INTER: reg[pc->z] = reg[pc->x] & reg[pc->y]; break;
        case SO_UNION:  reg[pc->z] = reg[pc->x] | reg[pc->y]; break;
        case SO_DUNION:
          if (reg[pc->x] && reg[pc->y])
            failed = true;
          reg[pc->z] = reg[pc->x] | reg[pc->y]; break;
        case SO_MINUS: reg[pc->z] = reg[pc->x] & (!reg[pc->y]); break;
        case SO_HLT: return reg[pc->x];
        default: GECODE_NEVER;
        }
        pc++;
      }
      GECODE_NEVER;
    }

    /// Executes set instruction for constructing set expressions
    Gecode::SetExpr
    eval(const SetInstr* pc, Gecode::SetExpr reg[]) {
      using namespace Gecode;
      while (true) {
        switch (pc->o) {
        case SO_CMPL:   reg[pc->y] = ((-reg[pc->x]) & singleton(1)); break;
        case SO_INTER:  reg[pc->z] = (reg[pc->x] & reg[pc->y]); break;
        case SO_UNION:  reg[pc->z] = (reg[pc->x] | reg[pc->y]); break;
        case SO_DUNION: reg[pc->z] = reg[pc->x] + reg[pc->y]; break;
        case SO_MINUS:  reg[pc->z] = reg[pc->x] - reg[pc->y]; break;
        case SO_HLT: return reg[pc->x];
        default: GECODE_NEVER;
        }
        pc++;
      }
      GECODE_NEVER;
    }

    bool
    simpleReifiedSemantics(const SetInstr* pc) {
      while (pc->o != SO_HLT) {
        if (pc->o == SO_DUNION)
          return false;
        pc++;
      }
      return true;
    }

    /**
     * \defgroup TaskTestSetMiniModelSet Minimal modelling constraints (%Set constraints)
     * \ingroup TaskTestSet
     */
    //@{
    /// %Test set expressions with constant result
    class SetExprConst : public Test {
    protected:
      /// %Set instruction sequence
      const SetInstr* bis;
      /// Result of expression
      int c;
      /// %Set relation
      Gecode::SetRelType srt;
    public:
      /// Create and register test
      SetExprConst(const SetInstr* bis0, const std::string& s,
                   Gecode::SetRelType srt0, int c0)
        : Test("MiniModel::SetExpr::Const::"+s+"::"+str(srt0)+"::"+str(c0),
               4,0,1,simpleReifiedSemantics(bis0)),
          bis(bis0), c(c0), srt(srt0) {}
      /// %Test whether \a x is solution
      virtual bool solution(const Assignment& x) const {
        int reg[4] = {(x[0] != x[2]), x[1],
                      (x[2] > 0), x[3]};
        bool failed;
        int ret = eval(bis, reg, failed);
        if (failed)
          return false;
        switch (srt) {
        case Gecode::SRT_EQ: return ret == c;
        case Gecode::SRT_NQ: return ret != c;
        case Gecode::SRT_SUB: return ret <= c;
        case Gecode::SRT_SUP: return ret >= c;
        case Gecode::SRT_DISJ: return ret+c != 2;
        case Gecode::SRT_CMPL: return ret != c;
        default: GECODE_NEVER;
        }
        return false;
      }
      /// Post constraint on \a x
      virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
        using namespace Gecode;
        SetVarArgs s(home,4,IntSet::empty,1,1);
        Gecode::rel(home, (singleton(1) == s[0]) == (x[0] != x[2]));
        Gecode::rel(home, (singleton(1) == s[1]) == (x[1] == 1));
        Gecode::rel(home, (singleton(1) == s[2]) == (x[2] > 0));
        Gecode::rel(home, (singleton(1) == s[3]) == (x[3] == 1));
        Gecode::SetExpr reg[4] = {s[0],s[1],s[2],s[3]};
        Gecode::SetExpr res = (c==0) ? IntSet::empty : singleton(1);
        Gecode::SetExpr e = eval(bis,reg);
        switch (srt) {
        case Gecode::SRT_EQ: Gecode::rel(home, e == res); break;
        case Gecode::SRT_NQ: Gecode::rel(home, e != res); break;
        case Gecode::SRT_SUB: Gecode::rel(home, e <= res); break;
        case Gecode::SRT_SUP: Gecode::rel(home, e >= res); break;
        case Gecode::SRT_DISJ: Gecode::rel(home, e || res); break;
        case Gecode::SRT_CMPL: Gecode::rel(home, e == -res); break;
        default: GECODE_NEVER;
        }
      }
      /// Post reified constraint on \a x
      virtual void post(Gecode::Space& home, Gecode::IntVarArray& x,
                        Gecode::Reify r) {
        using namespace Gecode;
        SetVarArgs s(home,4,IntSet::empty,1,1);
        Gecode::rel(home, (singleton(1) == s[0]) == (x[0] != x[2]));
        Gecode::rel(home, (singleton(1) == s[1]) == (x[1] == 1));
        Gecode::rel(home, (singleton(1) == s[2]) == (x[2] > 0));
        Gecode::rel(home, (singleton(1) == s[3]) == (x[3] == 1));
        Gecode::SetExpr reg[4] = {s[0],s[1],s[2],s[3]};
        Gecode::SetExpr res = (c==0) ? IntSet::empty : singleton(1);
        Gecode::SetExpr e = eval(bis,reg);
        Gecode::SetRel irel;
        switch (srt) {
        case Gecode::SRT_EQ: irel = (e == res); break;
        case Gecode::SRT_NQ: irel = (e != res); break;
        case Gecode::SRT_SUB: irel = (e <= res); break;
        case Gecode::SRT_SUP: irel = (e >= res); break;
        case Gecode::SRT_DISJ: irel = (e || res); break;
        case Gecode::SRT_CMPL: irel = (e == -res); break;
        default: GECODE_NEVER;
        }
        switch (r.mode()) {
        case Gecode::RM_EQV: Gecode::rel(home, r.var()==irel); break;
        case Gecode::RM_IMP: Gecode::rel(home, r.var() >> irel); break;
        case Gecode::RM_PMI: Gecode::rel(home, r.var() << irel); break;
        }
      }
    };

    /// %Test set expressions with expression result
    class SetExprExpr : public Test {
    protected:
      /// %First set instruction sequence
      const SetInstr* bis0;
      /// %Second set instruction sequence
      const SetInstr* bis1;
      /// %Set relation
      Gecode::SetRelType srt;
    public:
      /// Create and register test
      SetExprExpr(const SetInstr* bis00, const SetInstr* bis10,
                  const std::string& s, Gecode::SetRelType srt0)
        : Test("MiniModel::SetExpr::Expr::"+s+"::"+str(srt0),
               8,0,1,
               simpleReifiedSemantics(bis00) &&
               simpleReifiedSemantics(bis10)),
          bis0(bis00), bis1(bis10), srt(srt0) {}
      /// %Test whether \a x is solution
      virtual bool solution(const Assignment& x) const {
        int reg0[4] = {(x[0] != x[2]), x[1],
                       (x[2] > 0), x[3]};
        bool failed0;
        int ret0 = eval(bis0, reg0, failed0);
        if (failed0)
          return false;

        int reg1[4] = {(x[4] != x[6]), x[5],
                       (x[6] > 0), x[7]};
        bool failed1;
        int ret1 = eval(bis1, reg1, failed1);

        if (failed1)
          return false;

        switch (srt) {
        case Gecode::SRT_EQ: return ret0 == ret1;
        case Gecode::SRT_NQ: return ret0 != ret1;
        case Gecode::SRT_SUB: return ret0 <= ret1;
        case Gecode::SRT_SUP: return ret0 >= ret1;
        case Gecode::SRT_DISJ: return ret0+ret1 != 2;
        case Gecode::SRT_CMPL: return ret0 != ret1;
        default: GECODE_NEVER;
        }
        GECODE_NEVER;
        return false;
      }
      /// Post constraint on \a x
      virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) {
        using namespace Gecode;
        SetVarArgs s(home,8,IntSet::empty,1,1);
        Gecode::rel(home, (singleton(1) == s[0]) == (x[0] != x[2]));
        Gecode::rel(home, (singleton(1) == s[1]) == (x[1] == 1));
        Gecode::rel(home, (singleton(1) == s[2]) == (x[2] > 0));
        Gecode::rel(home, (singleton(1) == s[3]) == (x[3] == 1));

        Gecode::rel(home, (singleton(1) == s[4]) == (x[4] != x[6]));
        Gecode::rel(home, (singleton(1) == s[5]) == (x[5] == 1));
        Gecode::rel(home, (singleton(1) == s[6]) == (x[6] > 0));
        Gecode::rel(home, (singleton(1) == s[7]) == (x[7] == 1));

        Gecode::SetExpr reg0[4] = {s[0],s[1],s[2],s[3]};
        Gecode::SetExpr e0 = eval(bis0,reg0);

        Gecode::SetExpr reg1[4] = {s[4],s[5],s[6],s[7]};
        Gecode::SetExpr e1 = eval(bis1,reg1);

        switch (srt) {
        case Gecode::SRT_EQ: Gecode::rel(home, e0 == e1); break;
        case Gecode::SRT_NQ: Gecode::rel(home, e0 != e1); break;
        case Gecode::SRT_SUB: Gecode::rel(home, e0 <= e1); break;
        case Gecode::SRT_SUP: Gecode::rel(home, e0 >= e1); break;
        case Gecode::SRT_DISJ: Gecode::rel(home, e0 || e1); break;
        case Gecode::SRT_CMPL: Gecode::rel(home, e0 == -e1); break;
        default: GECODE_NEVER;
        }
      }
      /// Post reified constraint on \a x
      virtual void post(Gecode::Space& home, Gecode::IntVarArray& x,
                        Gecode::Reify r) {
        using namespace Gecode;
        SetVarArgs s(home,8,IntSet::empty,1,1);
        Gecode::rel(home, (singleton(1) == s[0]) == (x[0] != x[2]));
        Gecode::rel(home, (singleton(1) == s[1]) == (x[1] == 1));
        Gecode::rel(home, (singleton(1) == s[2]) == (x[2] > 0));
        Gecode::rel(home, (singleton(1) == s[3]) == (x[3] == 1));

        Gecode::rel(home, (singleton(1) == s[4]) == (x[4] != x[6]));
        Gecode::rel(home, (singleton(1) == s[5]) == (x[5] == 1));
        Gecode::rel(home, (singleton(1) == s[6]) == (x[6] > 0));
        Gecode::rel(home, (singleton(1) == s[7]) == (x[7] == 1));

        Gecode::SetExpr reg0[4] = {s[0],s[1],s[2],s[3]};
        Gecode::SetExpr e0 = eval(bis0,reg0);

        Gecode::SetExpr reg1[4] = {s[4],s[5],s[6],s[7]};
        Gecode::SetExpr e1 = eval(bis1,reg1);

        Gecode::SetRel srel;
        switch (srt) {
        case Gecode::SRT_EQ: srel = (e0 == e1); break;
        case Gecode::SRT_NQ: srel = (e0 != e1); break;
        case Gecode::SRT_SUB: srel = (e0 <= e1); break;
        case Gecode::SRT_SUP: srel = (e0 >= e1); break;
        case Gecode::SRT_DISJ: srel = (e0 || e1); break;
        case Gecode::SRT_CMPL: srel = (e0 == -e1); break;
        default: GECODE_NEVER;
        }
        switch (r.mode()) {
        case Gecode::RM_EQV: Gecode::rel(home, r.var()==srel); break;
        case Gecode::RM_IMP: Gecode::rel(home, r.var() >> srel); break;
        case Gecode::RM_PMI: Gecode::rel(home, r.var() << srel); break;
        }
      }
    };

    const SetInstr si000[] = {
      {SO_INTER,0,1,0},{SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si001[] = {
      {SO_INTER,0,1,0},{SO_INTER,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si002[] = {
      {SO_INTER,2,3,2},{SO_INTER,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si003[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_INTER,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si004[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si005[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si006[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si007[] = {
      {SO_INTER,0,1,0},{SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si008[] = {
      {SO_INTER,0,1,0},{SO_INTER,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si009[] = {
      {SO_INTER,2,3,2},{SO_INTER,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si010[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si011[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si012[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si013[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si014[] = {
      {SO_INTER,0,1,0},{SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si015[] = {
      {SO_INTER,0,1,0},{SO_INTER,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si016[] = {
      {SO_INTER,2,3,2},{SO_INTER,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si017[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si018[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si019[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si020[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si021[] = {
      {SO_INTER,0,1,0},{SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si022[] = {
      {SO_INTER,0,1,0},{SO_INTER,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si023[] = {
      {SO_INTER,2,3,2},{SO_INTER,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si024[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_INTER,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si025[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si026[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si027[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si028[] = {
      {SO_INTER,0,1,0},{SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si029[] = {
      {SO_INTER,0,1,0},{SO_INTER,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si030[] = {
      {SO_INTER,2,3,2},{SO_INTER,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si031[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_INTER,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si032[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si033[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si034[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si035[] = {
      {SO_INTER,0,1,0},{SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si036[] = {
      {SO_INTER,0,1,0},{SO_UNION ,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si037[] = {
      {SO_INTER,2,3,2},{SO_UNION ,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si038[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION ,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si039[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si040[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si041[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si042[] = {
      {SO_INTER,0,1,0},{SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si043[] = {
      {SO_INTER,0,1,0},{SO_UNION ,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si044[] = {
      {SO_INTER,2,3,2},{SO_UNION ,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si045[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si046[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si047[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si048[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si049[] = {
      {SO_INTER,0,1,0},{SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si050[] = {
      {SO_INTER,0,1,0},{SO_UNION ,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si051[] = {
      {SO_INTER,2,3,2},{SO_UNION ,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si052[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si053[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si054[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si055[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si056[] = {
      {SO_INTER,0,1,0},{SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si057[] = {
      {SO_INTER,0,1,0},{SO_UNION ,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si058[] = {
      {SO_INTER,2,3,2},{SO_UNION ,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si059[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION ,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si060[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si061[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si062[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si063[] = {
      {SO_INTER,0,1,0},{SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si064[] = {
      {SO_INTER,0,1,0},{SO_UNION ,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si065[] = {
      {SO_INTER,2,3,2},{SO_UNION ,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si066[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION ,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si067[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si068[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si069[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si070[] = {
      {SO_INTER,0,1,0},{SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si071[] = {
      {SO_INTER,0,1,0},{SO_UNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si072[] = {
      {SO_INTER,2,3,2},{SO_UNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si073[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si074[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si075[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si076[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si077[] = {
      {SO_INTER,0,1,0},{SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si078[] = {
      {SO_INTER,0,1,0},{SO_UNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si079[] = {
      {SO_INTER,2,3,2},{SO_UNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si080[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si081[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si082[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si083[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si084[] = {
      {SO_INTER,0,1,0},{SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si085[] = {
      {SO_INTER,0,1,0},{SO_UNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si086[] = {
      {SO_INTER,2,3,2},{SO_UNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si087[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si088[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si089[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si090[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si091[] = {
      {SO_INTER,0,1,0},{SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si092[] = {
      {SO_INTER,0,1,0},{SO_UNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si093[] = {
      {SO_INTER,2,3,2},{SO_UNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si094[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si095[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si096[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si097[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si098[] = {
      {SO_INTER,0,1,0},{SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si099[] = {
      {SO_INTER,0,1,0},{SO_UNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si100[] = {
      {SO_INTER,2,3,2},{SO_UNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si101[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_UNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si102[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si103[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si104[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si105[] = {
      {SO_INTER,0,1,0},{SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si106[] = {
      {SO_INTER,0,1,0},{SO_DUNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si107[] = {
      {SO_INTER,2,3,2},{SO_DUNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si108[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_DUNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si109[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si110[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si111[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si112[] = {
      {SO_INTER,0,1,0},{SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si113[] = {
      {SO_INTER,0,1,0},{SO_DUNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si114[] = {
      {SO_INTER,2,3,2},{SO_DUNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si115[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si116[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si117[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si118[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si119[] = {
      {SO_INTER,0,1,0},{SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si120[] = {
      {SO_INTER,0,1,0},{SO_DUNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si121[] = {
      {SO_INTER,2,3,2},{SO_DUNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si122[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si123[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si124[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si125[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si126[] = {
      {SO_INTER,0,1,0},{SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si127[] = {
      {SO_INTER,0,1,0},{SO_DUNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si128[] = {
      {SO_INTER,2,3,2},{SO_DUNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si129[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_DUNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si130[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si131[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si132[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si133[] = {
      {SO_INTER,0,1,0},{SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si134[] = {
      {SO_INTER,0,1,0},{SO_DUNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si135[] = {
      {SO_INTER,2,3,2},{SO_DUNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si136[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_DUNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si137[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si138[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si139[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si140[] = {
      {SO_INTER,0,1,0},{SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si141[] = {
      {SO_INTER,0,1,0},{SO_MINUS,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si142[] = {
      {SO_INTER,2,3,2},{SO_MINUS,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si143[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_MINUS,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si144[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si145[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si146[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si147[] = {
      {SO_INTER,0,1,0},{SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si148[] = {
      {SO_INTER,0,1,0},{SO_MINUS,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si149[] = {
      {SO_INTER,2,3,2},{SO_MINUS,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si150[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si151[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si152[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si153[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si154[] = {
      {SO_INTER,0,1,0},{SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si155[] = {
      {SO_INTER,0,1,0},{SO_MINUS,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si156[] = {
      {SO_INTER,2,3,2},{SO_MINUS,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si157[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si158[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si159[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si160[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si161[] = {
      {SO_INTER,0,1,0},{SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si162[] = {
      {SO_INTER,0,1,0},{SO_MINUS,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si163[] = {
      {SO_INTER,2,3,2},{SO_MINUS,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si164[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_MINUS,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si165[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si166[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si167[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si168[] = {
      {SO_INTER,0,1,0},{SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si169[] = {
      {SO_INTER,0,1,0},{SO_MINUS,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si170[] = {
      {SO_INTER,2,3,2},{SO_MINUS,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si171[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_INTER,0,1,0},{SO_MINUS,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si172[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_INTER,0,1,0},
      {SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si173[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si174[] = {
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si175[] = {
      {SO_UNION ,0,1,0},{SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si176[] = {
      {SO_UNION ,0,1,0},{SO_INTER,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si177[] = {
      {SO_UNION ,2,3,2},{SO_INTER,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si178[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_INTER,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si179[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si180[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si181[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si182[] = {
      {SO_UNION ,0,1,0},{SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si183[] = {
      {SO_UNION ,0,1,0},{SO_INTER,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si184[] = {
      {SO_UNION ,2,3,2},{SO_INTER,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si185[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si186[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si187[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si188[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si189[] = {
      {SO_UNION ,0,1,0},{SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si190[] = {
      {SO_UNION ,0,1,0},{SO_INTER,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si191[] = {
      {SO_UNION ,2,3,2},{SO_INTER,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si192[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si193[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si194[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si195[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si196[] = {
      {SO_UNION ,0,1,0},{SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si197[] = {
      {SO_UNION ,0,1,0},{SO_INTER,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si198[] = {
      {SO_UNION ,2,3,2},{SO_INTER,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si199[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_INTER,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si200[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si201[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si202[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si203[] = {
      {SO_UNION ,0,1,0},{SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si204[] = {
      {SO_UNION ,0,1,0},{SO_INTER,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si205[] = {
      {SO_UNION ,2,3,2},{SO_INTER,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si206[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_INTER,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si207[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si208[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si209[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si210[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si211[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si212[] = {
      {SO_UNION ,2,3,2},{SO_UNION ,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si213[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION ,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si214[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si215[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si216[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si217[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si218[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si219[] = {
      {SO_UNION ,2,3,2},{SO_UNION ,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si220[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si221[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si222[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si223[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si224[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si225[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si226[] = {
      {SO_UNION ,2,3,2},{SO_UNION ,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si227[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si228[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si229[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si230[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si231[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si232[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si233[] = {
      {SO_UNION ,2,3,2},{SO_UNION ,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si234[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION ,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si235[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si236[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si237[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si238[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si239[] = {
      {SO_UNION ,0,1,0},{SO_UNION ,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si240[] = {
      {SO_UNION ,2,3,2},{SO_UNION ,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si241[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION ,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si242[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si243[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si244[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si245[] = {
      {SO_UNION ,0,1,0},{SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si246[] = {
      {SO_UNION ,0,1,0},{SO_UNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si247[] = {
      {SO_UNION ,2,3,2},{SO_UNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si248[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si249[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si250[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si251[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si252[] = {
      {SO_UNION ,0,1,0},{SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si253[] = {
      {SO_UNION ,0,1,0},{SO_UNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si254[] = {
      {SO_UNION ,2,3,2},{SO_UNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si255[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si256[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si257[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si258[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si259[] = {
      {SO_UNION ,0,1,0},{SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si260[] = {
      {SO_UNION ,0,1,0},{SO_UNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si261[] = {
      {SO_UNION ,2,3,2},{SO_UNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si262[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si263[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si264[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si265[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si266[] = {
      {SO_UNION ,0,1,0},{SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si267[] = {
      {SO_UNION ,0,1,0},{SO_UNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si268[] = {
      {SO_UNION ,2,3,2},{SO_UNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si269[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si270[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si271[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si272[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si273[] = {
      {SO_UNION ,0,1,0},{SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si274[] = {
      {SO_UNION ,0,1,0},{SO_UNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si275[] = {
      {SO_UNION ,2,3,2},{SO_UNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si276[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_UNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si277[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si278[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si279[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si280[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si281[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si282[] = {
      {SO_UNION ,2,3,2},{SO_DUNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si283[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_DUNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si284[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si285[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si286[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si287[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si288[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si289[] = {
      {SO_UNION ,2,3,2},{SO_DUNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si290[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si291[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si292[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si293[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si294[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si295[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si296[] = {
      {SO_UNION ,2,3,2},{SO_DUNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si297[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si298[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si299[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si300[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si301[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si302[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si303[] = {
      {SO_UNION ,2,3,2},{SO_DUNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si304[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_DUNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si305[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si306[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si307[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si308[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si309[] = {
      {SO_UNION ,0,1,0},{SO_DUNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si310[] = {
      {SO_UNION ,2,3,2},{SO_DUNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si311[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_DUNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si312[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si313[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si314[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si315[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si316[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si317[] = {
      {SO_UNION ,2,3,2},{SO_MINUS,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si318[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_MINUS,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si319[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si320[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si321[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si322[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si323[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si324[] = {
      {SO_UNION ,2,3,2},{SO_MINUS,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si325[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si326[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si327[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si328[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si329[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si330[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si331[] = {
      {SO_UNION ,2,3,2},{SO_MINUS,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si332[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si333[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si334[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si335[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si336[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si337[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si338[] = {
      {SO_UNION ,2,3,2},{SO_MINUS,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si339[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_MINUS,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si340[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si341[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si342[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si343[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si344[] = {
      {SO_UNION ,0,1,0},{SO_MINUS,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si345[] = {
      {SO_UNION ,2,3,2},{SO_MINUS,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si346[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION ,0,1,0},{SO_MINUS,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si347[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION ,0,1,0},
      {SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si348[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si349[] = {
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si350[] = {
      {SO_UNION,0,1,0},{SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si351[] = {
      {SO_UNION,0,1,0},{SO_INTER,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si352[] = {
      {SO_UNION,2,3,2},{SO_INTER,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si353[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_INTER,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si354[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si355[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si356[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si357[] = {
      {SO_UNION,0,1,0},{SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si358[] = {
      {SO_UNION,0,1,0},{SO_INTER,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si359[] = {
      {SO_UNION,2,3,2},{SO_INTER,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si360[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si361[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si362[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si363[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si364[] = {
      {SO_UNION,0,1,0},{SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si365[] = {
      {SO_UNION,0,1,0},{SO_INTER,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si366[] = {
      {SO_UNION,2,3,2},{SO_INTER,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si367[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si368[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si369[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si370[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si371[] = {
      {SO_UNION,0,1,0},{SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si372[] = {
      {SO_UNION,0,1,0},{SO_INTER,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si373[] = {
      {SO_UNION,2,3,2},{SO_INTER,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si374[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_INTER,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si375[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si376[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si377[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si378[] = {
      {SO_UNION,0,1,0},{SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si379[] = {
      {SO_UNION,0,1,0},{SO_INTER,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si380[] = {
      {SO_UNION,2,3,2},{SO_INTER,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si381[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_INTER,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si382[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si383[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si384[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si385[] = {
      {SO_UNION,0,1,0},{SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si386[] = {
      {SO_UNION,0,1,0},{SO_UNION ,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si387[] = {
      {SO_UNION,2,3,2},{SO_UNION ,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si388[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si389[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si390[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si391[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si392[] = {
      {SO_UNION,0,1,0},{SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si393[] = {
      {SO_UNION,0,1,0},{SO_UNION ,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si394[] = {
      {SO_UNION,2,3,2},{SO_UNION ,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si395[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si396[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si397[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si398[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si399[] = {
      {SO_UNION,0,1,0},{SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si400[] = {
      {SO_UNION,0,1,0},{SO_UNION ,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si401[] = {
      {SO_UNION,2,3,2},{SO_UNION ,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si402[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si403[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si404[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si405[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si406[] = {
      {SO_UNION,0,1,0},{SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si407[] = {
      {SO_UNION,0,1,0},{SO_UNION ,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si408[] = {
      {SO_UNION,2,3,2},{SO_UNION ,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si409[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si410[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si411[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si412[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si413[] = {
      {SO_UNION,0,1,0},{SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si414[] = {
      {SO_UNION,0,1,0},{SO_UNION ,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si415[] = {
      {SO_UNION,2,3,2},{SO_UNION ,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si416[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si417[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si418[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si419[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si420[] = {
      {SO_UNION,0,1,0},{SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si421[] = {
      {SO_UNION,0,1,0},{SO_UNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si422[] = {
      {SO_UNION,2,3,2},{SO_UNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si423[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si424[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si425[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si426[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si427[] = {
      {SO_UNION,0,1,0},{SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si428[] = {
      {SO_UNION,0,1,0},{SO_UNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si429[] = {
      {SO_UNION,2,3,2},{SO_UNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si430[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si431[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si432[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si433[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si434[] = {
      {SO_UNION,0,1,0},{SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si435[] = {
      {SO_UNION,0,1,0},{SO_UNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si436[] = {
      {SO_UNION,2,3,2},{SO_UNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si437[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si438[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si439[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si440[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si441[] = {
      {SO_UNION,0,1,0},{SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si442[] = {
      {SO_UNION,0,1,0},{SO_UNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si443[] = {
      {SO_UNION,2,3,2},{SO_UNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si444[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si445[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si446[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si447[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si448[] = {
      {SO_UNION,0,1,0},{SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si449[] = {
      {SO_UNION,0,1,0},{SO_UNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si450[] = {
      {SO_UNION,2,3,2},{SO_UNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si451[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_UNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si452[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si453[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si454[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si455[] = {
      {SO_UNION,0,1,0},{SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si456[] = {
      {SO_UNION,0,1,0},{SO_DUNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si457[] = {
      {SO_UNION,2,3,2},{SO_DUNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si458[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si459[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si460[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si461[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si462[] = {
      {SO_UNION,0,1,0},{SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si463[] = {
      {SO_UNION,0,1,0},{SO_DUNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si464[] = {
      {SO_UNION,2,3,2},{SO_DUNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si465[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si466[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si467[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si468[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si469[] = {
      {SO_UNION,0,1,0},{SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si470[] = {
      {SO_UNION,0,1,0},{SO_DUNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si471[] = {
      {SO_UNION,2,3,2},{SO_DUNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si472[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si473[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si474[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si475[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si476[] = {
      {SO_UNION,0,1,0},{SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si477[] = {
      {SO_UNION,0,1,0},{SO_DUNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si478[] = {
      {SO_UNION,2,3,2},{SO_DUNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si479[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si480[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si481[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si482[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si483[] = {
      {SO_UNION,0,1,0},{SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si484[] = {
      {SO_UNION,0,1,0},{SO_DUNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si485[] = {
      {SO_UNION,2,3,2},{SO_DUNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si486[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si487[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si488[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si489[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si490[] = {
      {SO_UNION,0,1,0},{SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si491[] = {
      {SO_UNION,0,1,0},{SO_MINUS,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si492[] = {
      {SO_UNION,2,3,2},{SO_MINUS,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si493[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si494[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si495[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si496[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si497[] = {
      {SO_UNION,0,1,0},{SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si498[] = {
      {SO_UNION,0,1,0},{SO_MINUS,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si499[] = {
      {SO_UNION,2,3,2},{SO_MINUS,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si500[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si501[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si502[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si503[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si504[] = {
      {SO_UNION,0,1,0},{SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si505[] = {
      {SO_UNION,0,1,0},{SO_MINUS,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si506[] = {
      {SO_UNION,2,3,2},{SO_MINUS,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si507[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si508[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si509[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si510[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si511[] = {
      {SO_UNION,0,1,0},{SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si512[] = {
      {SO_UNION,0,1,0},{SO_MINUS,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si513[] = {
      {SO_UNION,2,3,2},{SO_MINUS,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si514[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si515[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si516[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si517[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si518[] = {
      {SO_UNION,0,1,0},{SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si519[] = {
      {SO_UNION,0,1,0},{SO_MINUS,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si520[] = {
      {SO_UNION,2,3,2},{SO_MINUS,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si521[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_UNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si522[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_UNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si523[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si524[] = {
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si525[] = {
      {SO_DUNION,0,1,0},{SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si526[] = {
      {SO_DUNION,0,1,0},{SO_INTER,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si527[] = {
      {SO_DUNION,2,3,2},{SO_INTER,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si528[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_INTER,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si529[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si530[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si531[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si532[] = {
      {SO_DUNION,0,1,0},{SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si533[] = {
      {SO_DUNION,0,1,0},{SO_INTER,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si534[] = {
      {SO_DUNION,2,3,2},{SO_INTER,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si535[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si536[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si537[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si538[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si539[] = {
      {SO_DUNION,0,1,0},{SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si540[] = {
      {SO_DUNION,0,1,0},{SO_INTER,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si541[] = {
      {SO_DUNION,2,3,2},{SO_INTER,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si542[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si543[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si544[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si545[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si546[] = {
      {SO_DUNION,0,1,0},{SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si547[] = {
      {SO_DUNION,0,1,0},{SO_INTER,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si548[] = {
      {SO_DUNION,2,3,2},{SO_INTER,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si549[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_INTER,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si550[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si551[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si552[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si553[] = {
      {SO_DUNION,0,1,0},{SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si554[] = {
      {SO_DUNION,0,1,0},{SO_INTER,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si555[] = {
      {SO_DUNION,2,3,2},{SO_INTER,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si556[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_INTER,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si557[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si558[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si559[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si560[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si561[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si562[] = {
      {SO_DUNION,2,3,2},{SO_UNION ,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si563[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si564[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si565[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si566[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si567[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si568[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si569[] = {
      {SO_DUNION,2,3,2},{SO_UNION ,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si570[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si571[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si572[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si573[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si574[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si575[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si576[] = {
      {SO_DUNION,2,3,2},{SO_UNION ,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si577[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si578[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si579[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si580[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si581[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si582[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si583[] = {
      {SO_DUNION,2,3,2},{SO_UNION ,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si584[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si585[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si586[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si587[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si588[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si589[] = {
      {SO_DUNION,0,1,0},{SO_UNION ,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si590[] = {
      {SO_DUNION,2,3,2},{SO_UNION ,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si591[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION ,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si592[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si593[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si594[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si595[] = {
      {SO_DUNION,0,1,0},{SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si596[] = {
      {SO_DUNION,0,1,0},{SO_UNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si597[] = {
      {SO_DUNION,2,3,2},{SO_UNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si598[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si599[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si600[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si601[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si602[] = {
      {SO_DUNION,0,1,0},{SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si603[] = {
      {SO_DUNION,0,1,0},{SO_UNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si604[] = {
      {SO_DUNION,2,3,2},{SO_UNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si605[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si606[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si607[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si608[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si609[] = {
      {SO_DUNION,0,1,0},{SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si610[] = {
      {SO_DUNION,0,1,0},{SO_UNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si611[] = {
      {SO_DUNION,2,3,2},{SO_UNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si612[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si613[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si614[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si615[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si616[] = {
      {SO_DUNION,0,1,0},{SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si617[] = {
      {SO_DUNION,0,1,0},{SO_UNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si618[] = {
      {SO_DUNION,2,3,2},{SO_UNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si619[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si620[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si621[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si622[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si623[] = {
      {SO_DUNION,0,1,0},{SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si624[] = {
      {SO_DUNION,0,1,0},{SO_UNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si625[] = {
      {SO_DUNION,2,3,2},{SO_UNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si626[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_UNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si627[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si628[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si629[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si630[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si631[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si632[] = {
      {SO_DUNION,2,3,2},{SO_DUNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si633[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si634[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si635[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si636[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si637[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si638[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si639[] = {
      {SO_DUNION,2,3,2},{SO_DUNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si640[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si641[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si642[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si643[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si644[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si645[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si646[] = {
      {SO_DUNION,2,3,2},{SO_DUNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si647[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si648[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si649[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si650[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si651[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si652[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si653[] = {
      {SO_DUNION,2,3,2},{SO_DUNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si654[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si655[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si656[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si657[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si658[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si659[] = {
      {SO_DUNION,0,1,0},{SO_DUNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si660[] = {
      {SO_DUNION,2,3,2},{SO_DUNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si661[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_DUNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si662[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si663[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si664[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si665[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si666[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si667[] = {
      {SO_DUNION,2,3,2},{SO_MINUS,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si668[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si669[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si670[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si671[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si672[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si673[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si674[] = {
      {SO_DUNION,2,3,2},{SO_MINUS,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si675[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si676[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si677[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si678[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si679[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si680[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si681[] = {
      {SO_DUNION,2,3,2},{SO_MINUS,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si682[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si683[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si684[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si685[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si686[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si687[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si688[] = {
      {SO_DUNION,2,3,2},{SO_MINUS,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si689[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si690[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si691[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si692[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si693[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si694[] = {
      {SO_DUNION,0,1,0},{SO_MINUS,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si695[] = {
      {SO_DUNION,2,3,2},{SO_MINUS,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si696[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_DUNION,0,1,0},{SO_MINUS,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si697[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_DUNION,0,1,0},
      {SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si698[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si699[] = {
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si700[] = {
      {SO_MINUS,0,1,0},{SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si701[] = {
      {SO_MINUS,0,1,0},{SO_INTER,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si702[] = {
      {SO_MINUS,2,3,2},{SO_INTER,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si703[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_INTER,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si704[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_INTER,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si705[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si706[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si707[] = {
      {SO_MINUS,0,1,0},{SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si708[] = {
      {SO_MINUS,0,1,0},{SO_INTER,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si709[] = {
      {SO_MINUS,2,3,2},{SO_INTER,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si710[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si711[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si712[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si713[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si714[] = {
      {SO_MINUS,0,1,0},{SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si715[] = {
      {SO_MINUS,0,1,0},{SO_INTER,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si716[] = {
      {SO_MINUS,2,3,2},{SO_INTER,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si717[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_INTER,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si718[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_INTER,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si719[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si720[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si721[] = {
      {SO_MINUS,0,1,0},{SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si722[] = {
      {SO_MINUS,0,1,0},{SO_INTER,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si723[] = {
      {SO_MINUS,2,3,2},{SO_INTER,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si724[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_INTER,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si725[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_INTER,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si726[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si727[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si728[] = {
      {SO_MINUS,0,1,0},{SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si729[] = {
      {SO_MINUS,0,1,0},{SO_INTER,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si730[] = {
      {SO_MINUS,2,3,2},{SO_INTER,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si731[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_INTER,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si732[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_INTER,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si733[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si734[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_INTER,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si735[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si736[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si737[] = {
      {SO_MINUS,2,3,2},{SO_UNION ,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si738[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION ,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si739[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION ,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si740[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si741[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si742[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si743[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si744[] = {
      {SO_MINUS,2,3,2},{SO_UNION ,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si745[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si746[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si747[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si748[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si749[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si750[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si751[] = {
      {SO_MINUS,2,3,2},{SO_UNION ,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si752[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION ,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si753[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION ,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si754[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si755[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si756[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si757[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si758[] = {
      {SO_MINUS,2,3,2},{SO_UNION ,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si759[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION ,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si760[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION ,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si761[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si762[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si763[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si764[] = {
      {SO_MINUS,0,1,0},{SO_UNION ,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si765[] = {
      {SO_MINUS,2,3,2},{SO_UNION ,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si766[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION ,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si767[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION ,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si768[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si769[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION ,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si770[] = {
      {SO_MINUS,0,1,0},{SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si771[] = {
      {SO_MINUS,0,1,0},{SO_UNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si772[] = {
      {SO_MINUS,2,3,2},{SO_UNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si773[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si774[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si775[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si776[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si777[] = {
      {SO_MINUS,0,1,0},{SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si778[] = {
      {SO_MINUS,0,1,0},{SO_UNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si779[] = {
      {SO_MINUS,2,3,2},{SO_UNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si780[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si781[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si782[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si783[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si784[] = {
      {SO_MINUS,0,1,0},{SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si785[] = {
      {SO_MINUS,0,1,0},{SO_UNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si786[] = {
      {SO_MINUS,2,3,2},{SO_UNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si787[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si788[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si789[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si790[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si791[] = {
      {SO_MINUS,0,1,0},{SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si792[] = {
      {SO_MINUS,0,1,0},{SO_UNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si793[] = {
      {SO_MINUS,2,3,2},{SO_UNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si794[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si795[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si796[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si797[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si798[] = {
      {SO_MINUS,0,1,0},{SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si799[] = {
      {SO_MINUS,0,1,0},{SO_UNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si800[] = {
      {SO_MINUS,2,3,2},{SO_UNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si801[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_UNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si802[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_UNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si803[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si804[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_UNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si805[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si806[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si807[] = {
      {SO_MINUS,2,3,2},{SO_DUNION,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si808[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_DUNION,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si809[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_DUNION,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si810[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si811[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si812[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si813[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si814[] = {
      {SO_MINUS,2,3,2},{SO_DUNION,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si815[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si816[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si817[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si818[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si819[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si820[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si821[] = {
      {SO_MINUS,2,3,2},{SO_DUNION,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si822[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_DUNION,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si823[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_DUNION,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si824[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si825[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si826[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si827[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si828[] = {
      {SO_MINUS,2,3,2},{SO_DUNION,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si829[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_DUNION,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si830[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_DUNION,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si831[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si832[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si833[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si834[] = {
      {SO_MINUS,0,1,0},{SO_DUNION,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si835[] = {
      {SO_MINUS,2,3,2},{SO_DUNION,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si836[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_DUNION,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si837[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_DUNION,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si838[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si839[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_DUNION,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si840[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si841[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,0,2,0},{SO_INTER,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si842[] = {
      {SO_MINUS,2,3,2},{SO_MINUS,1,2,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si843[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_MINUS,2,3,1},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si844[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_MINUS,2,3,1},{SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si845[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si846[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_INTER,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si847[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si848[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,0,2,0},{SO_UNION ,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si849[] = {
      {SO_MINUS,2,3,2},{SO_MINUS,1,2,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si850[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si851[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si852[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si853[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION ,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si854[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si855[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,0,2,0},{SO_UNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si856[] = {
      {SO_MINUS,2,3,2},{SO_MINUS,1,2,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si857[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_MINUS,2,3,1},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si858[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_MINUS,2,3,1},{SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si859[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si860[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_UNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si861[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si862[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,0,2,0},{SO_DUNION,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si863[] = {
      {SO_MINUS,2,3,2},{SO_MINUS,1,2,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si864[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_MINUS,2,3,1},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si865[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_MINUS,2,3,1},{SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si866[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si867[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_DUNION,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si868[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si869[] = {
      {SO_MINUS,0,1,0},{SO_MINUS,0,2,0},{SO_MINUS,0,3,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si870[] = {
      {SO_MINUS,2,3,2},{SO_MINUS,1,2,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si871[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_MINUS,0,1,0},{SO_MINUS,2,3,1},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si872[] = {
      {SO_CMPL,0,0,0},{SO_CMPL,2,2,0},{SO_CMPL,0,0,0},{SO_MINUS,0,1,0},
      {SO_MINUS,2,3,1},{SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si873[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si874[] = {
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},{SO_MINUS,2,3,1},{SO_CMPL,1,1,0},
      {SO_MINUS,0,1,0},{SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si875[] = {
      {SO_CMPL,0,0,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si876[] = {
      {SO_INTER,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si877[] = {
      {SO_UNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si878[] = {
      {SO_DUNION,0,1,0},
      {SO_HLT,0,0,0}
    };
    const SetInstr si879[] = {
      {SO_MINUS,0,1,0},
      {SO_HLT,0,0,0}
    };



    const SetInstr* si[] = {
      &si000[0],&si001[0],&si002[0],&si003[0],&si004[0],&si005[0],
      &si006[0],&si007[0],&si008[0],&si009[0],&si010[0],&si011[0],
      &si012[0],&si013[0],&si014[0],&si015[0],&si016[0],&si017[0],
      &si018[0],&si019[0],&si020[0],&si021[0],&si022[0],&si023[0],
      &si024[0],&si025[0],&si026[0],&si027[0],&si028[0],&si029[0],
      &si030[0],&si031[0],&si032[0],&si033[0],&si034[0],&si035[0],
      &si036[0],&si037[0],&si038[0],&si039[0],&si040[0],&si041[0],
      &si042[0],&si043[0],&si044[0],&si045[0],&si046[0],&si047[0],
      &si048[0],&si049[0],&si050[0],&si051[0],&si052[0],&si053[0],
      &si054[0],&si055[0],&si056[0],&si057[0],&si058[0],&si059[0],
      &si060[0],&si061[0],&si062[0],&si063[0],&si064[0],&si065[0],
      &si066[0],&si067[0],&si068[0],&si069[0],&si070[0],&si071[0],
      &si072[0],&si073[0],&si074[0],&si075[0],&si076[0],&si077[0],
      &si078[0],&si079[0],&si080[0],&si081[0],&si082[0],&si083[0],
      &si084[0],&si085[0],&si086[0],&si087[0],&si088[0],&si089[0],
      &si090[0],&si091[0],&si092[0],&si093[0],&si094[0],&si095[0],
      &si096[0],&si097[0],&si098[0],&si099[0],&si100[0],&si101[0],
      &si102[0],&si103[0],&si104[0],&si105[0],&si106[0],&si107[0],
      &si108[0],&si109[0],&si110[0],&si111[0],&si112[0],&si113[0],
      &si114[0],&si115[0],&si116[0],&si117[0],&si118[0],&si119[0],
      &si120[0],&si121[0],&si122[0],&si123[0],&si124[0],&si125[0],
      &si126[0],&si127[0],&si128[0],&si129[0],&si130[0],&si131[0],
      &si132[0],&si133[0],&si134[0],&si135[0],&si136[0],&si137[0],
      &si138[0],&si139[0],&si140[0],&si141[0],&si142[0],&si143[0],
      &si144[0],&si145[0],&si146[0],&si147[0],&si148[0],&si149[0],
      &si150[0],&si151[0],&si152[0],&si153[0],&si154[0],&si155[0],
      &si156[0],&si157[0],&si158[0],&si159[0],&si160[0],&si161[0],
      &si162[0],&si163[0],&si164[0],&si165[0],&si166[0],&si167[0],
      &si168[0],&si169[0],&si170[0],&si171[0],&si172[0],&si173[0],
      &si174[0],&si175[0],&si176[0],&si177[0],&si178[0],&si179[0],
      &si180[0],&si181[0],&si182[0],&si183[0],&si184[0],&si185[0],
      &si186[0],&si187[0],&si188[0],&si189[0],&si190[0],&si191[0],
      &si192[0],&si193[0],&si194[0],&si195[0],&si196[0],&si197[0],
      &si198[0],&si199[0],&si200[0],&si201[0],&si202[0],&si203[0],
      &si204[0],&si205[0],&si206[0],&si207[0],&si208[0],&si209[0],
      &si210[0],&si211[0],&si212[0],&si213[0],&si214[0],&si215[0],
      &si216[0],&si217[0],&si218[0],&si219[0],&si220[0],&si221[0],
      &si222[0],&si223[0],&si224[0],&si225[0],&si226[0],&si227[0],
      &si228[0],&si229[0],&si230[0],&si231[0],&si232[0],&si233[0],
      &si234[0],&si235[0],&si236[0],&si237[0],&si238[0],&si239[0],
      &si240[0],&si241[0],&si242[0],&si243[0],&si244[0],&si245[0],
      &si246[0],&si247[0],&si248[0],&si249[0],&si250[0],&si251[0],
      &si252[0],&si253[0],&si254[0],&si255[0],&si256[0],&si257[0],
      &si258[0],&si259[0],&si260[0],&si261[0],&si262[0],&si263[0],
      &si264[0],&si265[0],&si266[0],&si267[0],&si268[0],&si269[0],
      &si270[0],&si271[0],&si272[0],&si273[0],&si274[0],&si275[0],
      &si276[0],&si277[0],&si278[0],&si279[0],&si280[0],&si281[0],
      &si282[0],&si283[0],&si284[0],&si285[0],&si286[0],&si287[0],
      &si288[0],&si289[0],&si290[0],&si291[0],&si292[0],&si293[0],
      &si294[0],&si295[0],&si296[0],&si297[0],&si298[0],&si299[0],
      &si300[0],&si301[0],&si302[0],&si303[0],&si304[0],&si305[0],
      &si306[0],&si307[0],&si308[0],&si309[0],&si310[0],&si311[0],
      &si312[0],&si313[0],&si314[0],&si315[0],&si316[0],&si317[0],
      &si318[0],&si319[0],&si320[0],&si321[0],&si322[0],&si323[0],
      &si324[0],&si325[0],&si326[0],&si327[0],&si328[0],&si329[0],
      &si330[0],&si331[0],&si332[0],&si333[0],&si334[0],&si335[0],
      &si336[0],&si337[0],&si338[0],&si339[0],&si340[0],&si341[0],
      &si342[0],&si343[0],&si344[0],&si345[0],&si346[0],&si347[0],
      &si348[0],&si349[0],&si350[0],&si351[0],&si352[0],&si353[0],
      &si354[0],&si355[0],&si356[0],&si357[0],&si358[0],&si359[0],
      &si360[0],&si361[0],&si362[0],&si363[0],&si364[0],&si365[0],
      &si366[0],&si367[0],&si368[0],&si369[0],&si370[0],&si371[0],
      &si372[0],&si373[0],&si374[0],&si375[0],&si376[0],&si377[0],
      &si378[0],&si379[0],&si380[0],&si381[0],&si382[0],&si383[0],
      &si384[0],&si385[0],&si386[0],&si387[0],&si388[0],&si389[0],
      &si390[0],&si391[0],&si392[0],&si393[0],&si394[0],&si395[0],
      &si396[0],&si397[0],&si398[0],&si399[0],&si400[0],&si401[0],
      &si402[0],&si403[0],&si404[0],&si405[0],&si406[0],&si407[0],
      &si408[0],&si409[0],&si410[0],&si411[0],&si412[0],&si413[0],
      &si414[0],&si415[0],&si416[0],&si417[0],&si418[0],&si419[0],
      &si420[0],&si421[0],&si422[0],&si423[0],&si424[0],&si425[0],
      &si426[0],&si427[0],&si428[0],&si429[0],&si430[0],&si431[0],
      &si432[0],&si433[0],&si434[0],&si435[0],&si436[0],&si437[0],
      &si438[0],&si439[0],&si440[0],&si441[0],&si442[0],&si443[0],
      &si444[0],&si445[0],&si446[0],&si447[0],&si448[0],&si449[0],
      &si450[0],&si451[0],&si452[0],&si453[0],&si454[0],&si455[0],
      &si456[0],&si457[0],&si458[0],&si459[0],&si460[0],&si461[0],
      &si462[0],&si463[0],&si464[0],&si465[0],&si466[0],&si467[0],
      &si468[0],&si469[0],&si470[0],&si471[0],&si472[0],&si473[0],
      &si474[0],&si475[0],&si476[0],&si477[0],&si478[0],&si479[0],
      &si480[0],&si481[0],&si482[0],&si483[0],&si484[0],&si485[0],
      &si486[0],&si487[0],&si488[0],&si489[0],&si490[0],&si491[0],
      &si492[0],&si493[0],&si494[0],&si495[0],&si496[0],&si497[0],
      &si498[0],&si499[0],&si500[0],&si501[0],&si502[0],&si503[0],
      &si504[0],&si505[0],&si506[0],&si507[0],&si508[0],&si509[0],
      &si510[0],&si511[0],&si512[0],&si513[0],&si514[0],&si515[0],
      &si516[0],&si517[0],&si518[0],&si519[0],&si520[0],&si521[0],
      &si522[0],&si523[0],&si524[0],&si525[0],&si526[0],&si527[0],
      &si528[0],&si529[0],&si530[0],&si531[0],&si532[0],&si533[0],
      &si534[0],&si535[0],&si536[0],&si537[0],&si538[0],&si539[0],
      &si540[0],&si541[0],&si542[0],&si543[0],&si544[0],&si545[0],
      &si546[0],&si547[0],&si548[0],&si549[0],&si550[0],&si551[0],
      &si552[0],&si553[0],&si554[0],&si555[0],&si556[0],&si557[0],
      &si558[0],&si559[0],&si560[0],&si561[0],&si562[0],&si563[0],
      &si564[0],&si565[0],&si566[0],&si567[0],&si568[0],&si569[0],
      &si570[0],&si571[0],&si572[0],&si573[0],&si574[0],&si575[0],
      &si576[0],&si577[0],&si578[0],&si579[0],&si580[0],&si581[0],
      &si582[0],&si583[0],&si584[0],&si585[0],&si586[0],&si587[0],
      &si588[0],&si589[0],&si590[0],&si591[0],&si592[0],&si593[0],
      &si594[0],&si595[0],&si596[0],&si597[0],&si598[0],&si599[0],
      &si600[0],&si601[0],&si602[0],&si603[0],&si604[0],&si605[0],
      &si606[0],&si607[0],&si608[0],&si609[0],&si610[0],&si611[0],
      &si612[0],&si613[0],&si614[0],&si615[0],&si616[0],&si617[0],
      &si618[0],&si619[0],&si620[0],&si621[0],&si622[0],&si623[0],
      &si624[0],&si625[0],&si626[0],&si627[0],&si628[0],&si629[0],
      &si630[0],&si631[0],&si632[0],&si633[0],&si634[0],&si635[0],
      &si636[0],&si637[0],&si638[0],&si639[0],&si640[0],&si641[0],
      &si642[0],&si643[0],&si644[0],&si645[0],&si646[0],&si647[0],
      &si648[0],&si649[0],&si650[0],&si651[0],&si652[0],&si653[0],
      &si654[0],&si655[0],&si656[0],&si657[0],&si658[0],&si659[0],
      &si660[0],&si661[0],&si662[0],&si663[0],&si664[0],&si665[0],
      &si666[0],&si667[0],&si668[0],&si669[0],&si670[0],&si671[0],
      &si672[0],&si673[0],&si674[0],&si675[0],&si676[0],&si677[0],
      &si678[0],&si679[0],&si680[0],&si681[0],&si682[0],&si683[0],
      &si684[0],&si685[0],&si686[0],&si687[0],&si688[0],&si689[0],
      &si690[0],&si691[0],&si692[0],&si693[0],&si694[0],&si695[0],
      &si696[0],&si697[0],&si698[0],&si699[0],&si700[0],&si701[0],
      &si702[0],&si703[0],&si704[0],&si705[0],&si706[0],&si707[0],
      &si708[0],&si709[0],&si710[0],&si711[0],&si712[0],&si713[0],
      &si714[0],&si715[0],&si716[0],&si717[0],&si718[0],&si719[0],
      &si720[0],&si721[0],&si722[0],&si723[0],&si724[0],&si725[0],
      &si726[0],&si727[0],&si728[0],&si729[0],&si730[0],&si731[0],
      &si732[0],&si733[0],&si734[0],&si735[0],&si736[0],&si737[0],
      &si738[0],&si739[0],&si740[0],&si741[0],&si742[0],&si743[0],
      &si744[0],&si745[0],&si746[0],&si747[0],&si748[0],&si749[0],
      &si750[0],&si751[0],&si752[0],&si753[0],&si754[0],&si755[0],
      &si756[0],&si757[0],&si758[0],&si759[0],&si760[0],&si761[0],
      &si762[0],&si763[0],&si764[0],&si765[0],&si766[0],&si767[0],
      &si768[0],&si769[0],&si770[0],&si771[0],&si772[0],&si773[0],
      &si774[0],&si775[0],&si776[0],&si777[0],&si778[0],&si779[0],
      &si780[0],&si781[0],&si782[0],&si783[0],&si784[0],&si785[0],
      &si786[0],&si787[0],&si788[0],&si789[0],&si790[0],&si791[0],
      &si792[0],&si793[0],&si794[0],&si795[0],&si796[0],&si797[0],
      &si798[0],&si799[0],&si800[0],&si801[0],&si802[0],&si803[0],
      &si804[0],&si805[0],&si806[0],&si807[0],&si808[0],&si809[0],
      &si810[0],&si811[0],&si812[0],&si813[0],&si814[0],&si815[0],
      &si816[0],&si817[0],&si818[0],&si819[0],&si820[0],&si821[0],
      &si822[0],&si823[0],&si824[0],&si825[0],&si826[0],&si827[0],
      &si828[0],&si829[0],&si830[0],&si831[0],&si832[0],&si833[0],
      &si834[0],&si835[0],&si836[0],&si837[0],&si838[0],&si839[0],
      &si840[0],&si841[0],&si842[0],&si843[0],&si844[0],&si845[0],
      &si846[0],&si847[0],&si848[0],&si849[0],&si850[0],&si851[0],
      &si852[0],&si853[0],&si854[0],&si855[0],&si856[0],&si857[0],
      &si858[0],&si859[0],&si860[0],&si861[0],&si862[0],&si863[0],
      &si864[0],&si865[0],&si866[0],&si867[0],&si868[0],&si869[0],
      &si870[0],&si871[0],&si872[0],&si873[0],&si874[0],&si875[0],
      &si876[0],&si877[0],&si878[0],&si879[0]
    };


    /// Help class to create and register tests
    class Create {
    public:
      /// Perform creation and registration
      Create(void) {
        int n = sizeof(si)/sizeof(SetInstr*);
        for (int i=0; i<n; i++) {
          std::string s = Test::str(i);
          if (i < 10) {
            s = "00" + s;
          } else if (i < 100) {
            s = "0" + s;
          }
          (void) new SetExprConst(si[i],s,Gecode::SRT_EQ,0);
          (void) new SetExprConst(si[i],s,Gecode::SRT_EQ,1);
          (void) new SetExprConst(si[i],s,Gecode::SRT_NQ,0);
          (void) new SetExprConst(si[i],s,Gecode::SRT_NQ,1);
          (void) new SetExprConst(si[i],s,Gecode::SRT_SUB,0);
          (void) new SetExprConst(si[i],s,Gecode::SRT_SUB,1);
          (void) new SetExprConst(si[i],s,Gecode::SRT_SUP,0);
          (void) new SetExprConst(si[i],s,Gecode::SRT_SUP,1);
          (void) new SetExprConst(si[i],s,Gecode::SRT_DISJ,0);
          (void) new SetExprConst(si[i],s,Gecode::SRT_DISJ,1);

          if ( (i % 31) == 0) {

            for (int j=0; j<n; j++) {
              if ( (j % 37) == 0) {
                std::string ss = Test::str(j);
                if (j < 10) {
                  ss = "00" + ss;
                } else if (j < 100) {
                  ss = "0" + ss;
                }
                ss=s+"::"+ss;
                (void) new SetExprExpr(si[i],si[j],ss,Gecode::SRT_EQ);
                (void) new SetExprExpr(si[i],si[j],ss,Gecode::SRT_NQ);
                (void) new SetExprExpr(si[i],si[j],ss,Gecode::SRT_SUB);
                (void) new SetExprExpr(si[i],si[j],ss,Gecode::SRT_SUP);
                (void) new SetExprExpr(si[i],si[j],ss,Gecode::SRT_DISJ);
              }
            }
          }
        }
      }
    };

    Create c;
    //@}
   }

}}

// STATISTICS: test-minimodel