aboutsummaryrefslogtreecommitdiff
path: root/sky/compact.h
blob: 17eb1d4830b3aeedae76e154bed1f980293297f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
/* ScummVM - Scumm Interpreter
 * Copyright (C) 2003 The ScummVM project
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Header$
 *
 */

#ifndef SKYCOMPACT_H
#define SKYCOMPACT_H

#include "sky/sky.h"
#include "sky/struc.h"
#include "sky/skydefs.h"

namespace SkyCompact {
	MegaSet *getMegaSet(Compact *cpt, uint16 megaSet);
	uint16 **getTurnTable(Compact *cpt, uint16 megaSet, uint16 dir);
	uint16 *getSub(Compact *cpt, uint16 mode);
	void *getCompactElem(Compact *cpt, uint32 off);
	void patchFor288(void);

	extern uint16 s11_fl_tab288[33];
	extern uint16 s19_fl_tab288[17];
	extern uint16 s20_fl_tab288[37]; 
	extern uint16 s21_fl_tab288[31]; 
	extern uint16 s22_fl_tab288[31];
	extern uint16 s23_fl_tab288[27]; 
	extern uint16 s24_fl_tab288[23]; 
	extern uint16 s25_fl_tab288[19]; 
	extern uint16 s26_fl_tab288[29];
	extern uint16 s27_fl_tab288[29];
	extern uint16 s28_fl_tab288[27];
	extern uint16 s28_sml_tab288[13];
	extern uint16 s29_fl_tab288[27];
	extern uint16 s29_sml_tab288[13];
	extern uint16 body_tab288[7];
	extern uint16 chair_tab288[23];

	extern uint16 slide2_seq[];
	extern uint16 m_ss_st_up[];
	extern uint16 crouch_seq[];
	extern uint16 fost_open_cup[];
	extern Compact fan3;
	extern uint16 ss_smokes_1[];
	extern Compact fan7;
	extern uint16 slide_seq[];
	extern uint16 f_ss_st_right[];
	extern uint16 f_ss_left[];
	extern uint16 m_ss_down[];
	extern uint16 s2_pal[];
	extern uint16 foster_hanging[];
	extern Compact fan4;
	extern uint16 rs_ss_to_1[];
	extern uint16 rs_foster_to_one[];
	extern uint16 m_ss_r_to_d[];
	extern uint16 f_ss_l_to_u[];
	extern Compact load_point;
	extern uint16 rs_foster_5_0[];
	extern uint16 fost_pull_knob[];
	extern uint16 m_ss_r_to_u[];
	extern uint16 rs_foster_to_1[];
	extern uint16 monitor_seq[];
	extern uint16 joey_door_seq[];
	extern uint16 small_opens[];
	extern uint16 fost_knob_locked[];
	extern uint16 s4_pal[];
	extern uint16 alarm_seq[];
	extern uint16 reverse_seq[];
	extern Compact press;
	extern uint16 furnace_seq[];
	extern uint16 load_point_seq[];
	extern uint16 m_ss_right[];
	extern uint16 use_bar2[];
	extern uint16 fost_cant_open[];
	extern uint16 f_ss_l_to_r[];
	extern uint16 f_ss_u_to_d[];
	extern uint16 push_small[];
	extern uint16 m_ss_l_to_d[];
	extern uint16 s0_pal[];
	extern uint16 foster_shot[];
	extern uint16 lazer_stop_seq[];
	extern uint16 rs_start_alarm[];
	extern Compact fan1;
	extern uint16 f_ss_d_to_u[];
	extern uint16 ss_smokes_3[];
	extern uint16 lights1_seq[];
	extern uint16 eye_open[];
	extern uint16 press_seq[];
	extern uint16 cup_close_seq[];
	extern uint16 low_lift_down_seq1[];
	extern uint16 barrel_in_seq[];
	extern uint16 rs_big_foster[];
	extern uint16 screen0_low_logic[];
	extern uint16 rs_foster_2_0[];
	extern uint16 foster_g_d[];
	extern uint16 fost_but_seq[];
	extern uint16 jobs_look_scrn[];
	extern uint16 jobs_chuck_look[];
	extern uint16 eye_blink[];
	extern uint16 fan1_seq[];
	extern uint16 m_ss_st_right[];
	extern uint16 screen0_low_mouse[];
	extern uint16 fan7_seq[];
	extern uint16 f_ss_r_to_d[];
	extern uint16 r1_opens[];
	extern uint16 f_ss_u_to_l[];
	extern uint16 rs_mini_ss[];
	extern uint16 s3_pal[];
	extern uint16 ss_smokes_2[];
	extern uint16 m_ss_up[];
	extern uint16 m_ss_left[];
	extern uint16 m_ss_st_down[];
	extern uint16 m_ss_st_left[];
	extern uint16 m_ss_st_talk[];
	extern uint16 m_ss_u_to_d[];
	extern uint16 m_ss_u_to_l[];
	extern uint16 m_ss_u_to_r[];
	extern uint16 m_ss_d_to_u[];
	extern uint16 m_ss_d_to_l[];
	extern uint16 m_ss_d_to_r[];
	extern uint16 m_ss_l_to_u[];
	extern uint16 m_ss_l_to_r[];
	extern uint16 m_ss_r_to_l[];
	extern ExtCompact mini_so_ext;
	extern Compact mini_so;
	extern uint16 unload_seq1[];
	extern uint16 open_r1[];
	extern uint16 get_bar_out[];
	extern uint16 fost_close_cup[];
	extern uint16 barrel_down_seq2[];
	extern uint16 ss_kick[];
	extern uint16 f_ss_up[];
	extern uint16 f_ss_down[];
	extern uint16 f_ss_right[];
	extern uint16 f_ss_st_up[];
	extern uint16 f_ss_st_down[];
	extern uint16 f_ss_st_left[];
	extern uint16 f_ss_u_to_r[];
	extern uint16 f_ss_d_to_l[];
	extern uint16 f_ss_d_to_r[];
	extern uint16 f_ss_l_to_d[];
	extern uint16 f_ss_r_to_u[];
	extern uint16 f_ss_r_to_l[];
	extern ExtCompact full_so_ext;
	extern Compact full_so;
	extern uint16 panel_seq[];
	extern uint16 chip_list_0[];
	extern uint16 use_the_bar[];
	extern uint16 small_closes[];
	extern uint16 jobs_buttons[];
	extern uint16 up_stairs[];
	extern uint16 chuck_seq[];
	extern uint16 rs_foster_to_0[];
	extern Compact fire_notice;
	extern uint16 screen0_high_mouse[];
	extern uint16 foster_g_up[];
	extern uint16 rs_foster_s3[];
	extern uint16 rs_mini_foster[];
	extern uint16 bolt1_seq[];
	extern uint16 rs_foster_4_2[];
	extern uint16 screen0_high_logic[];
	extern uint16 fan6_seq[];
	extern uint16 fexit_opens[];
	extern uint16 fost_push_knob[];
	extern uint16 lazer_run_seq[];
	extern uint16 try_to_open_r0[];
	extern uint16 fast_list_cut2[];
	extern uint16 knob_down[];
	extern uint16 chip_list_sc0[];
	extern uint16 sc0_cut_logic[];
	extern Compact lazer_gun;
	extern uint16 up_stairs2[];
	extern uint16 barrel_down_seq[];
	extern uint16 daft_seq[];
	extern uint16 down_stairs2[];
	extern uint16 joey_jump_seq[];
	extern uint16 fost_lean_seq[];
	extern uint16 joey_wake_seq[];
	extern uint16 low_lift_down_seq2[];
	extern uint16 lazer_start_seq[];
	extern uint16 get_the_bar[];
	extern uint16 fan4_seq[];
	extern uint16 tv_seq[];
	extern uint16 bolt2_seq[];
	extern Compact fan6;
	extern uint16 jobs_pull_knob[];
	extern uint16 convey_seq[];
	extern uint16 fan5_seq[];
	extern uint16 guard_lean_out[];
	extern uint16 put_bar_away[];
	extern uint16 fan3_seq[];
	extern uint16 s1_pal[];
	extern uint16 eye_shoot[];
	extern uint16 furnace_door_open[];
	extern uint16 ss_smokes_4[];
	extern Compact fan5;
	extern uint16 jobs_close[];
	extern uint16 cup_open_seq[];
	extern uint16 guard_lean_back[];
	extern uint16 ss_kick_2[];
	extern uint16 shot1_seq[];
	extern uint16 fexit_closes[];
	extern uint16 low_lift_down_seq3[];
	extern uint16 rs_restart_barrel[];
	extern uint16 open_r0[];
	extern uint16 rs_foster_2_4[];
	extern uint16 ss_shoot_seq[];
	extern uint16 shut_r1[];
	extern uint16 down_stairs[];
	extern uint16 barrel_seq[];
	extern uint16 jobs_scratch[];
	extern uint16 unload_seq2[];
	extern uint16 rs_foster_0_2[];
	extern uint16 r1_closes[];
	extern uint16 rs_convey[];
	extern uint16 jobs_push_knob[];
	extern uint16 knob_up[];
	extern uint16 crouch_talk[];
	extern uint16 shot2_seq[];
	extern uint16 joey_fly2[];
	extern uint16 jobs_key_seq[];
	extern uint16 rs_mega_2_0[];
	extern uint16 uncrouch_seq[];
	extern uint16 fost_must_close[];
	extern uint16 joey_fly1[];
	extern uint16 lazer_gun_seq[];
	extern uint16 rs_mega_0_2[];
	extern Compact fan2;
	extern uint16 fan2_seq[];
	extern void *data_1[];
	extern Compact cancel_button;
	extern Compact button_4;
	extern Compact full_screen;
	extern Compact button_5;
	extern uint16 s101_logic[];
	extern Compact button_7;
	extern uint16 s101_mouse[];
	extern Compact button_1;
	extern uint16 s101_pal[];
	extern Compact button_0;
	extern Compact button_9;
	extern Compact button_8;
	extern Compact retina_scan;
	extern Compact button_6;
	extern Compact button_3;
	extern Compact button_2;
	extern uint16 s101_chip_list[];
	extern uint16 restore_seq[];
	extern Compact restore_butt;
	extern uint16 s102_logic[];
	extern uint16 exit_seq[];
	extern uint16 restart_seq[];
	extern uint16 s102_mouse[];
	extern Compact exit_butt;
	extern uint16 s102_pal[];
	extern uint16 s102_chip_list[];
	extern Compact restart_butt;
	extern uint16 liyt_4_seq[];
	extern uint16 litebank_seq[];
	extern uint16 rs_foster_from_linc[];
	extern uint16 stand_10_seq[];
	extern uint16 pod_up[];
	extern uint16 rs_foster_11_10[];
	extern uint16 lift_10_close[];
	extern uint16 s10_floor_table[];
	extern uint16 monitor_10_seq[];
	extern uint16 sit_10_seq[];
	extern Compact lift_slot_10;
	extern uint16 scanline_seq[];
	extern Compact s10_floor;
	extern uint16 rs_foster_10_11[];
	extern Compact terminal_10;
	extern uint16 linc_card_seq[];
	extern uint16 liyt_1_seq[];
	extern uint16 fsit_talk_seq[];
	extern Compact scanner_10;
	extern Compact pod_light;
	extern Compact pod;
	extern Compact fake_floor_10;
	extern uint16 lift_10_open[];
	extern uint16 linc_10_table[];
	extern Compact linc_10;
	extern uint16 s10_logic[];
	extern uint16 liyt_2_seq[];
	extern uint16 s10_chip_list[];
	extern uint16 pod_down[];
	extern Compact monitor_10;
	extern uint16 liyt_3_seq[];
	extern Compact lift_10;
	extern Compact litebank;
	extern uint16 pod_light_seq[];
	extern uint16 card2_seq[];
	extern Compact liyt_3;
	extern Compact liyt_2;
	extern uint16 s10_pal[];
	extern uint16 s10_mouse[];
	extern Compact liyt_4;
	extern Compact left_exit_10;
	extern Compact liyt_1;
	extern Compact slat_3;
	extern uint16 fallin_seq[];
	extern uint16 s11_mouse[];
	extern uint16 s11_pal[];
	extern Compact locker_11;
	extern uint16 locker_11_open[];
	extern uint16 bits2_seq[];
	extern Compact soccer_2;
	extern uint16 usecard_11_seq[];
	extern Compact bits;
	extern Compact cable_fall;
	extern Compact soccer_4;
	extern uint16 s11_floor_table[];
	extern Compact soccer_1;
	extern uint16 rs_foster_1_11[];
	extern uint16 s11_logic[];
	extern uint16 close_11_locker[];
	extern uint16 s11_chip_list[];
	extern Compact slat_1;
	extern uint16 locker_11_close[];
	extern Compact bits2;
	extern Compact slot_11;
	extern uint16 bits_seq[];
	extern Compact slat_4;
	extern uint16 fallin2_seq[];
	extern uint16 smashed_window_seq[];
	extern Compact spy_11;
	extern Compact soccer_3;
	extern uint16 cable_fall1_seq[];
	extern Compact cable_fall2;
	extern Compact right_exit_11;
	extern Compact smashed_window;
	extern Compact soccer_5;
	extern uint16 open_11_locker[];
	extern Compact slat_2;
	extern uint16 fallin3_seq[];
	extern Compact s11_floor;
	extern uint16 get_cable_11[];
	extern uint16 cant_open_locker[];
	extern Compact slat_5;
	extern uint16 cable_fall2_seq[];
	extern uint16 botbelt_seq[];
	extern uint16 s12_floor_table[];
	extern uint16 swap1_seq[];
	extern uint16 rs_joey_start_12[];
	extern uint16 rs_lamb_start_fact[];
	extern uint16 welder_seq[];
	extern uint16 rs_foster_7_12[];
	extern uint16 factory_spanner_seq[];
	extern uint16 pipes_seq[];
	extern uint16 swap3_seq[];
	extern Compact fact1_right_exit;
	extern Compact pipes;
	extern Compact botbelt;
	extern uint16 joey_list_12[];
	extern Compact welder;
	extern Compact factory_exit;
	extern uint16 s12_pal[];
	extern uint16 cant_lift_seq[];
	extern Compact topbelt;
	extern uint16 s12_fast_list[];
	extern uint16 s12_new_chip[];
	extern Compact console_12;
	extern uint16 anita_walk_seq[];
	extern uint16 anita_work_seq[];
	extern uint16 anita_turn_seq[];
	extern uint16 anita_turn_back[];
	extern uint16 rs_foster_12_7[];
	extern uint16 s12_mouse[];
	extern uint16 s12_chip_list[];
	extern Compact stump;
	extern uint16 swap2_seq[];
	extern Compact anita_spy;
	extern Compact s12_floor;
	extern uint16 s12_logic[];
	extern uint16 topbelt_seq[];
	extern uint16 foreman_l_to_r[];
	extern uint16 rs_foster[];
	extern uint16 gears_seq[];
	extern Compact fact2_exit_left;
	extern Compact fact_console;
	extern Compact pipe1;
	extern uint16 lite1_table[];
	extern Compact sensor;
	extern uint16 foreman_l_to_d[];
	extern uint16 foreman_st_up[];
	extern uint16 foreman_work_seq[];
	extern uint16 nu_s13_chip[];
	extern uint16 rs_storeman[];
	extern uint16 foreman_left[];
	extern uint16 closecoat[];
	extern uint16 pipe1_seq[];
	extern uint16 foreman_r_to_l[];
	extern Compact fact2_exit_right;
	extern uint16 foreman_l_to_u[];
	extern Compact lite1;
	extern uint16 s13_floor_table[];
	extern uint16 fsearch_seq[];
	extern Compact fact2_store_exit;
	extern Compact pipe4;
	extern uint16 foreman_u_to_d[];
	extern uint16 foreman_right[];
	extern uint16 belts2_seq[];
	extern uint16 forfrisk_seq[];
	extern uint16 rs_foreman[];
	extern uint16 pipe2_seq[];
	extern uint16 rs_foster_13_12[];
	extern Compact s13_floor;
	extern Compact cogs;
	extern uint16 foreman_r_to_u[];
	extern Compact belts2;
	extern uint16 foreman_d_to_l[];
	extern uint16 s13_chip_list[];
	extern uint16 foreman_st_talk[];
	extern uint16 fact_console_dead[];
	extern uint16 foreman_st_down[];
	extern Compact lite2;
	extern Compact gears;
	extern uint16 fost_cog_seq[];
	extern uint16 cogs_seq[];
	extern Compact pipe3;
	extern uint16 lite2_seq[];
	extern Compact belts1;
	extern uint16 s13_logic[];
	extern uint16 s13_mouse[];
	extern Compact sensors;
	extern uint16 fact_console_seq[];
	extern uint16 foreman_down[];
	extern uint16 foreman_up[];
	extern uint16 foreman_st_left[];
	extern uint16 foreman_st_right[];
	extern uint16 foreman_u_to_l[];
	extern uint16 foreman_u_to_r[];
	extern uint16 foreman_d_to_u[];
	extern uint16 foreman_d_to_r[];
	extern uint16 foreman_r_to_d[];
	extern ExtCompact foreman_ext;
	extern Compact foreman;
	extern uint16 lite1_seq[];
	extern uint16 pipe3_seq[];
	extern uint16 opencoat_seq[];
	extern uint16 sensor_seq[];
	extern Compact fact2_spy_and_window;
	extern uint16 belts1_seq[];
	extern Compact pipe2;
	extern uint16 s13_pal[];
	extern uint16 new_13_chip[];
	extern uint16 rs_foster_12_13[];
	extern uint16 s13_fast_list[];
	extern uint16 pipe4_seq[];
	extern uint16 armsup_seq[];
	extern uint16 rs_foster_14_13[];
	extern uint16 rs_foster_13_14[];
	extern uint16 radman_l_to_r[];
	extern uint16 radman_up[];
	extern uint16 radman_down[];
	extern uint16 radman_left[];
	extern uint16 radman_right[];
	extern uint16 radman_st_up[];
	extern uint16 radman_st_down[];
	extern uint16 radman_st_left[];
	extern uint16 radman_st_right[];
	extern uint16 radman_st_talk[];
	extern uint16 radman_u_to_d[];
	extern uint16 radman_u_to_l[];
	extern uint16 radman_u_to_r[];
	extern uint16 radman_d_to_u[];
	extern uint16 radman_d_to_l[];
	extern uint16 radman_d_to_r[];
	extern uint16 radman_l_to_u[];
	extern uint16 radman_l_to_d[];
	extern uint16 radman_r_to_u[];
	extern uint16 radman_r_to_d[];
	extern uint16 radman_r_to_l[];
	extern ExtCompact radman_ext;
	extern Compact radman;
	extern Compact locker2;
	extern uint16 start_joey_14[];
	extern Compact fact3_exit_left;
	extern uint16 rs_anita_to_14[];
	extern uint16 s14_logic[];
	extern uint16 close_locker_seq[];
	extern uint16 locker_close_seq[];
	extern uint16 s14_floor_table[];
	extern Compact s14_floor;
	extern uint16 rad_open_locker[];
	extern uint16 change_back6[];
	extern uint16 change1_seq[];
	extern uint16 change_back3[];
	extern uint16 rs_foster_16_14[];
	extern Compact console_14;
	extern uint16 s14_pal[];
	extern uint16 change3_seq[];
	extern uint16 change_back4[];
	extern uint16 open_locker_seq[];
	extern uint16 change4_seq[];
	extern uint16 foster_give_seq[];
	extern Compact locker3;
	extern Compact rad_screen;
	extern uint16 change5_seq[];
	extern Compact locker1;
	extern Compact coat;
	extern uint16 change_back5[];
	extern Compact machine;
	extern uint16 anita_give_seq[];
	extern uint16 s14_fast_list[];
	extern Compact fact3_exit_right;
	extern uint16 joey_list_14[];
	extern uint16 rad_close_locker[];
	extern uint16 locker_open_seq[];
	extern uint16 s14_mouse[];
	extern uint16 s14_chip_list[];
	extern uint16 change_back2[];
	extern uint16 change2_seq[];
	extern uint16 change_back1[];
	extern uint16 change6_seq[];
	extern uint16 rs_foster_13_15[];
	extern Compact flap;
	extern uint16 weld_seq[];
	extern uint16 rs_foster_15_13[];
	extern Compact whole_floor;
	extern uint16 s15_logic[];
	extern uint16 flap_seq[];
	extern uint16 s15_floor_table[];
	extern Compact s15_flooor;
	extern uint16 flip_seq[];
	extern Compact skey;
	extern uint16 s15_pal[];
	extern Compact wd40;
	extern Compact junction_box;
	extern uint16 rs_joey_15_13[];
	extern Compact store_exit;
	extern uint16 s15_fast_list[];
	extern Compact nu_floor;
	extern Compact floor_putty;
	extern uint16 s15_mouse[];
	extern uint16 joey_list_15[];
	extern uint16 get_putty_seq[];
	extern uint16 shelf_get_seq[];
	extern uint16 s15_fake_mouse[];
	extern uint16 s15_chip_list[];
	extern Compact reactor_lower;
	extern uint16 foster2_die_seq[];
	extern Compact reactor_console;
	extern uint16 s16_fast_list[];
	extern Compact entrance_exit;
	extern uint16 console_16_seq[];
	extern uint16 s16_floor_table[];
	extern Compact s16_floor;
	extern uint16 s16_pal[];
	extern uint16 s16_chip_list[];
	extern uint16 rad_con_look[];
	extern uint16 s16_logic[];
	extern uint16 foster_die_seq[];
	extern Compact reactor_door;
	extern uint16 s16_mouse[];
	extern uint16 rs_foster_14_16[];
	extern uint16 fost_con_look[];
	extern uint16 pulseb_seq[];
	extern uint16 s17_floor_table[];
	extern Compact s17_floor;
	extern uint16 get_card_seq[];
	extern Compact core_exit;
	extern uint16 rs_foster_17_16[];
	extern uint16 s17_chip_list[];
	extern uint16 s17_pal[];
	extern uint16 s17_mouse[];
	extern Compact pulseb;
	extern uint16 s17_fast_list[];
	extern uint16 pulse_seq[];
	extern Compact anita_card;
	extern uint16 rs_foster_16_17[];
	extern uint16 s17_logic[];
	extern Compact pulse;
	extern uint16 steam_alert_seq[];
	extern uint16 sleep_seq[];
	extern Compact power_door;
	extern uint16 steam1_seq[];
	extern uint16 unpush_but_seq[];
	extern Compact right_lever;
	extern uint16 steam2_seq[];
	extern uint16 blowoff_seq[];
	extern uint16 s18_mouse[];
	extern uint16 power_start_seq[];
	extern Compact power_switch;
	extern uint16 power_stop_seq[];
	extern uint16 s18_floor_table[];
	extern Compact s18_floor;
	extern uint16 joey_list_s18[];
	extern uint16 nu_chip_18[];
	extern Compact power_chair;
	extern uint16 steam3_seq[];
	extern Compact left_skull;
	extern uint16 rs_gordon_end[];
	extern Compact right_skull;
	extern uint16 power_spin_seq[];
	extern uint16 s18_fast_list[];
	extern uint16 steam4_seq[];
	extern Compact steam;
	extern Compact socket;
	extern Compact power_motor;
	extern uint16 joey_unpush_seq[];
	extern uint16 high_push_seq[];
	extern Compact left_lever;
	extern uint16 s18_pal[];
	extern uint16 rs_foster_to_18[];
	extern uint16 power_bang_seq[];
	extern uint16 s18_logic[];
	extern uint16 high_unpush_seq[];
	extern uint16 s18_chip_list[];
	extern Compact power_bang;
	extern uint16 push_but_seq[];
	extern uint16 door_blast_seq[];
	extern uint16 rs_gordon_start[];
	extern uint16 monhit_seq[];
	extern uint16 spanner_seq[];
	extern uint16 joey_push_seq[];
	extern Compact right_exit_s18;
	extern uint16 rs_foster_19_28[];
	extern uint16 s19_mouse[];
	extern uint16 s19_floor_table[];
	extern Compact s19_floor;
	extern uint16 rs_28_sml_19[];
	extern uint16 s19_logic[];
	extern Compact right_exit_19;
	extern ExtCompact useless_char_ext;
	extern Compact useless_char;
	extern Compact left_exit_19;
	extern uint16 joey_list_s19[];
	extern uint16 rs_foster_28_19[];
	extern Compact top_right_19;
	extern uint16 s19_pal[];
	extern uint16 s19_chip_list[];
	extern uint16 s19_fast_list[];
	extern uint16 car_down_seq[];
	extern uint16 car_up_seq[];
	extern uint16 smoke1_seq[];
	extern uint16 screen1_logic[];
	extern uint16 fast_list_cut[];
	extern uint16 lfan2_seq[];
	extern Compact smoke2;
	extern Compact lfan2;
	extern uint16 lfan1_seq[];
	extern uint16 smoke2_seq[];
	extern Compact car_down;
	extern uint16 fire2_seq[];
	extern Compact smoke1;
	extern uint16 fast_list_sc1[];
	extern Compact fire_notice2;
	extern Compact car_up;
	extern Compact fire1;
	extern Compact ss_sign;
	extern Compact lfan1;
	extern uint16 chip_list_1[];
	extern uint16 sc1_mouse[];
	extern Compact fire2;
	extern uint16 fire1_seq[];
	extern uint16 gal_look_up[];
	extern uint16 rs_joey_start_20[];
	extern uint16 s20_pal[];
	extern Compact lamb_door_20;
	extern Compact reich_window;
	extern uint16 usecard_seq[];
	extern uint16 s20_chip_list[];
	extern Compact down_exit_20;
	extern uint16 s20_fast_list[];
	extern uint16 rs_all_28_20[];
	extern uint16 s20_floor_table[];
	extern Compact s20_floor;
	extern uint16 lamb_20_open[];
	extern Compact lamb_window;
	extern uint16 gal_look_down[];
	extern Compact lamb_slot;
	extern uint16 lamb_20_close[];
	extern Compact shrub_3;
	extern uint16 reich_20_close[];
	extern Compact reich_slot;
	extern Compact shrub_2;
	extern uint16 joey_list_20[];
	extern uint16 reich_20_open[];
	extern Compact shrub_1;
	extern uint16 s20_logic[];
	extern uint16 lamb_card_seq2[];
	extern Compact reich_door_20;
	extern uint16 rs_foster_20_28[];
	extern ExtCompact gallager_bel_ext;
	extern Compact gallager_bel;
	extern uint16 s20_mouse[];
	extern uint16 lamb_sit_up[];
	extern uint16 s21_logic[];
	extern uint16 cat1_seq[];
	extern uint16 rs_foster_21_20[];
	extern uint16 inner_lamb_close[];
	extern uint16 push_dispensor[];
	extern uint16 s21_floor_table[];
	extern Compact s21_floor;
	extern uint16 s21_chip_list[];
	extern uint16 lamb_sit_seq[];
	extern Compact cat_food;
	extern Compact video;
	extern Compact video_screen;
	extern uint16 rs_foster_20_21[];
	extern uint16 cat4_seq[];
	extern uint16 video_out[];
	extern uint16 inner_lamb_open[];
	extern uint16 s21_mouse[];
	extern uint16 video_in[];
	extern Compact lambs_books;
	extern uint16 cat_walk_seq[];
	extern Compact big_pict1;
	extern Compact lambs_chair;
	extern uint16 put_video_in[];
	extern uint16 watch_film[];
	extern Compact cat;
	extern Compact big_pict3;
	extern uint16 cat3_seq[];
	extern uint16 s21_fast_list[];
	extern uint16 bend_down[];
	extern uint16 take_video_out[];
	extern Compact big_pict2;
	extern uint16 cat_food_seq[];
	extern Compact left_exit_21;
	extern Compact inner_lamb_door;
	extern Compact fake_floor_21;
	extern uint16 cat_eat_seq[];
	extern uint16 more_cassette_seq[];
	extern Compact cassette;
	extern uint16 s21_pal[];
	extern Compact dispensor;
	extern uint16 cat2_seq[];
	extern uint16 take_cassette_seq[];
	extern uint16 fost_replace_pill[];
	extern uint16 rs_foster_20_22[];
	extern Compact reich_picture;
	extern Compact inner_reich_door;
	extern uint16 rs_foster_22_20[];
	extern uint16 fost_remove_pill[];
	extern uint16 inner_reich_open[];
	extern uint16 rs_magazine[];
	extern uint16 remove_pillow[];
	extern uint16 s22_floor_table[];
	extern Compact pillow;
	extern uint16 inner_reich_close[];
	extern Compact lamb_bed;
	extern uint16 replace_pillow[];
	extern uint16 get_magazine_seq[];
	extern uint16 tank3_seq[];
	extern uint16 tank2_seq[];
	extern Compact s22_floor;
	extern Compact right_exit_22;
	extern Compact reich_chair;
	extern uint16 s22_mouse[];
	extern Compact fish_tank;
	extern Compact fake_floor_22;
	extern uint16 s22_fast_list[];
	extern uint16 s22_logic[];
	extern uint16 s22_chip_list[];
	extern Compact magazine;
	extern uint16 fish_seq[];
	extern Compact cert;
	extern uint16 s22_pal[];
	extern Compact cabinet;
	extern Compact lamb_tv;
	extern Compact fish_food;
	extern Compact fish_poster;
	extern Compact link_23;
	extern uint16 s23_chip_list[];
	extern Compact sculpture;
	extern Compact wreck_23;
	extern Compact anchor_exit_23;
	extern Compact bin_23;
	extern uint16 s23_pal[];
	extern uint16 s23_logic[];
	extern uint16 s23_mouse[];
	extern Compact small_exit_23;
	extern Compact travel_exit_23;
	extern uint16 s23_fast_list[];
	extern Compact left_exit_23;
	extern uint16 s23_floor_table[];
	extern Compact s23_floor;
	extern uint16 rs_foster_29_23[];
	extern uint16 give_mag_seq[];
	extern uint16 trev_read_mag[];
	extern uint16 s24_floor_table[];
	extern Compact s24_floor;
	extern uint16 mag_away[];
	extern Compact left_exit_24;
	extern Compact mural;
	extern uint16 trevor_relax[];
	extern uint16 rs_foster_23_24[];
	extern uint16 s24_mouse[];
	extern uint16 trevor_unrelax[];
	extern Compact pidgeons;
	extern uint16 trev_get_mag[];
	extern uint16 s24_chip_list[];
	extern uint16 rs_foster_24_23[];
	extern uint16 mag_back_seq[];
	extern uint16 push_globe[];
	extern uint16 s24_pal[];
	extern uint16 joey_list_s24[];
	extern uint16 mag_out[];
	extern uint16 trev_turn_page[];
	extern ExtCompact trevor_ext;
	extern Compact trevor;
	extern Compact ticket;
	extern Compact new_york_poster;
	extern Compact london_poster;
	extern uint16 get_ticket[];
	extern uint16 s24_logic[];
	extern uint16 globe_spin[];
	extern uint16 ticket_seq[];
	extern Compact globe;
	extern uint16 trevor_scratch[];
	extern uint16 s24_fast_list[];
	extern Compact sales_chart;
	extern uint16 hook_seq[];
	extern uint16 s25_pal[];
	extern Compact statue_25;
	extern Compact anchor_exit_25;
	extern uint16 spark_25_seq[];
	extern uint16 rs_foster_23_25[];
	extern ExtCompact anchor_ext;
	extern Compact anchor;
	extern uint16 s25_chip_list[];
	extern uint16 lazer_25_seq[];
	extern uint16 s25_fast_list[];
	extern uint16 anchor_leave_seq[];
	extern uint16 joey_list_s25[];
	extern uint16 rs_foster_25_23[];
	extern uint16 s25_mouse[];
	extern uint16 s25_logic[];
	extern uint16 anchor_seq[];
	extern uint16 anchor_return_seq[];
	extern Compact hook;
	extern Compact spark_25;
	extern Compact lazer_25;
	extern uint16 s25_floor_table[];
	extern uint16 get_anchor_seq[];
	extern Compact s25_floor;
	extern Compact bio_door;
	extern Compact plant_26;
	extern uint16 s26_floor_table[];
	extern uint16 s26_mouse[];
	extern uint16 s26_pal[];
	extern uint16 helga_awake[];
	extern Compact right_exit_26;
	extern uint16 wobble2[];
	extern uint16 helga_byeee[];
	extern Compact left_exit_26;
	extern uint16 rs_joey_start_26[];
	extern uint16 bio_door_open[];
	extern uint16 wobble1[];
	extern ExtCompact holo_ext;
	extern Compact holo;
	extern Compact poster2;
	extern uint16 s26_fast_list[];
	extern uint16 joey_list_s26[];
	extern uint16 return_leaflet[];
	extern uint16 rs_foster_19_26[];
	extern uint16 get_leaflet[];
	extern Compact poster3;
	extern Compact leaflet;
	extern uint16 s26_chip_list[];
	extern uint16 rs_foster_26_19[];
	extern Compact poster4;
	extern uint16 s26_logic[];
	extern Compact poster1;
	extern Compact s26_floor;
	extern uint16 s27_logic[];
	extern uint16 scan_27_seq[];
	extern uint16 body_table[];
	extern uint16 glass_scan[];
	extern uint16 put_glass_seq[];
	extern uint16 burke_u_to_d[];
	extern uint16 burke_l_to_u[];
	extern Compact helmet_cole;
	extern uint16 rs_foster_27_26[];
	extern uint16 burke_d_to_u[];
	extern uint16 burke_st_talk[];
	extern uint16 out_chair_seq[];
	extern uint16 burke_st_right[];
	extern uint16 burke_u_to_l[];
	extern uint16 hand_op_seq[];
	extern uint16 helmet_up[];
	extern uint16 hand_in_seq[];
	extern uint16 burke_r_to_u[];
	extern uint16 burke_left[];
	extern uint16 burke_st_up[];
	extern uint16 burke_st_left[];
	extern uint16 chair_table[];
	extern Compact gas;
	extern uint16 lung_seq[];
	extern uint16 burke_l_to_r[];
	extern uint16 glass_slot_open[];
	extern ExtCompact body_ext;
	extern Compact body;
	extern uint16 glove_off_seq[];
	extern uint16 rs_small_burke[];
	extern uint16 burke_d_to_l[];
	extern uint16 rs_foster_26_27[];
	extern uint16 burke_up[];
	extern uint16 operate_seq[];
	extern uint16 s27_floor_table[];
	extern uint16 helmet_down[];
	extern uint16 squirm_seq[];
	extern uint16 burke_r_to_d[];
	extern uint16 glove_on_seq[];
	extern Compact chart2;
	extern uint16 burke_r_to_l[];
	extern Compact chart1;
	extern uint16 rs_big_burke[];
	extern uint16 burke_down[];
	extern uint16 medi_comp_seq[];
	extern uint16 helmet_op_seq[];
	extern uint16 gas_seq[];
	extern uint16 burke_l_to_d[];
	extern uint16 glass_slot_close[];
	extern uint16 s27_mouse[];
	extern uint16 burke_right[];
	extern uint16 burke_st_down[];
	extern uint16 burke_u_to_r[];
	extern uint16 burke_d_to_r[];
	extern ExtCompact burke_ext;
	extern Compact burke;
	extern uint16 shake_seq[];
	extern uint16 hands_out_seq[];
	extern uint16 s27_pal[];
	extern uint16 s27_fast_list[];
	extern Compact medi_comp;
	extern Compact glass_slot;
	extern uint16 in_chair_seq[];
	extern uint16 s27_chip_list[];
	extern uint16 kidney_seq[];
	extern Compact scanner_27;
	extern Compact s27_floor;
	extern uint16 fprint_seq[];
	extern Compact right_exit_27;
	extern Compact chair_27;
	extern uint16 s28_chip_list[];
	extern uint16 s28_floor_table[];
	extern uint16 s28_sml_table[];
	extern Compact s28_sml_floor;
	extern uint16 slot_28_anim[];
	extern Compact left_exit_28;
	extern uint16 rs_foster_28_29[];
	extern Compact s28_floor;
	extern uint16 s28_logic[];
	extern Compact small_r_28;
	extern uint16 s28_pal[];
	extern Compact up_exit_28;
	extern Compact dustbin_28;
	extern uint16 rs_31_28[];
	extern Compact slot_28;
	extern uint16 s28_mouse[];
	extern uint16 lift_28_close[];
	extern uint16 lift_28_open[];
	extern Compact right_exit_28;
	extern uint16 rs_lamb_28[];
	extern uint16 rs_foster_29_28[];
	extern uint16 s28_sml_mouse[];
	extern Compact lift_28;
	extern Compact small_l_28;
	extern uint16 rs_joey_7_29[];
	extern uint16 s29_floor_table[];
	extern Compact s29_floor;
	extern uint16 card_slot_29_anim[];
	extern uint16 s29_lift_open[];
	extern uint16 rs_19_sml_28[];
	extern uint16 sml_joey_list_28[];
	extern Compact s29_card_slot;
	extern uint16 s29_sml_mouse[];
	extern uint16 s29_logic[];
	extern uint16 s29_pal[];
	extern Compact small_l_29;
	extern uint16 rs_foster_7_29[];
	extern uint16 rs_28_sml_29[];
	extern uint16 s29_chip_list[];
	extern uint16 s29_lift_close[];
	extern uint16 rs_29_sml_23[];
	extern uint16 rs_lamb_start_bel[];
	extern uint16 s29_mouse[];
	extern Compact lift_29;
	extern Compact lift29_light;
	extern uint16 joey_list_s29[];
	extern Compact right_exit_29;
	extern uint16 rs_foster_23_29[];
	extern Compact left_exit_29;
	extern uint16 lamb_card_29[];
	extern Compact cable_29;
	extern uint16 get_cable_29_seq[];
	extern Compact small_r_29;
	extern uint16 s29_sml_table[];
	extern Compact s29_sml_floor;
	extern uint16 rs_23_sml_29[];
	extern uint16 rs_29_sml_28[];
	extern uint16 sml_joey_list_29[];
	extern void *data_3[];
	extern uint16 sml_loaderb_l_to_u[];
	extern uint16 joey_list_s2[];
	extern uint16 sml_loader_u_to_l[];
	extern uint16 loader_right[];
	extern uint16 loaderb_st_left[];
	extern uint16 loader_r_to_d[];
	extern uint16 loader_st_down[];
	extern uint16 sml_loaderb_l_to_r[];
	extern uint16 loaderb_st_down[];
	extern uint16 sml_loaderb_r_to_u[];
	extern uint16 sml_loaderb_st_up[];
	extern uint16 loaderb_d_to_l[];
	extern uint16 sml_loaderb_st_right[];
	extern uint16 sml_loader_r_to_l[];
	extern uint16 sml_loader_r_to_u[];
	extern uint16 sml_loader_st_down[];
	extern uint16 loader_l_to_r[];
	extern uint16 sml_loaderb_d_to_l[];
	extern uint16 loaderb_r_to_u[];
	extern uint16 loader_left[];
	extern uint16 loaderb_right[];
	extern uint16 loaderb_r_to_d[];
	extern uint16 loader_d_to_u[];
	extern uint16 sml_loaderb_st_down[];
	extern uint16 sml_loaderb_up[];
	extern uint16 sml_loader_d_to_r[];
	extern uint16 loader_st_up[];
	extern Compact right_exit_rm2;
	extern uint16 sml_loaderb_right[];
	extern uint16 loader_u_to_l[];
	extern uint16 sml_loader_st_right[];
	extern Compact panel;
	extern Compact alarm_flash;
	extern uint16 loader_st_right[];
	extern uint16 sml_loader_l_to_u[];
	extern uint16 loaderb_u_to_r[];
	extern uint16 sml_loader_u_to_r[];
	extern uint16 loaderb_d_to_r[];
	extern uint16 loaderb_u_to_l[];
	extern uint16 sml_loaderb_d_to_u[];
	extern uint16 loaderb_left[];
	extern uint16 sml_loaderb_r_to_d[];
	extern uint16 loader_l_to_u[];
	extern uint16 sml_loader_up[];
	extern uint16 rs_test_jobs[];
	extern uint16 loaderb_l_to_d[];
	extern uint16 sc2_mouse[];
	extern uint16 loaderb_up[];
	extern uint16 loader_u_to_d[];
	extern uint16 sml_loader_u_to_d[];
	extern Compact hole;
	extern uint16 loaderb_st_up[];
	extern uint16 sml_loader_down[];
	extern uint16 sml_loaderb_u_to_l[];
	extern uint16 loader_l_to_d[];
	extern uint16 sml_loaderb_u_to_d[];
	extern uint16 loader_u_to_r[];
	extern uint16 loaderb_l_to_r[];
	extern uint16 sml_loader_d_to_l[];
	extern uint16 loaderb_r_to_l[];
	extern uint16 top_lift_table[];
	extern Compact robot_shell;
	extern Compact junk1;
	extern uint16 loader_down[];
	extern uint16 loader_d_to_r[];
	extern uint16 top_lift_up[];
	extern uint16 sml_loader_st_up[];
	extern uint16 transporter_table[];
	extern uint16 sml_loader_r_to_d[];
	extern uint16 loaderb_st_right[];
	extern uint16 chip_list_s2[];
	extern uint16 sml_loaderb_r_to_l[];
	extern Compact dead_loader;
	extern uint16 top_lift_2_up[];
	extern uint16 loaderb_l_to_u[];
	extern uint16 loaderb_down[];
	extern uint16 loader_r_to_u[];
	extern uint16 top_lift_2_down[];
	extern Compact left_exit_rm2;
	extern uint16 loader_up[];
	extern uint16 loader_st_left[];
	extern uint16 loader_d_to_l[];
	extern uint16 loader_r_to_l[];
	extern uint16 loaderb_u_to_d[];
	extern uint16 loaderb_d_to_u[];
	extern uint16 sml_loader_left[];
	extern uint16 sml_loader_right[];
	extern uint16 sml_loader_st_left[];
	extern uint16 sml_loader_d_to_u[];
	extern uint16 sml_loader_l_to_d[];
	extern uint16 sml_loader_l_to_r[];
	extern uint16 sml_loaderb_down[];
	extern uint16 sml_loaderb_left[];
	extern uint16 sml_loaderb_st_left[];
	extern uint16 sml_loaderb_u_to_r[];
	extern uint16 sml_loaderb_d_to_r[];
	extern uint16 sml_loaderb_l_to_d[];
	extern ExtCompact loader_ext;
	extern Compact loader;
	extern Compact junk2;
	extern uint16 fast_list_sc2[];
	extern Compact light_one;
	extern uint16 sc2_logic[];
	extern Compact top_lift_2;
	extern Compact top_lift;
	extern uint16 top_lift_down[];
	extern Compact top_barrel;
	extern uint16 sc32_vinc_talk[];
	extern uint16 sc30_palette[];
	extern uint16 sc36_col_talk2[];
	extern uint16 sc42_judge_point[];
	extern uint16 sc30_floor_table[];
	extern Compact sc30_floor;
	extern uint16 reset_33_30[];
	extern uint16 sc30_hen_step_b[];
	extern uint16 sc42_pros_talk[];
	extern uint16 sc36_col_talk1[];
	extern uint16 sc30_fast_list[];
	extern uint16 sc30_chip_list[];
	extern uint16 sc30_logic_list[];
	extern uint16 sc30_mouse_list[];
	extern Compact sc30_exit_31;
	extern Compact sc30_exit_33;
	extern uint16 reset_31_30[];
	extern Compact sc30_court_door;
	extern Compact sc30_notice;
	extern Compact sc30_statue_1;
	extern Compact sc30_statue_2;
	extern Compact sc30_exit_36;
	extern ExtCompact sc30_henri_ext;
	extern Compact sc30_henri;
	extern uint16 sc30_henri_talk[];
	extern uint16 sc30_henri_tie[];
	extern uint16 sc30_hen_step_f[];
	extern uint16 sc30_hen_blink[];
	extern uint16 sc30_push_door[];
	extern uint16 reset_36_30[];
	extern uint16 sc30_joey_list[];
	extern uint16 dani_conv[];
	extern uint16 sc38_dani_sattlk[];
	extern uint16 sc31_guard_talk[];
	extern uint16 sc38_phone_talk[];
	extern uint16 sc32_garden_talk[];
	extern uint16 sc31_guard_talk2[];
	extern uint16 barman_talk[];
	extern uint16 sc36_gal_talk[];
	extern uint16 sc36_juke_talk[];
	extern uint16 sc36_babs_talk[];
	extern uint16 reset_42_30[];
	extern uint16 reset_court_open[];
	extern uint16 sc30_court_close[];
	extern uint16 sc42_judge_talk[];
	extern uint16 sc42_jobs_talk[];
	extern uint16 sc42_blunt_talk[];
	extern uint16 sc42_fos_talk_l[];
	extern uint16 sc42_fos_talk_r[];
	extern uint16 sc42_dani_talk[];
	extern uint16 sc42_clerk_talk[];
	extern uint16 sc42_jobs_point[];
	extern uint16 sc42_jdg_to_jobs[];
	extern void *data_4[];
	extern uint16 reset_start_31[];
	extern uint16 sc31_pull_rope[];
	extern uint16 sc31_guard_move[];
	extern Compact sc31_exit_39;
	extern uint16 sc31_plank_flick[];
	extern uint16 sc31_fast_list[];
	extern uint16 sc31_dog_swim[];
	extern uint16 sc31_bisc_drop[];
	extern uint16 reset_39_31[];
	extern uint16 sc31_climb_plank[];
	extern uint16 sc31_bricks_up[];
	extern Compact sc31_plank;
	extern uint16 sc31_lift_close[];
	extern uint16 sc31_get_bricks[];
	extern uint16 sc31_rope_pulled[];
	extern Compact sc31_rope;
	extern uint16 sc31_palette[];
	extern Compact sc31_exit_30;
	extern uint16 sc31_put_bisc[];
	extern uint16 sc31_bricks_fall[];
	extern uint16 sc31_plank_raise[];
	extern uint16 sc31_bisc_placed[];
	extern uint16 sc31_joey_fall[];
	extern uint16 sc31_plank_drop[];
	extern uint16 sc31_lift_open[];
	extern uint16 sc31_get_board[];
	extern uint16 sc31_rope_lower[];
	extern uint16 sc31_drop_rope[];
	extern uint16 sc31_guard_reach[];
	extern uint16 reset_32_31[];
	extern uint16 sc31_guard_blink[];
	extern uint16 sc31_use_card[];
	extern uint16 rs_guard_avail[];
	extern uint16 sc31_bricks_down[];
	extern uint16 sc31_rope_drop[];
	extern uint16 sc31_get_plank[];
	extern uint16 sc31_floor_table[];
	extern Compact sc31_floor;
	extern Compact sc31_end_of_rope;
	extern uint16 sc31_dog_fly[];
	extern Compact sc31_lift;
	extern uint16 sc31_chip_list[];
	extern uint16 sc31_guard_chat[];
	extern Compact sc31_biscuits;
	extern uint16 reset_30_31[];
	extern Compact sc31_bricks;
	extern uint16 sc31_lower_rope[];
	extern uint16 sc31_bisc_raise[];
	extern Compact sc31_at_watcher;
	extern uint16 sc31_dog_rise[];
	extern uint16 rs_guard_chat[];
	extern uint16 sc31_mouse_list[];
	extern Compact sc31_joey;
	extern Compact sc31_lift_slot;
	extern uint16 sc31_logic_list[];
	extern ExtCompact sc31_guard_ext;
	extern Compact sc31_guard;
	extern Compact sc31_exit_32;
	extern uint16 sc31_joey_list[];
	extern uint16 sc32_gardening1[];
	extern uint16 reset_spunky_32[];
	extern uint16 sc32_vinc_anim[];
	extern uint16 reset_38_32[];
	extern Compact sc32_plant_2;
	extern uint16 sc32_use_card[];
	extern ExtCompact sc32_vincent_ext;
	extern Compact sc32_vincent;
	extern uint16 sc32_gard_turn_d[];
	extern uint16 sc32_lift_open[];
	extern uint16 sc32_lift_close[];
	extern uint16 sc32_mouse_list[];
	extern Compact sc32_exit_31;
	extern uint16 sc32_use_com[];
	extern uint16 sc32_gardener_dn[];
	extern ExtCompact sc32_buzzer_ext;
	extern Compact sc32_buzzer;
	extern uint16 sc32_floor_table[];
	extern Compact sc32_floor;
	extern uint16 sc32_chip_list[];
	extern uint16 sc32_palette[];
	extern uint16 reset_33_32[];
	extern ExtCompact sc32_gardener_ext;
	extern Compact sc32_gardener;
	extern uint16 sc32_fast_list[];
	extern uint16 sc32_logic_list[];
	extern uint16 reset_dani_32[];
	extern Compact sc32_plant_3;
	extern Compact sc32_terminal;
	extern uint16 sc32_gardener_up[];
	extern Compact sc32_plant_1;
	extern uint16 sc32_gard_turn_u[];
	extern uint16 sc32_joey_list[];
	extern uint16 sc32_gardening2[];
	extern uint16 reset_31_32[];
	extern Compact sc32_lift;
	extern Compact sc32_exit_33;
	extern Compact sc33_lock;
	extern uint16 reset_32_33[];
	extern uint16 sc33_palette[];
	extern uint16 sc33_door_open[];
	extern uint16 reset_34_33[];
	extern Compact sc33_shed_door;
	extern uint16 sc33_push_door2[];
	extern Compact sc33_exit_32;
	extern uint16 sc33_logic_list[];
	extern uint16 sc33_floor_table[];
	extern Compact sc33_floor;
	extern Compact sc33_exit_30;
	extern uint16 sc33_joey_list[];
	extern uint16 sc33_push_door1[];
	extern uint16 sc33_chip_list[];
	extern uint16 sc33_fast_list[];
	extern uint16 sc33_mouse_list[];
	extern uint16 sc33_use_card[];
	extern uint16 reset_30_33[];
	extern uint16 sc34_fast_list[];
	extern uint16 sc34_mouse_list[];
	extern Compact sc34_secateurs;
	extern uint16 sc34_logic_list[];
	extern uint16 sc34_get_secs[];
	extern uint16 sc34_chip_list[];
	extern uint16 reset_33_34[];
	extern uint16 sc34_stairs2[];
	extern uint16 sc34_floor_table[];
	extern Compact sc34_floor;
	extern Compact sc34_bricks;
	extern uint16 sc34_stairs1[];
	extern Compact sc34_tkt_machine;
	extern Compact sc34_map;
	extern uint16 sc34_palette[];
	extern Compact sc34_door;
	extern uint16 sc36_get_glass[];
	extern uint16 sc36_mouse_list[];
	extern uint16 babs_d_to_u[];
	extern uint16 bar_drink[];
	extern uint16 babs_l_to_u[];
	extern uint16 bar_put_cloth[];
	extern uint16 babs_u_to_l[];
	extern uint16 sc36_col_down2[];
	extern uint16 babs_left[];
	extern uint16 babs_u_to_t[];
	extern uint16 sc36_col_up1[];
	extern uint16 sc36_fos_down2[];
	extern uint16 sc36_col_deal[];
	extern uint16 sc36_palette[];
	extern uint16 babs_up[];
	extern uint16 babs_down[];
	extern uint16 babs_right[];
	extern uint16 babs_st_up[];
	extern uint16 babs_st_down[];
	extern uint16 babs_st_left[];
	extern uint16 babs_st_right[];
	extern uint16 babs_st_talk[];
	extern uint16 babs_u_to_d[];
	extern uint16 babs_u_to_r[];
	extern uint16 babs_d_to_l[];
	extern uint16 babs_d_to_r[];
	extern uint16 babs_d_to_t[];
	extern uint16 babs_l_to_d[];
	extern uint16 babs_l_to_r[];
	extern uint16 babs_l_to_t[];
	extern uint16 babs_r_to_u[];
	extern uint16 babs_r_to_d[];
	extern uint16 babs_r_to_l[];
	extern uint16 babs_r_to_t[];
	extern uint16 babs_t_to_u[];
	extern uint16 babs_t_to_d[];
	extern uint16 babs_t_to_l[];
	extern uint16 babs_t_to_r[];
	extern ExtCompact sc36_babs_ext;
	extern Compact sc36_babs;
	extern uint16 sc36_col_down4[];
	extern uint16 sc36_logic_list[];
	extern uint16 reset_30_36[];
	extern uint16 sc36_doorshut[];
	extern uint16 sc36_fos_up2[];
	extern uint16 bar_get_cloth[];
	extern Compact sc36_juke_light;
	extern uint16 sc36_low_floor_table[];
	extern Compact sc36_low_floor;
	extern uint16 sc36_floor_table[];
	extern uint16 sc36_jukebox_on[];
	extern Compact sc36_door;
	extern uint16 sc36_col_down3[];
	extern ExtCompact sc36_jukebox_ext;
	extern Compact sc36_jukebox;
	extern uint16 sc36_juke_kicked[];
	extern uint16 sc36_fos_up1[];
	extern uint16 sc36_use_jukebox[];
	extern uint16 sc36_col_think[];
	extern uint16 bar_wipe2[];
	extern Compact sc36_gal_legs;
	extern uint16 sc36_col_up2[];
	extern Compact sc36_cards;
	extern uint16 sc36_reach_glass[];
	extern uint16 sc36_juke_break[];
	extern uint16 sc36_fos_down1[];
	extern uint16 reset_37_36[];
	extern Compact sc36_glass;
	extern Compact sc36_col_feet;
	extern uint16 sc36_col_blink2[];
	extern uint16 sc36_jukebox_off[];
	extern Compact sc36_band;
	extern Compact sc36_sensor;
	extern uint16 sc36_col_drink[];
	extern uint16 reset_juke_light[];
	extern uint16 sc36_gal_look1[];
	extern uint16 reset_colston[];
	extern uint16 sc36_chip_list[];
	extern uint16 sc36_juke_stuck[];
	extern uint16 sc36_col_blink1[];
	extern uint16 bar_wipe[];
	extern uint16 sc36_gal_look2[];
	extern uint16 sc36_juke_sing[];
	extern ExtCompact sc36_colston_ext;
	extern Compact sc36_colston;
	extern uint16 sc36_col_down1[];
	extern ExtCompact sc36_gallagher_ext;
	extern Compact sc36_gallagher;
	extern uint16 sc36_col_up3[];
	extern uint16 sc36_band_anim[];
	extern uint16 sc36_col_kick[];
	extern Compact sc36_floor;
	extern uint16 sc36_dooropen[];
	extern uint16 bar_get_drink[];
	extern uint16 sc36_gal_deal[];
	extern uint16 bar_blink[];
	extern uint16 sc36_press_plate[];
	extern uint16 reset_jukebox[];
	extern uint16 sc36_fast_list[];
	extern uint16 sc36_col_up4[];
	extern ExtCompact sc36_barman_ext;
	extern Compact sc36_barman;
	extern Compact sc36_exit_30;
	extern uint16 sc37_mouse_list[];
	extern uint16 sc37_chip_list[];
	extern uint16 sc37_grillopen[];
	extern uint16 sc37_floor_table[];
	extern uint16 sc37_stepdown[];
	extern Compact sc37_big_box;
	extern uint16 sc37_footdrop[];
	extern uint16 sc37_putlid[];
	extern Compact sc37_sensor;
	extern uint16 sc37_lidused[];
	extern uint16 sc37_getlid[];
	extern uint16 sc37_flimsy_box_table[];
	extern uint16 sc37_thumbsup[];
	extern Compact sc37_wine_rack;
	extern uint16 sc37_fast_list[];
	extern uint16 sc37_holding_lid_table[];
	extern Compact sc37_holding_lid;
	extern uint16 sc37_lidup[];
	extern uint16 sc37_usesec[];
	extern uint16 sc37_stepup[];
	extern Compact sc37_lid;
	extern uint16 sc37_palette[];
	extern Compact sc37_floor;
	extern uint16 sc37_climbout[];
	extern Compact sc37_grill;
	extern uint16 sc37_uselid[];
	extern uint16 reset_36_37[];
	extern uint16 sc37_doorshut[];
	extern Compact sc37_door;
	extern uint16 sc37_usebar[];
	extern Compact sc37_flimsy_box;
	extern uint16 sc37_dooropen[];
	extern uint16 sc37_liddown[];
	extern uint16 sc37_logic_list[];
	extern uint16 sc37_crbarbox[];
	extern uint16 spu_left[];
	extern uint16 sc38_mouse_list[];
	extern uint16 sniff_left[];
	extern uint16 sc38_palette[];
	extern uint16 spu_u_to_l[];
	extern uint16 dan_d_to_r[];
	extern uint16 sex_t_to_r[];
	extern uint16 spu_u_to_d[];
	extern Compact sc38_dog_tray;
	extern uint16 sex_up[];
	extern uint16 dan_u_to_r[];
	extern uint16 sex_l_to_r[];
	extern uint16 spu_t_to_l[];
	extern uint16 dan_u_to_t[];
	extern uint16 sc38_screen_2[];
	extern uint16 dan_l_to_u[];
	extern uint16 sc38_screen_3[];
	extern uint16 dan_r_to_t[];
	extern uint16 sex_u_to_t[];
	extern uint16 sc38_dani_get_up[];
	extern uint16 sex_r_to_d[];
	extern uint16 dan_r_to_l[];
	extern uint16 sc38_logic_list[];
	extern uint16 piss_left[];
	extern uint16 sex_d_to_u[];
	extern uint16 dan_l_to_d[];
	extern uint16 sex_u_to_r[];
	extern Compact sc38_hand_set;
	extern uint16 spu_u_to_r[];
	extern uint16 dan_st_left[];
	extern uint16 piss_right[];
	extern uint16 sex_r_to_u[];
	extern uint16 sex_left[];
	extern uint16 sex_l_to_u[];
	extern uint16 spu_l_to_t[];
	extern uint16 sex_d_to_r[];
	extern uint16 sc38_floor_table[];
	extern uint16 sc38_get_food[];
	extern uint16 sex_right[];
	extern uint16 dan_st_talk[];
	extern uint16 reset_32_38[];
	extern Compact sc38_floor;
	extern uint16 sex_d_to_l[];
	extern uint16 spu_r_to_u[];
	extern uint16 reset_dani_sit[];
	extern uint16 spu_u_to_t[];
	extern uint16 spu_l_to_u[];
	extern uint16 spu_d_to_u[];
	extern uint16 sex_u_to_d[];
	extern uint16 sc38_dani_anim_2[];
	extern uint16 dan_t_to_r[];
	extern uint16 dan_st_up[];
	extern uint16 bark[];
	extern uint16 dan_left[];
	extern uint16 spu_r_to_d[];
	extern uint16 spu_l_to_r[];
	extern uint16 sex_r_to_t[];
	extern uint16 sex_st_down[];
	extern uint16 sc38_scr_bark[];
	extern uint16 dan_st_right[];
	extern uint16 spu_st_left[];
	extern Compact sc38_sofa;
	extern uint16 dan_d_to_l[];
	extern uint16 spu_r_to_l[];
	extern uint16 sc38_chip_list[];
	extern uint16 sc38_fast_list[];
	extern Compact sc38_video;
	extern Compact dog_bark_thing;
	extern uint16 sc38_screen_4[];
	extern uint16 dan_l_to_r[];
	extern uint16 sex_st_talk[];
	extern uint16 sex_st_right[];
	extern uint16 sc38_use_video[];
	extern Compact sc38_monitor;
	extern uint16 spu_st_talk[];
	extern uint16 sex_t_to_u[];
	extern uint16 sex_r_to_l[];
	extern uint16 sc38_dani_anim_1[];
	extern uint16 sc38_get_phone[];
	extern Compact sc38_lift;
	extern Compact sc38_biscuits;
	extern uint16 dan_r_to_u[];
	extern uint16 spu_up[];
	extern uint16 sc38_dani_anim_3[];
	extern uint16 sc38_lift_up[];
	extern uint16 sniff_right[];
	extern uint16 dan_st_down[];
	extern uint16 sc38_ringer_anim[];
	extern uint16 spu_st_right[];
	extern uint16 spu_l_to_d[];
	extern uint16 sc38_reach_food[];
	extern Compact sc38_ringer;
	extern uint16 spu_t_to_u[];
	extern Compact sc38_statue;
	extern uint16 dan_d_to_u[];
	extern uint16 spu_d_to_l[];
	extern uint16 dan_u_to_l[];
	extern uint16 reset_spunky_38[];
	extern uint16 spu_right[];
	extern uint16 sex_l_to_d[];
	extern uint16 reset_dani_stand[];
	extern uint16 dan_r_to_d[];
	extern uint16 spu_st_down[];
	extern uint16 dan_up[];
	extern uint16 dan_u_to_d[];
	extern uint16 dan_down[];
	extern uint16 dan_right[];
	extern uint16 dan_t_to_u[];
	extern uint16 sex_down[];
	extern uint16 sex_st_up[];
	extern uint16 sex_st_left[];
	extern uint16 sex_u_to_l[];
	extern ExtCompact danielle_ext;
	extern Compact danielle;
	extern uint16 spu_d_to_r[];
	extern uint16 spu_down[];
	extern uint16 spu_st_up[];
	extern ExtCompact spunky_ext;
	extern Compact spunky;
	extern uint16 sc38_video_anim[];
	extern uint16 sc38_screen_1[];
	extern uint16 sc38_lift_down[];
	extern Compact sc39_exit_31;
	extern uint16 sc39_floor_table[];
	extern Compact sc39_floor;
	extern Compact sc39_walters;
	extern uint16 reset_41_39[];
	extern Compact sc39_exit_40;
	extern uint16 sc39_ascend[];
	extern uint16 sc39_logic_list[];
	extern uint16 sc39_chip_list[];
	extern uint16 reset_31_39[];
	extern uint16 sc39_mouse_list[];
	extern Compact sc39_exit_41;
	extern uint16 sc39_descend[];
	extern uint16 sc39_fast_list[];
	extern uint16 reset_40_39[];
	extern uint16 sc39_palette[];
	extern uint16 rs_low_lift2[];
	extern Compact low_lift_2;
	extern uint16 rs_low_lift3[];
	extern uint16 liftc3_down[];
	extern uint16 joey_list_s3[];
	extern uint16 liftc1_down[];
	extern uint16 shades_l_to_r[];
	extern uint16 shades_st_talk[];
	extern uint16 shades_st_right[];
	extern Compact eye_bolt;
	extern Compact lights1;
	extern uint16 rs_low_barrel[];
	extern Compact convey;
	extern uint16 search_seq[];
	extern ExtCompact eye_ball_ext;
	extern Compact eye_ball;
	extern uint16 liftc3_up[];
	extern uint16 shades_l_to_u[];
	extern uint16 shades_u_to_d[];
	extern uint16 s3_mouse[];
	extern uint16 shades_d_to_u[];
	extern ExtCompact smoulder_ext;
	extern Compact smoulder;
	extern Compact low_lift_3;
	extern uint16 shades_u_to_r[];
	extern Compact furnace;
	extern uint16 liftc1_up[];
	extern uint16 shades_r_to_d[];
	extern uint16 s3_logic[];
	extern uint16 shades_st_up[];
	extern uint16 smoulder_seq[];
	extern uint16 shades_up[];
	extern uint16 shades_down[];
	extern uint16 shades_left[];
	extern uint16 shades_right[];
	extern uint16 shades_st_down[];
	extern uint16 shades_st_left[];
	extern uint16 shades_u_to_l[];
	extern uint16 shades_d_to_l[];
	extern uint16 shades_d_to_r[];
	extern uint16 shades_l_to_d[];
	extern uint16 shades_r_to_u[];
	extern uint16 shades_r_to_l[];
	extern ExtCompact shades_ext;
	extern Compact shades;
	extern uint16 liftc2_down[];
	extern uint16 rs_start_joey_fly[];
	extern Compact steve_watch;
	extern uint16 liftc2_up[];
	extern Compact furnace_door;
	extern Compact slot;
	extern uint16 chip_list_sc3[];
	extern Compact low_lift;
	extern Compact joey_fly;
	extern uint16 rs_low_lift[];
	extern uint16 r3_floor_table[];
	extern Compact s3_floor;
	extern uint16 rs_joey_to_furnace[];
	extern Compact low_barrel;
	extern Compact sc40_body_2;
	extern uint16 sc40_locker_shut[];
	extern uint16 reset_39_40[];
	extern Compact sc40_body_3;
	extern Compact sc40_cabinet;
	extern uint16 sc40_palette[];
	extern uint16 sc40_descend[];
	extern Compact sc40_locker_1;
	extern uint16 sc40_floor_table[];
	extern Compact sc40_floor;
	extern uint16 sc40_chip_list[];
	extern Compact sc40_body_5;
	extern Compact sc40_locker_4;
	extern uint16 sc40_close_door[];
	extern uint16 sc40_locker_open[];
	extern Compact sc40_locker_2;
	extern Compact sc40_locker_3;
	extern uint16 sc40_fast_list[];
	extern Compact sc40_exit_39;
	extern Compact sc40_body_1;
	extern uint16 sc40_open_door[];
	extern Compact sc40_trolley;
	extern Compact sc40_locker_5;
	extern uint16 sc40_mouse_list[];
	extern uint16 sc40_logic_list[];
	extern Compact sc40_body_4;
	extern uint16 sc40_ascend[];
	extern uint16 sc41_mouse_list[];
	extern uint16 sc41_heat_2_anim[];
	extern Compact sc41_heat_1;
	extern uint16 reset_39_41[];
	extern uint16 sc41_heat_1_anim[];
	extern uint16 sc41_fast_list[];
	extern Compact sc41_heat_2;
	extern uint16 sc41_chip_list[];
	extern Compact sc41_heat_3;
	extern Compact sc41_exit_39;
	extern uint16 sc41_floor_table[];
	extern Compact sc41_floor;
	extern uint16 sc41_heat_3_anim[];
	extern uint16 sc41_logic_list[];
	extern uint16 sc41_palette[];
	extern uint16 sc42_jdg_hammer[];
	extern uint16 reset_30_42[];
	extern uint16 sc42_mouse_list[];
	extern Compact sc42_sign;
	extern uint16 sc42_fos_enter[];
	extern uint16 sc42_clerk_type[];
	extern ExtCompact sc42_judge_ext;
	extern Compact sc42_judge;
	extern uint16 sc42_logic_list[];
	extern uint16 sc42_jdg_turn[];
	extern uint16 sc42_fast_list[];
	extern ExtCompact sc42_prosecution_ext;
	extern Compact sc42_prosecution;
	extern uint16 sc42_fos_turn_lr[];
	extern uint16 sc42_chip_list[];
	extern ExtCompact sc42_clerk_ext;
	extern Compact sc42_clerk;
	extern uint16 reset_guard_42[];
	extern uint16 sc42_jdg_return[];
	extern uint16 sc42_fos_turn_rl[];
	extern ExtCompact sc42_jobsworth_ext;
	extern Compact sc42_jobsworth;
	extern uint16 reset_dani_42[];
	extern uint16 sc42_sign_anim[];
	extern uint16 sc42_blunt_enter[];
	extern uint16 sc42_blunt_leave[];
	extern uint16 sc42_jobs_enter[];
	extern uint16 sc42_palette[];
	extern uint16 sc42_fos_leave[];
	extern uint16 sc44_chip_list[];
	extern Compact sc44_rubble;
	extern uint16 reset_45_44[];
	extern Compact sc44_grill;
	extern uint16 sc44_floor_table[];
	extern uint16 sc44_drop_down[];
	extern Compact sc44_exit_45;
	extern uint16 sc44_fast_list[];
	extern uint16 sc44_palette[];
	extern uint16 sc44_logic_list[];
	extern Compact sc44_floor;
	extern uint16 sc44_mouse_list[];
	extern uint16 reset_37_44[];
	extern uint16 reset_44_45[];
	extern uint16 sc45_logic_list[];
	extern uint16 sc45_floor_table[];
	extern Compact sc45_floor;
	extern Compact sc45_exit_47;
	extern uint16 reset_46_45[];
	extern Compact sc45_exit_46;
	extern uint16 sc45_palette[];
	extern uint16 sc45_fast_list[];
	extern uint16 reset_47_45[];
	extern Compact sc45_exit_44;
	extern uint16 sc45_chip_list[];
	extern uint16 sc45_mouse_list[];
	extern uint16 sc46_floor_table[];
	extern uint16 sc46_palette[];
	extern uint16 sc46_chip_list[];
	extern Compact sc46_exit_45;
	extern uint16 sc46_logic_list[];
	extern uint16 sc46_mouse_list[];
	extern uint16 sc46_fast_list[];
	extern Compact sc46_rubble;
	extern uint16 reset_45_46[];
	extern Compact sc46_floor;
	extern uint16 reset_48_47[];
	extern uint16 sc47_palette[];
	extern uint16 reset_45_47[];
	extern uint16 sc47_mouse_list[];
	extern Compact sc47_exit_48;
	extern uint16 sc47_fast_list[];
	extern uint16 sc47_logic_list[];
	extern Compact sc47_exit_45;
	extern uint16 sc47_chip_list[];
	extern uint16 sc47_floor_table[];
	extern Compact sc47_floor;
	extern Compact sc48_eyes;
	extern uint16 sc48_mouse_list[];
	extern uint16 sc48_chip_list[];
	extern uint16 sc48_floor_table[];
	extern Compact sc48_socket;
	extern uint16 sc48_put_bulb[];
	extern uint16 sc48_palette[];
	extern uint16 sc48_fast_list[];
	extern Compact sc48_hole;
	extern uint16 reset_47_48[];
	extern uint16 sc48_logic_list[];
	extern uint16 reset_65_48[];
	extern uint16 sc48_eyes_anim[];
	extern Compact sc48_exit_47;
	extern Compact sc48_exit_65;
	extern Compact sc48_floor;
	extern uint16 sc48_light_pal[];
	extern uint16 jobs_u_to_l[];
	extern uint16 m_jobs_left[];
	extern uint16 jobs_l_to_u[];
	extern uint16 m_jobs_u_to_d[];
	extern Compact sarnie_s4;
	extern uint16 m_jobs_l_to_d[];
	extern uint16 s4_talk_table[];
	extern uint16 chip_list_sc4[];
	extern Compact r_talk_s4;
	extern Compact monitors_s4;
	extern uint16 m_jobs_down[];
	extern Compact jobsworth;
	extern uint16 jobs_st_down[];
	extern Compact notice4;
	extern uint16 m_jobs_st_down[];
	extern uint16 m_jobs_st_talk[];
	extern uint16 m_jobs_up[];
	extern uint16 m_jobs_right[];
	extern uint16 m_jobs_st_up[];
	extern uint16 m_jobs_st_left[];
	extern uint16 m_jobs_st_right[];
	extern uint16 m_jobs_u_to_l[];
	extern uint16 m_jobs_u_to_r[];
	extern uint16 m_jobs_d_to_u[];
	extern uint16 m_jobs_d_to_l[];
	extern uint16 m_jobs_d_to_r[];
	extern uint16 m_jobs_l_to_u[];
	extern uint16 m_jobs_l_to_r[];
	extern uint16 m_jobs_r_to_u[];
	extern uint16 m_jobs_r_to_d[];
	extern uint16 m_jobs_r_to_l[];
	extern uint16 jobs_up[];
	extern uint16 jobs_down[];
	extern uint16 jobs_left[];
	extern uint16 jobs_right[];
	extern uint16 jobs_st_up[];
	extern uint16 jobs_st_left[];
	extern uint16 jobs_st_right[];
	extern uint16 jobs_st_talk[];
	extern uint16 jobs_u_to_d[];
	extern uint16 jobs_u_to_r[];
	extern uint16 jobs_d_to_u[];
	extern uint16 jobs_d_to_l[];
	extern uint16 jobs_d_to_r[];
	extern uint16 jobs_l_to_d[];
	extern uint16 jobs_l_to_r[];
	extern uint16 jobs_r_to_u[];
	extern uint16 jobs_r_to_d[];
	extern uint16 jobs_r_to_l[];
	extern Compact buttons_s4;
	extern uint16 sc4_mouse_open[];
	extern Compact tv_screens_s4;
	extern uint16 sc4_logic[];
	extern Compact postcard;
	extern Compact knob_s4;
	extern Compact lazer_s4;
	extern uint16 fast_list_sc4[];
	extern Compact sc4_left_exit;
	extern Compact spanner_s4;
	extern uint16 joey_list_s4[];
	extern Compact chuck_s4;
	extern uint16 r4_floor_table[];
	extern uint16 sc4_mouse[];
	extern Compact sc4_floor;
	extern Compact cupboard_s4;
	extern Compact copter;
	extern uint16 rs_joey_29_7[];
	extern uint16 rs_joey_to_6[];
	extern Compact lift_notice;
	extern uint16 mid_up_get[];
	extern uint16 jostair1_seq[];
	extern uint16 grd_watch_seq[];
	extern uint16 s7_floor_table[];
	extern uint16 lamb_card_seq[];
	extern uint16 joey_list_s6[];
	extern uint16 s6_chip_list[];
	extern uint16 s6_pal[];
	extern uint16 rs_foster_8_7[];
	extern Compact joey_fly_6;
	extern uint16 s7_chip_list[];
	extern uint16 s8_logic[];
	extern uint16 s7_lift_open[];
	extern uint16 skorl_anim[];
	extern uint16 card_slot_anim[];
	extern uint16 dwn_stair1_seq[];
	extern Compact s7_floor;
	extern uint16 rs_foster_9_6[];
	extern uint16 s6_mouse[];
	extern uint16 rs_foster_to_5[];
	extern uint16 s8_chip_list[];
	extern uint16 weld_7_seq[];
	extern uint16 grd_blink_seq[];
	extern Compact down_exit_s8;
	extern uint16 jostair3_seq[];
	extern uint16 s5_chip_list[];
	extern Compact left_exit_s7;
	extern uint16 rs_foster_18_5[];
	extern uint16 upstairs1_seq[];
	extern uint16 rs_foster_6_7[];
	extern Compact s7_card_slot;
	extern uint16 rs_joey_fly[];
	extern uint16 s7_mouse[];
	extern uint16 s7_logic[];
	extern ExtCompact wreck_guard_ext;
	extern Compact wreck_guard;
	extern uint16 rs_foster_5_6[];
	extern uint16 rs_foster_7_8[];
	extern uint16 upstairs2_seq[];
	extern Compact security_exit;
	extern uint16 s6_logic[];
	extern Compact right_exit_s5;
	extern Compact cable_7;
	extern uint16 rs_foster_29_7[];
	extern uint16 s8_mouse[];
	extern uint16 s8_pal[];
	extern Compact security_exit_s6;
	extern uint16 jostair2_seq[];
	extern uint16 s6_floor_table[];
	extern Compact lift_s7;
	extern uint16 s5_mouse[];
	extern uint16 s5_logic[];
	extern uint16 dwn_stair2_seq[];
	extern uint16 s8_fast_list[];
	extern Compact right_exit_s7;
	extern uint16 s5_floor_table[];
	extern Compact s5_floor;
	extern uint16 s8_floor_table[];
	extern uint16 lamblook_seq[];
	extern uint16 s5_pal[];
	extern Compact left_exit_s5;
	extern Compact right_exit_s6;
	extern Compact s6_floor;
	extern uint16 rs_foster_to_6[];
	extern uint16 use_linc_anim[];
	extern Compact stairs6;
	extern uint16 rs_foster_6_3[];
	extern Compact left_exit_s6;
	extern uint16 s7_pal[];
	extern uint16 rs_foster_7_6[];
	extern ExtCompact skorl_guard_ext;
	extern Compact skorl_guard;
	extern Compact s8_floor;
	extern Compact factory_entry;
	extern uint16 s7_lift_close[];
	extern uint16 linc_table[];
	extern Compact linc_s7;
	extern Compact lift7_light;
	extern uint16 cable_cut_seq[];
	extern uint16 rs_foster_0_5[];
	extern uint16 lamb_talk_right[];
	extern void *data_2[];
	extern Compact sc65_exit_48;
	extern uint16 sc65_floor_table[];
	extern Compact sc65_floor;
	extern uint16 reset_48_65[];
	extern uint16 sc65_chip_list[];
	extern Compact sc65_exit_66;
	extern uint16 sc65_mouse_list[];
	extern uint16 sc65_fast_list[];
	extern Compact sc65_poster2;
	extern Compact sc65_poster1;
	extern Compact sc65_sign;
	extern uint16 sc65_logic_list[];
	extern uint16 sc65_palette[];
	extern uint16 sc66_hi_beam_an1[];
	extern uint16 sc66_door_close[];
	extern uint16 sc75_dead_tlk[];
	extern Compact sc66_rock3;
	extern Compact sc66_lo_beam;
	extern uint16 sc66_stones_anim[];
	extern uint16 walter_conv[];
	extern uint16 sc66_logic_list[];
	extern Compact sc66_stones;
	extern Compact sc66_rock1;
	extern uint16 sc81_ken_talk1[];
	extern Compact sc66_rock2;
	extern uint16 sc66_hi_beam_an2[];
	extern uint16 stuck_talk[];
	extern uint16 sc66_chip_list[];
	extern uint16 medi_talk_up[];
	extern uint16 sc82_ken_sat_tlk[];
	extern uint16 sc81_ken_talk2[];
	extern uint16 android_babble[];
	extern uint16 sc66_rock2_anim[];
	extern uint16 sc82_jobs_talk[];
	extern uint16 ken_talk_left[];
	extern uint16 sc75_freeze_tlk[];
	extern uint16 fost_pipe_talk[];
	extern uint16 ken_talk_up[];
	extern uint16 sc66_mouse_list[];
	extern Compact sc66_hi_beam;
	extern uint16 gall_talk_up[];
	extern uint16 walter_talk_up[];
	extern uint16 medi_talk_right[];
	extern uint16 sc66_rock3_anim[];
	extern uint16 gall_talk_left[];
	extern uint16 medi_talk_down[];
	extern uint16 sc66_lo_beam_anm[];
	extern uint16 sc81_dad_tlk[];
	extern uint16 reset_66[];
	extern uint16 sc66_fos_crushed[];
	extern uint16 fost_conv_left[];
	extern uint16 sc81_fos_sat_tlk[];
	extern uint16 walter_talk_dwn[];
	extern uint16 sc66_fos_walk_in[];
	extern uint16 medi_talk_left[];
	extern uint16 ken_talk_down[];
	extern uint16 sc81_dad_tlk2[];
	extern uint16 ken_talk_right[];
	extern uint16 walter_talk_lft[];
	extern uint16 sc81_ken_sat_tlk[];
	extern uint16 sc82_jobs_talk2[];
	extern Compact sc66_hole;
	extern uint16 sc66_rock1_anim[];
	extern uint16 sc66_fast_list[];
	extern uint16 sc66_palette[];
	extern Compact sc66_door;
	extern void *data_5[];
	extern uint16 sc67_logic_list[];
	extern Compact sc67_vein;
	extern uint16 sc67_mouse_list[];
	extern uint16 sc67_rub_head[];
	extern uint16 sc67_try_stick[];
	extern uint16 sc67_plast_hit[];
	extern Compact sc67_door;
	extern Compact sc67_mend;
	extern uint16 sc67_mending[];
	extern Compact sc67_plaster;
	extern uint16 sc67_door_open[];
	extern uint16 sc67_dustoff[];
	extern Compact sc67_rock;
	extern Compact sc67_crowbar;
	extern uint16 sc67_puss_leak[];
	extern uint16 sc67_pulse3_anim[];
	extern uint16 sc67_plast_fall[];
	extern Compact sc67_pulse4;
	extern uint16 sc67_brick_fall[];
	extern uint16 sc67_bar_fall[];
	extern uint16 sc67_brick_hit[];
	extern uint16 sc67_pick_plast[];
	extern uint16 sc67_crawl[];
	extern uint16 sc67_medifix[];
	extern uint16 sc67_pulse1_anim[];
	extern uint16 sc67_pulse2_anim[];
	extern uint16 sc67_stick_in[];
	extern Compact sc67_pulse1;
	extern uint16 sc67_rpocket[];
	extern Compact sc67_brickwork;
	extern uint16 sc67_getbrick[];
	extern uint16 sc67_lpocket[];
	extern uint16 sc67_pull_out[];
	extern uint16 sc67_palette[];
	extern uint16 sc67_fast_list[];
	extern uint16 sc67_door_close[];
	extern uint16 sc67_rock_anim[];
	extern Compact sc67_pulse2;
	extern Compact sc67_brick;
	extern uint16 sc67_floor_table[];
	extern uint16 sc67_pick_brick[];
	extern uint16 reset_66_67[];
	extern Compact sc67_pulse3;
	extern Compact sc67_floor;
	extern uint16 sc67_pulse4_anim[];
	extern uint16 sc67_chip_list[];
	extern uint16 reset_68_67[];
	extern Compact sc67_clot;
	extern Compact sc68_pulse5;
	extern uint16 sc68_chip_list[];
	extern uint16 reset_69_68[];
	extern Compact sc68_pulse1;
	extern Compact sc68_door;
	extern Compact sc68_exit;
	extern uint16 sc68_logic_list[];
	extern uint16 sc68_palette[];
	extern Compact sc68_pulse3;
	extern uint16 sc68_pulse5_anim[];
	extern uint16 sc68_ascend[];
	extern uint16 sc68_pulse3_anim[];
	extern uint16 sc68_pulse2_anim[];
	extern Compact sc68_pulse4;
	extern uint16 sc68_pulse6_anim[];
	extern Compact sc68_sensor;
	extern uint16 sc68_pulse1_anim[];
	extern uint16 sc68_pulse4_anim[];
	extern Compact sc68_pulse2;
	extern uint16 sc68_descend[];
	extern uint16 reset_70_68[];
	extern uint16 sc68_sensor_anim[];
	extern uint16 sc68_door_close[];
	extern uint16 sc68_floor_table[];
	extern Compact sc68_pulse6;
	extern Compact sc68_grill;
	extern Compact sc68_stairs;
	extern uint16 sc68_fast_list[];
	extern uint16 reset_67_68[];
	extern uint16 sc68_mouse_list[];
	extern Compact sc68_floor;
	extern uint16 sc68_joey_list[];
	extern uint16 sc69_logic_list[];
	extern uint16 sc69_pulse5_anim[];
	extern uint16 sc69_chip_list[];
	extern uint16 sc69_palette[];
	extern uint16 reset_71_69[];
	extern uint16 sc69_mouse_list[];
	extern Compact sc69_pulse2;
	extern uint16 sc69_floor_table[];
	extern Compact sc69_pulse6;
	extern uint16 sc69_joey_list[];
	extern Compact sc69_exit;
	extern uint16 sc69_fast_list[];
	extern Compact sc69_door;
	extern Compact sc69_pulse3;
	extern Compact sc69_pulse5;
	extern uint16 sc69_pulse6_anim[];
	extern Compact sc69_pulse4;
	extern Compact sc69_pulse1;
	extern uint16 sc69_pulse4_anim[];
	extern Compact sc69_grill;
	extern uint16 sc69_pulse1_anim[];
	extern uint16 sc69_pulse3_anim[];
	extern uint16 reset_68_69[];
	extern uint16 sc69_pulse2_anim[];
	extern Compact sc69_floor;
	extern Compact sc70_bar;
	extern uint16 sc70_pull_bar[];
	extern uint16 sc70_step_down[];
	extern uint16 sc70_palette[];
	extern uint16 sc70_floor_table[];
	extern uint16 sc70_enter_anim[];
	extern uint16 sc70_step_up[];
	extern Compact sc70_floor;
	extern uint16 reset_68_70[];
	extern uint16 sc70_exit_anim[];
	extern uint16 sc70_fast_list[];
	extern uint16 sc70_logic_list[];
	extern ExtCompact sc70_iris_ext;
	extern Compact sc70_iris;
	extern uint16 sc70_pit_table[];
	extern Compact sc70_door;
	extern Compact sc70_pit;
	extern uint16 sc70_chip_list[];
	extern uint16 sc70_bar_anim[];
	extern Compact sc70_control;
	extern uint16 sc70_pit_anim[];
	extern Compact sc70_grill;
	extern uint16 sc70_consol_anim[];
	extern uint16 sc70_mouse_list[];
	extern uint16 medi_d_to_u[];
	extern uint16 sc71_use_board[];
	extern Compact sc71_door72;
	extern uint16 sc71_medi_charge[];
	extern uint16 medi_up[];
	extern uint16 medi_down[];
	extern uint16 medi_left[];
	extern uint16 medi_right[];
	extern uint16 medi_st_up[];
	extern uint16 medi_st_down[];
	extern uint16 medi_st_left[];
	extern uint16 medi_st_right[];
	extern uint16 medi_u_to_d[];
	extern uint16 medi_u_to_l[];
	extern uint16 medi_u_to_r[];
	extern uint16 medi_d_to_l[];
	extern uint16 medi_d_to_r[];
	extern uint16 medi_l_to_u[];
	extern uint16 medi_l_to_d[];
	extern uint16 medi_l_to_r[];
	extern uint16 medi_r_to_u[];
	extern uint16 medi_r_to_d[];
	extern uint16 medi_r_to_l[];
	extern ExtCompact medi_ext;
	extern Compact medi;
	extern uint16 sc71_mouse_list[];
	extern uint16 sc71_light1_anim[];
	extern uint16 sc71_logic_list[];
	extern uint16 reset_69_71[];
	extern uint16 sc71_chip_list[];
	extern uint16 sc710_chip_list[];
	extern uint16 reset_72_71[];
	extern uint16 sc71_medi_get_up[];
	extern Compact sc71_chlite;
	extern Compact sc71_controls;
	extern uint16 sc71_panel_anim[];
	extern Compact sc71_panel2;
	extern uint16 sc71_panel2_anim[];
	extern uint16 sc71_joey_list[];
	extern Compact sc71_light1;
	extern uint16 sc71_palette[];
	extern uint16 sc71_fast_list[];
	extern uint16 sc71_mon_anim[];
	extern uint16 sc71_floor_table[];
	extern Compact sc71_floor;
	extern Compact sc71_door69;
	extern Compact sc71_fake_floor;
	extern Compact sc71_medi_slot;
	extern Compact sc71_monitor;
	extern uint16 sc71_chlite_anim[];
	extern Compact sc71_locked_door;
	extern Compact sc71_recharger;
	extern uint16 sc71_light2_anim[];
	extern uint16 wit_st_right[];
	extern uint16 sc72_comp_flash[];
	extern Compact sc72_rot_light;
	extern uint16 sc72_fast_list[];
	extern uint16 sc72_spill_anim[];
	extern uint16 wit_d_to_u[];
	extern Compact sc72_chamber2;
	extern uint16 wit_l_to_r[];
	extern uint16 sc72_joey_tap[];
	extern uint16 sc72_comp2_flash[];
	extern Compact sc72_tank;
	extern uint16 wit_r_to_d[];
	extern uint16 sc72_floor_table[];
	extern Compact sc72_floor;
	extern uint16 sc72_drip_anim[];
	extern uint16 wit_u_to_d[];
	extern Compact sc72_cham2_light;
	extern Compact sc72_computer2;
	extern uint16 sc72_walter_die[];
	extern uint16 wit_r_to_l[];
	extern uint16 wit_up[];
	extern uint16 sc72_rotating[];
	extern uint16 sc72_walter_kill[];
	extern Compact sc72_exit;
	extern uint16 wit_l_to_d[];
	extern uint16 sc72_cham3_anim[];
	extern uint16 sc72_chip_list[];
	extern uint16 sc72_foster_die[];
	extern uint16 sc72_cham1_anim[];
	extern uint16 sc72_cham2_anim[];
	extern uint16 reset_71_72[];
	extern uint16 wit_st_left[];
	extern Compact sc72_cham1_light;
	extern uint16 sc72_palette[];
	extern uint16 sc72_joey_list[];
	extern uint16 sc72_cham2_flash[];
	extern uint16 wit_st_down[];
	extern uint16 sc72_mouse_list[];
	extern Compact sc72_fake_floor;
	extern uint16 wit_st_up[];
	extern Compact sc72_tap;
	extern uint16 wit_l_to_t[];
	extern uint16 wit_st_talk[];
	extern uint16 wit_d_to_l[];
	extern Compact sc72_spill;
	extern Compact sc72_computer;
	extern uint16 wit_l_to_u[];
	extern Compact sc72_door;
	extern uint16 wit_u_to_l[];
	extern uint16 sc72_cham1_flash[];
	extern uint16 wit_d_to_r[];
	extern uint16 wit_left[];
	extern uint16 sc72_tank_anim[];
	extern uint16 wit_right[];
	extern uint16 wit_t_to_u[];
	extern uint16 wit_u_to_t[];
	extern Compact sc72_chamber3;
	extern uint16 wit_down[];
	extern uint16 wit_u_to_r[];
	extern uint16 wit_r_to_u[];
	extern uint16 wit_t_to_l[];
	extern ExtCompact witness_ext;
	extern Compact witness;
	extern uint16 sc72_logic_list[];
	extern uint16 reset_73_72[];
	extern uint16 sc720_chip_list[];
	extern Compact sc72_grill;
	extern Compact sc72_chamber1;
	extern uint16 gal_u_to_l[];
	extern Compact sc73_exit;
	extern uint16 sc73_cham5_flash[];
	extern uint16 sc73_cham5_anim[];
	extern uint16 gal_up[];
	extern uint16 gal_down[];
	extern uint16 gal_left[];
	extern uint16 gal_right[];
	extern uint16 gal_st_up[];
	extern uint16 gal_st_down[];
	extern uint16 gal_st_left[];
	extern uint16 gal_st_right[];
	extern uint16 gal_u_to_d[];
	extern uint16 gal_u_to_r[];
	extern uint16 gal_d_to_u[];
	extern uint16 gal_d_to_l[];
	extern uint16 gal_d_to_r[];
	extern uint16 gal_l_to_u[];
	extern uint16 gal_l_to_d[];
	extern uint16 gal_l_to_r[];
	extern uint16 gal_r_to_u[];
	extern uint16 gal_r_to_d[];
	extern uint16 gal_r_to_l[];
	extern ExtCompact gallagher_ext;
	extern Compact gallagher;
	extern uint16 sc73_joey_fight1[];
	extern uint16 sc73_gall_fight2[];
	extern uint16 reset_72_73[];
	extern uint16 sc73_joey_fight2[];
	extern uint16 sc73_floor_table[];
	extern Compact sc73_floor;
	extern uint16 sc73_bits_anim[];
	extern uint16 sc73_gall_fight1[];
	extern Compact sc73_door;
	extern uint16 sc73_cham4_anim[];
	extern Compact sc73_bits;
	extern Compact sc73_locked_door;
	extern uint16 sc73_mouse_list[];
	extern Compact sc73_sensor;
	extern Compact sc73_cham5_light;
	extern uint16 sc73_joey_lunge[];
	extern uint16 sc73_get_board[];
	extern uint16 sc73_chip_list[];
	extern Compact sc73_spray;
	extern uint16 reset_74_73[];
	extern Compact sc73_bits2;
	extern uint16 sc73_sensor_anim[];
	extern uint16 sc73_fast_list[];
	extern uint16 sc73_joey_list[];
	extern uint16 sc73_spray_anim[];
	extern Compact sc73_chamber4;
	extern Compact sc73_chamber3;
	extern uint16 sc73_palette[];
	extern Compact sc73_chamber5;
	extern uint16 sc73_cham4_flash[];
	extern uint16 sc73_bits2_anim[];
	extern uint16 sc73_logic_list[];
	extern uint16 reset_75_73[];
	extern uint16 sc73_cham3_anim[];
	extern uint16 sc73_search[];
	extern Compact sc73_big_door;
	extern Compact sc73_cham4_light;
	extern Compact sc74_monitor3;
	extern Compact sc74_pod;
	extern Compact sc74_terminal;
	extern uint16 sc74_int_table[];
	extern Compact sc74_interface;
	extern uint16 sc74_mon4_anim[];
	extern uint16 sc74_rtv_anim[];
	extern uint16 sc74_pod_down[];
	extern uint16 sc74_lights_anim[];
	extern uint16 sc74_pod_up[];
	extern Compact sc74_int_slot;
	extern uint16 sc74_mouse_list[];
	extern uint16 sc74_chip_list[];
	extern Compact sc74_monitor2;
	extern uint16 sc74_floor_table[];
	extern Compact sc74_floor;
	extern uint16 reset_73_74[];
	extern uint16 sc74_ltv_anim[];
	extern Compact sc74_left_tv;
	extern uint16 sc74_usecard[];
	extern uint16 sc74_fost_sit[];
	extern Compact sc74_door;
	extern Compact sc74_monitor4;
	extern uint16 sc74_mon3_anim[];
	extern uint16 sc74_get_up[];
	extern Compact sc74_monitor1;
	extern uint16 sc74_mon1_anim[];
	extern uint16 sc74_palette[];
	extern uint16 sc74_fast_list[];
	extern uint16 sc74_usecard2[];
	extern uint16 sc74_rpocket[];
	extern uint16 reset_linc_74[];
	extern Compact sc74_right_tv;
	extern uint16 sc74_logic_list[];
	extern uint16 sc74_mon2_anim[];
	extern Compact sc74_lights;
	extern uint16 sc74_slot_flash[];
	extern uint16 sc75_floor_table[];
	extern uint16 sc75_usecard[];
	extern Compact sc75_console;
	extern uint16 sc75_get_tongs[];
	extern uint16 sc75_joey_list[];
	extern uint16 sc75_freeze_ded2[];
	extern uint16 sc75_hand_tank[];
	extern Compact sc75_door;
	extern uint16 sc75_light2_anim[];
	extern Compact sc75_light1;
	extern uint16 rs_tongs_dead[];
	extern uint16 sc75_tank_anim[];
	extern uint16 reset_73_75[];
	extern uint16 sc75_light1_anim[];
	extern uint16 sc75_fast_list[];
	extern Compact sc75_floor;
	extern uint16 rs_tongs_empty[];
	extern Compact sc75_big_door;
	extern uint16 sc75_mouse_list[];
	extern Compact sc75_live_tank;
	extern uint16 sc75_freeze_it[];
	extern Compact sc75_tongs;
	extern uint16 sc75_chip_list[];
	extern uint16 sc75_nitro_anim[];
	extern uint16 rs_tongs_frozen[];
	extern uint16 sc75_crash_anim[];
	extern Compact sc75_light2;
	extern uint16 sc75_mon_anim[];
	extern uint16 sc75_freeze_it2[];
	extern Compact sc75_nitro_tank;
	extern uint16 sc75_palette[];
	extern uint16 rs_tongs_live[];
	extern uint16 reset_76_75[];
	extern uint16 sc75_logic_list[];
	extern uint16 rs_tongs_timer[];
	extern uint16 sc75_freeze_ded[];
	extern uint16 sc75_rpocket[];
	extern uint16 sc75_get_tiss[];
	extern uint16 ken_u_to_r[];
	extern uint16 sc76_logic_list[];
	extern uint16 sc76_hatch_2[];
	extern uint16 sc76_cab2_close[];
	extern uint16 reset_75_76[];
	extern uint16 sc76_chip_list[];
	extern uint16 ken_right[];
	extern uint16 ken_st_up[];
	extern uint16 ken_d_to_l[];
	extern uint16 ken_up[];
	extern uint16 ken_down[];
	extern uint16 ken_left[];
	extern uint16 ken_st_down[];
	extern uint16 ken_st_left[];
	extern uint16 ken_st_right[];
	extern uint16 ken_u_to_d[];
	extern uint16 ken_u_to_l[];
	extern uint16 ken_d_to_u[];
	extern uint16 ken_d_to_r[];
	extern uint16 ken_l_to_u[];
	extern uint16 ken_l_to_d[];
	extern uint16 ken_l_to_r[];
	extern uint16 ken_r_to_u[];
	extern uint16 ken_r_to_d[];
	extern uint16 ken_r_to_l[];
	extern ExtCompact ken_ext;
	extern Compact ken;
	extern uint16 sc76_floor_table[];
	extern Compact sc76_floor;
	extern Compact sc76_light3;
	extern Compact sc76_light9;
	extern uint16 sc76_light1_anim[];
	extern uint16 sc76_light2_anim[];
	extern Compact sc76_light6;
	extern Compact sc76_board_3;
	extern uint16 sc76_shut_cab[];
	extern uint16 sc76_light3_anim[];
	extern Compact sc76_light1;
	extern uint16 sc76_low_get[];
	extern uint16 sc76_fostfall[];
	extern Compact sc76_door77;
	extern Compact sc76_board_1;
	extern Compact sc76_light8;
	extern Compact sc76_android_1;
	extern uint16 sc76_cab1_open[];
	extern uint16 sc76_hatch_1[];
	extern Compact sc76_console_2;
	extern ExtCompact sc76_android_3_ext;
	extern Compact sc76_android_3;
	extern Compact sc76_console_1;
	extern uint16 sc76_fast_list[];
	extern ExtCompact sc76_android_2_ext;
	extern Compact sc76_android_2;
	extern uint16 sc76_cab1_close[];
	extern Compact sc76_light5;
	extern Compact sc76_board_2;
	extern uint16 sc76_light9_anim[];
	extern uint16 sc76_cab3_open[];
	extern Compact sc76_light7;
	extern Compact sc76_light4;
	extern uint16 sc76_mouse_list[];
	extern uint16 sc76_joey_list[];
	extern uint16 reset_77_76[];
	extern uint16 sc76_light5_anim[];
	extern uint16 sc76_light4_anim[];
	extern uint16 sc76_hatch_3[];
	extern Compact sc76_cabinet_1;
	extern uint16 sc76_punch[];
	extern uint16 sc76_cab2_open[];
	extern uint16 sc76_light7_anim[];
	extern Compact sc76_cabinet_3;
	extern Compact sc76_console_3;
	extern uint16 sc76_open_cab[];
	extern uint16 sc76_palette[];
	extern Compact sc76_light2;
	extern uint16 sc76_light8_anim[];
	extern uint16 sc76_cab3_close[];
	extern Compact sc76_cabinet_2;
	extern uint16 sc76_light6_anim[];
	extern Compact sc76_door75;
	extern uint16 sc77_fpushl_2[];
	extern uint16 sc77_palette[];
	extern Compact sc77_big_door;
	extern uint16 sc77_fpushl_1[];
	extern uint16 sc77_fast_list[];
	extern uint16 sc77_logic_list[];
	extern uint16 sc77_door_open[];
	extern uint16 sc77_chip_list[];
	extern uint16 reset_78_77[];
	extern uint16 sc77_stretch[];
	extern uint16 sc77_joey_list[];
	extern uint16 sc77_mouse_list[];
	extern uint16 reset_76_77[];
	extern uint16 sc77_fpushr_2[];
	extern uint16 sc77_floor_table[];
	extern uint16 sc77_kpushr_2[];
	extern Compact sc77_tank_1;
	extern uint16 sc77_fpushr_1[];
	extern Compact sc77_tank_2;
	extern Compact sc77_floor;
	extern Compact sc77_hand_2;
	extern Compact sc77_hand_1;
	extern uint16 sc77_kpushr_1[];
	extern Compact sc77_door76;
	extern uint16 sc78_ledge_table[];
	extern Compact sc78_ledge;
	extern Compact sc78_big_door;
	extern uint16 sc78_climb_up[];
	extern uint16 sc78_logic_list[];
	extern uint16 reset_79_78[];
	extern uint16 sc78_mouse_list[];
	extern Compact sc78_support;
	extern uint16 sc781_palette[];
	extern uint16 reset_77_78[];
	extern uint16 sc78_pipe_table[];
	extern uint16 sc78_chip_list[];
	extern Compact sc78_exit;
	extern uint16 sc78_jump_down[];
	extern Compact sc78_pipe;
	extern uint16 sc78_palette[];
	extern uint16 sc78_fast_list[];
	extern uint16 sc791_palette[];
	extern uint16 sc79_chip_list[];
	extern uint16 sc79_climb_up[];
	extern Compact sc79_exit;
	extern Compact sc79_rope;
	extern Compact sc79_support;
	extern uint16 sc79_palette[];
	extern uint16 sc79_climb_down[];
	extern uint16 sc79_crouch_down[];
	extern uint16 sc79_pipe_table[];
	extern uint16 reset_78_79[];
	extern uint16 sc79_crouch_up[];
	extern uint16 sc79_rope_anim[];
	extern Compact sc79_knot;
	extern uint16 sc79_fast_list[];
	extern uint16 reset_80_79[];
	extern Compact sc79_ladder;
	extern uint16 sc79_toss_rope[];
	extern uint16 sc79_logic_list[];
	extern uint16 sc79_mouse_list[];
	extern uint16 sc79_tie_rope[];
	extern Compact sc79_pipe;
	extern Compact sc80_bubble10;
	extern uint16 sc80_logic_list[];
	extern uint16 sc802_palette[];
	extern Compact sc80_bubble1;
	extern uint16 sc801_palette[];
	extern uint16 sc803_palette[];
	extern uint16 sc80_chip_list[];
	extern Compact sc80_bubble2;
	extern uint16 sc80_pipe_shrug[];
	extern uint16 sc80_climb_down[];
	extern uint16 sc80_exit_open[];
	extern uint16 sc80_fast_list[];
	extern uint16 sc80_palette[];
	extern Compact sc80_bubble11;
	extern uint16 sc80_clamber[];
	extern uint16 sc80_mouse_list[];
	extern uint16 sc80_climb_up[];
	extern Compact sc80_exit;
	extern Compact sc80_orifice;
	extern Compact sc80_sample;
	extern uint16 sc80_get_rope[];
	extern uint16 sc80_bub1_anim[];
	extern uint16 sc80_swing[];
	extern Compact sc80_spout;
	extern Compact sc80_bubble4;
	extern uint16 sc80_goo_anim[];
	extern Compact sc80_bubble7;
	extern Compact sc80_bubble9;
	extern uint16 sc80_sample_fall[];
	extern Compact sc80_rope;
	extern Compact sc80_bubble3;
	extern Compact sc80_bubble8;
	extern uint16 sc80_drop[];
	extern uint16 reset_79_80[];
	extern Compact sc80_ladder;
	extern uint16 sc804_palette[];
	extern Compact sc80_bubble12;
	extern Compact sc80_bubble6;
	extern Compact sc80_bubble5;
	extern Compact sc80_goo;
	extern Compact sc81_big_tent3;
	extern uint16 sc81_fos_squirm[];
	extern uint16 sc81_tentwig1[];
	extern uint16 sc81_ken_helm_dn[];
	extern uint16 sc81_tentwig2[];
	extern uint16 sc81_fast_list[];
	extern Compact sc81_tent5;
	extern Compact sc81_helmet;
	extern uint16 sc81_ken_sit[];
	extern uint16 sc81_palette[];
	extern uint16 sc81_dad_helm_up[];
	extern Compact sc81_tent2;
	extern uint16 sc83_draw_list[];
	extern uint16 sc81_tentwig5[];
	extern Compact sc81_chair;
	extern uint16 sc81_chip_list[];
	extern uint16 sc81_tentwig6[];
	extern Compact sc81_ken_sat;
	extern uint16 sc81_tentdrop2[];
	extern uint16 sc81_ken_walk2[];
	extern Compact sc81_foster_sat;
	extern uint16 sc81_tentdrop1[];
	extern Compact sc81_father_sat;
	extern uint16 sc81_tentwig4[];
	extern uint16 sc81_ken_walk1[];
	extern uint16 reset_dad_spec[];
	extern uint16 sc81_mouse_list[];
	extern uint16 sc81_dad_breath1[];
	extern uint16 sc81_fos_helm_dn[];
	extern uint16 sc81_dad_fall2[];
	extern Compact sc81_door;
	extern Compact sc81_big_tent1;
	extern Compact sc81_tent1;
	extern Compact sc81_tent4;
	extern ExtCompact sc81_father_ext;
	extern Compact sc81_father;
	extern uint16 sc81_door_close[];
	extern uint16 sc81_dad_breath2[];
	extern uint16 sc81_tentwig3[];
	extern uint16 sc81_father_die[];
	extern uint16 reset_ken_81[];
	extern uint16 reset_80_81[];
	extern uint16 sc81_dad_fall1[];
	extern uint16 sc81_ken_jump_in[];
	extern uint16 sc81_logic_list[];
	extern Compact sc81_big_tent2;
	extern Compact sc81_tent3;
	extern uint16 sc81_tentdrop3[];
	extern Compact sc81_tent6;
	extern uint16 sc83_palette[];
	extern uint16 reset_foster_spec[];
	extern uint16 sc81_foster_sit[];
	extern uint16 sc82_push_button[];
	extern ExtCompact sc82_jobsworth_ext;
	extern Compact sc82_jobsworth;
	extern uint16 reset_foster_82[];
	extern uint16 sc82_jobs_turn[];
	extern uint16 sc82_jobs_take[];
	extern uint16 sc82_logic_list[];
	extern uint16 sc82_fast_list[];
	extern uint16 sc82_mouse_list[];
	extern uint16 reset_ken_82[];
	extern uint16 sc82_chip_list[];
	extern uint16 sc82_palette[];
	extern uint16 sc82_foster_give[];
	extern uint16 sc82_jobs_return[];
	extern uint16 sc85_palette[];
	extern uint16 sc85_mouse_list[];
	extern uint16 sc85_chip_list[];
	extern uint16 sc85_fast_list[];
	extern uint16 sc85_logic_list[];
	extern Compact door_r90f;
	extern Compact door_r90;
	extern uint16 sc90_floor_table[];
	extern Compact sc90_floor;
	extern uint16 sc90_smfloor_table[];
	extern uint16 eye90_zap_anim[];
	extern uint16 door_l90_anim[];
	extern Compact door_l90;
	extern uint16 get_join[];
	extern uint16 sc90_mouse[];
	extern uint16 door_l90f_anim[];
	extern uint16 sc90_logic[];
	extern uint16 eye_90_table[];
	extern Compact eyeball_90;
	extern Compact sc90_smfloor;
	extern Compact join_object;
	extern Compact door_l90f;
	extern Compact oscillator;
	extern uint16 rs_foster_90_91[];
	extern uint16 rs_foster_90_94[];
	extern uint16 door_r90_anim[];
	extern uint16 door_r90f_anim[];
	extern uint16 get_oscill[];
	extern uint16 blind_eye[];
	extern uint16 see_eye[];
	extern uint16 pal90[];
	extern uint16 pal90a[];
	extern uint16 pal90b[];
	extern uint16 chip_list_sc90[];
	extern uint16 get_eye[];
	extern uint16 fost_die90[];
	extern void *data_6[];
	extern Compact decomp_obj;
	extern Compact door_r91;
	extern uint16 sc91_mouse[];
	extern uint16 get_decomp[];
	extern uint16 eye_91_table[];
	extern Compact door_l91f;
	extern uint16 door_r91f_anim[];
	extern Compact report_book;
	extern uint16 get_report[];
	extern uint16 chip_list_sc91[];
	extern uint16 sc91_floor_table[];
	extern Compact sc91_floor;
	extern Compact bag_91;
	extern uint16 door_r91_anim[];
	extern uint16 rs_foster_91_95[];
	extern uint16 door_l91_anim[];
	extern uint16 pal91[];
	extern uint16 get_decrypt[];
	extern Compact door_t91;
	extern Compact door_l91;
	extern uint16 rs_foster_91_92[];
	extern uint16 fost_die91[];
	extern uint16 rs_foster_91_90[];
	extern uint16 sc91_logic[];
	extern Compact eyeball_91;
	extern uint16 fast_list_sc91[];
	extern Compact door_t91r;
	extern uint16 door_l91f_anim[];
	extern Compact decrypt_obj;
	extern uint16 door_t91_anim[];
	extern uint16 door_t91r_anim[];
	extern uint16 eye91_zap_anim[];
	extern Compact door_r91f;
	extern Compact bridge_e;
	extern Compact door_l92;
	extern uint16 slab8_table[];
	extern Compact slab8;
	extern uint16 slab3_table[];
	extern uint16 slab2_table[];
	extern uint16 slab4_table[];
	extern Compact slab4;
	extern uint16 door_l92_anim[];
	extern uint16 door_r92_anim[];
	extern uint16 slab6_table[];
	extern Compact slab6;
	extern Compact door_r92;
	extern Compact bridge_h;
	extern Compact bridge_f;
	extern uint16 slab7_table[];
	extern Compact bridge_a;
	extern uint16 door_r92r_anim[];
	extern Compact bridge_g;
	extern Compact door_l92f;
	extern Compact bridge_b;
	extern uint16 slab9_table[];
	extern uint16 slab1_table[];
	extern Compact slab1;
	extern Compact red_circle;
	extern Compact slab2;
	extern uint16 sc92_logic[];
	extern uint16 chip_list_sc92[];
	extern uint16 pal92[];
	extern uint16 fast_list_sc92[];
	extern uint16 door_l92f_anim[];
	extern Compact slab9;
	extern Compact door_r92r;
	extern uint16 slab5_table[];
	extern Compact slab5;
	extern Compact slab7;
	extern uint16 sc92_mouse[];
	extern uint16 rs_foster_92_93[];
	extern Compact green_circle;
	extern uint16 rs_foster_92_91[];
	extern Compact bridge_c;
	extern Compact bridge_d;
	extern Compact slab3;
	extern uint16 get_adjust[];
	extern Compact door_l93;
	extern uint16 sc93_mouse[];
	extern Compact adjust_book;
	extern uint16 sc93_floor_table[];
	extern uint16 sc93_logic[];
	extern Compact door_l93f;
	extern uint16 rs_foster_93_92[];
	extern Compact sc93_floor;
	extern uint16 chip_list_sc93[];
	extern uint16 door_l93f_anim[];
	extern uint16 get_persona[];
	extern uint16 fast_list_sc93[];
	extern uint16 door_l93_anim[];
	extern Compact persona;
	extern uint16 pal93[];
	extern uint16 door_l94_anim[];
	extern uint16 holo1_a_anim[];
	extern uint16 sc94_floor_table[];
	extern Compact sc94_floor;
	extern uint16 fast_list_sc94[];
	extern uint16 holo3_anim[];
	extern Compact door_r94;
	extern uint16 sc94_logic[];
	extern uint16 door_r94r_anim[];
	extern Compact door_r94r;
	extern uint16 rs_foster_94_90[];
	extern Compact door_l94r;
	extern uint16 rs_foster_94_95[];
	extern uint16 door_r94_anim[];
	extern uint16 chip_list_sc94[];
	extern ExtCompact hologram_b_ext;
	extern Compact hologram_b;
	extern uint16 holo1_b_anim[];
	extern Compact door_l94;
	extern uint16 door_l94r_anim[];
	extern uint16 sc94_mouse[];
	extern uint16 anita_holo_talk[];
	extern Compact hologram_pad;
	extern uint16 pal94[];
	extern Compact hologram_a;
	extern uint16 fast_list_sc95[];
	extern uint16 weight_anim[];
	extern uint16 sc95_floor_table[];
	extern uint16 door_r95_anim[];
	extern uint16 rs_foster_95_96[];
	extern Compact door_r95f;
	extern uint16 pal95[];
	extern uint16 chip_list_sc95[];
	extern uint16 door_l95f_anim[];
	extern uint16 sc95_logic[];
	extern Compact weight;
	extern Compact guardian;
	extern uint16 rs_foster_95_91[];
	extern uint16 sc95_mouse[];
	extern Compact door_r95;
	extern uint16 rs_foster_95_94[];
	extern Compact door_t95;
	extern uint16 door_r95f_anim[];
	extern Compact door_l95;
	extern Compact door_l95f;
	extern uint16 door_t95_anim[];
	extern uint16 door_t95r_anim[];
	extern uint16 guardian_down[];
	extern Compact sc95_floor;
	extern uint16 guardian_up[];
	extern Compact door_t95r;
	extern uint16 door_l95_anim[];
	extern uint16 sc96_mouse[];
	extern uint16 door_l96f_anim[];
	extern uint16 sc96_floor_table[];
	extern Compact sc96_floor;
	extern uint16 sc96_logic[];
	extern Compact crystal;
	extern uint16 rs_foster_96_95[];
	extern uint16 crystal_break[];
	extern uint16 pal96[];
	extern Compact door_l96f;
	extern Compact virus;
	extern uint16 crystal_spin[];
	extern uint16 virus_spin[];
	extern Compact door_l96;
	extern uint16 chip_list_sc96[];
	extern uint16 get_virus[];
	extern uint16 door_l96_anim[];
	extern uint16 fast_list_sc96[];
	extern uint16 s9_floor_table[];
	extern Compact fake_floor_9;
	extern uint16 son_work_seq[];
	extern ExtCompact son_ext;
	extern Compact son;
	extern uint16 scandie_seq[];
	extern uint16 lobby_down_seq[];
	extern uint16 s9_mouse[];
	extern uint16 scan_seq[];
	extern uint16 dad_work_seq[];
	extern Compact linc_s9;
	extern uint16 dad_work3_seq[];
	extern ExtCompact dad_ext;
	extern Compact dad;
	extern uint16 dad_work2_seq[];
	extern Compact s9_floor;
	extern Compact left_exit_s9;
	extern uint16 fans_seq[];
	extern Compact fans;
	extern Compact lobby_slot;
	extern Compact scanner;
	extern uint16 card_in_seq[];
	extern uint16 lobby_up_seq[];
	extern Compact lobby_door;
	extern uint16 rs_foster_to_9[];
	extern uint16 rs_foster_10_9[];
	extern uint16 s9_logic[];
	extern uint16 s9_chip_list[];
	extern uint16 s9_pal[];
	extern uint16 window_mouse[];
	extern uint16 logon[];
	extern uint16 note_module[];
	extern uint16 window_logic[];
	extern uint16 crouch_right_b[];
	extern uint16 crouch_down[];
	extern uint16 auth_module[];
	extern Compact window_3;
	extern Compact info_button;
	extern uint16 size_module[];
	extern Compact window_2;
	extern uint16 logoff[];
	extern uint16 enter_top[];
	extern uint16 crouch_right[];
	extern Compact window_1;
	extern uint16 exit_top[];
	extern uint16 shrug[];
	extern uint16 head_module[];
	extern uint16 crouch_right_a[];
	extern uint16 file_module[];
	extern uint16 crouch_left[];
	extern Compact window_4;
	extern uint16 rs_foster_s90[];
	extern Compact playbak_menu;
	extern Compact persona_menu;
	extern Compact info_menu;
	extern Compact decrypt_menu;
	extern uint16 linc_menu_mouse[];
	extern Compact kill_menu;
	extern Compact read_menu;
	extern Compact orders_menu;
	extern Compact report_menu;
	extern Compact virus_menu;
	extern Compact adjust_menu;
	extern Compact charon_menu;
	extern Compact orders2_menu;
	extern Compact report2_menu;
	extern Compact oscill_menu;
	extern Compact join_menu;
	extern Compact green_menu;
	extern uint16 linc_menu_logic[];
	extern Compact adjust2_menu;
	extern Compact red_menu;
	extern Compact open_menu;
	extern Compact decomp_menu;
	extern Compact blind_menu;
	extern Compact blank5;
	extern Compact tape_menu;
	extern Compact right_arrow;
	extern uint16 move_2[];
	extern Compact glass_menu;
	extern Compact lightbulb_menu;
	extern Compact blank3;
	extern Compact wd40_menu;
	extern Compact plaster_menu;
	extern Compact new_cable_menu;
	extern Compact blank8;
	extern Compact joeyb_menu;
	extern uint16 move_menu[];
	extern uint16 *move_list[];
	extern Compact blank6;
	extern Compact shades_menu;
	extern Compact citycard_menu;
	extern Compact blank9;
	extern Compact rope_menu;
	extern Compact left_arrow;
	extern Compact magazine_menu;
	extern Compact gallcard_menu;
	extern Compact dog_food_menu;
	extern Compact blank7;
	extern Compact blank2;
	extern Compact blank11;
	extern Compact anchor_menu;
	extern Compact anita_card_menu;
	extern Compact tongs_menu;
	extern Compact blank4;
	extern Compact crow_bar_menu;
	extern Compact secateurs_menu;
	extern Compact sarnie_menu;
	extern Compact spanner_menu;
	extern Compact blank10;
	extern Compact skey_menu;
	extern Compact blank1;
	extern Compact ticket_menu;
	extern Compact brick_menu;
	extern Compact putty_menu;
	extern Compact menu_bar;
	extern uint16 fradman_up[];
	extern uint16 high_floor_table[];
	extern Compact floor;
	extern uint16 wjoey_d_to_u[];
	extern uint16 wjoey_st_left[];
	extern uint16 ljoey_r_to_d[];
	extern uint16 s2_talk_table[];
	extern Compact r_talk_s2;
	extern uint16 fradman_u_to_d[];
	extern uint16 door_table[];
	extern uint16 mfoster_st_right[];
	extern uint16 bfoster_st_right[];
	extern uint16 seq3_pal[];
	extern uint16 bfoster_u_to_r[];
	extern uint16 foster_l_to_t[];
	extern uint16 s9_fast_list[];
	extern uint16 wjoey_st_up[];
	extern uint16 bfoster_r_to_u[];
	extern uint16 monitor_left[];
	extern uint16 rs_lamb_to_three[];
	extern uint16 std_menu_logic[];
	extern uint16 but_7[];
	extern uint16 ljoey_up[];
	extern uint16 wjoey_r_to_d[];
	extern Compact small_door;
	extern uint16 shrug_seq[];
	extern uint16 foster_up[];
	extern uint16 mfoster_d_to_l[];
	extern uint16 ljoey_down[];
	extern uint16 rs_blanks_linc[];
	extern uint16 mini_shrug_seq[];
	extern uint16 talk_table[];
	extern uint16 fradman_l_to_d[];
	extern uint16 low_floor_table[];
	extern Compact low_floor;
	extern uint16 bfoster_d_to_u[];
	extern uint16 but_0[];
	extern uint16 but_4[];
	extern uint16 fradman_right[];
	extern uint16 bfoster_st_left[];
	extern uint16 sjoey_up[];
	extern uint16 s10_fast_list[];
	extern uint16 fradman_u_to_l[];
	extern uint16 ljoey_r_to_u[];
	extern uint16 foster_u_to_l[];
	extern uint16 lamb_up[];
	extern uint16 lamb_down[];
	extern uint16 lamb_left[];
	extern uint16 lamb_right[];
	extern uint16 lamb_st_up[];
	extern uint16 lamb_st_down[];
	extern uint16 lamb_st_left[];
	extern uint16 lamb_st_right[];
	extern uint16 lamb_st_talk[];
	extern uint16 lamb_u_to_d[];
	extern uint16 lamb_u_to_l[];
	extern uint16 lamb_u_to_r[];
	extern uint16 lamb_d_to_u[];
	extern uint16 lamb_d_to_l[];
	extern uint16 lamb_d_to_r[];
	extern uint16 lamb_l_to_u[];
	extern uint16 lamb_l_to_d[];
	extern uint16 lamb_l_to_r[];
	extern uint16 lamb_r_to_u[];
	extern uint16 lamb_r_to_d[];
	extern uint16 lamb_r_to_l[];
	extern ExtCompact lamb_ext;
	extern Compact lamb;
	extern uint16 bfoster_left[];
	extern uint16 fast_intro[];
	extern uint16 foster_st_right[];
	extern uint16 monitor_st_up[];
	extern uint16 sjoey_d_to_r[];
	extern uint16 foster_st_down[];
	extern uint16 mfoster_u_to_r[];
	extern uint16 sml_up_mid_get_seq[];
	extern uint16 mfoster_u_to_d[];
	extern uint16 wjoey_u_to_d[];
	extern uint16 chip_intro[];
	extern uint16 fast_list_0[];
	extern uint16 rs_right_arrow[];
	extern uint16 ljoey_st_left[];
	extern uint16 s28_fast_list[];
	extern uint16 monitor_right[];
	extern uint16 wjoey_st_down[];
	extern uint16 r2_floor_table[];
	extern Compact s2_floor;
	extern uint16 fradman_down[];
	extern uint16 foster_u_to_d[];
	extern uint16 ljoey_d_to_r[];
	extern uint16 mfoster_r_to_u[];
	extern uint16 fast_list_sc3[];
	extern uint16 rs_left_arrow[];
	extern uint16 rs_l_arr_linc[];
	extern Compact text_8;
	extern uint16 wjoey_l_to_d[];
	extern uint16 stair_table[];
	extern Compact stairs;
	extern uint16 text_mouse[];
	extern uint16 monitor_d_to_r[];
	extern uint16 ljoey_l_to_d[];
	extern uint16 sjoey_st_right[];
	extern uint16 sjoey_st_down[];
	extern uint16 sjoey_st_left[];
	extern uint16 upstair_table[];
	extern uint16 sjoey_right[];
	extern uint16 ljoey_u_to_r[];
	extern uint16 mfoster_st_up[];
	extern uint16 mfoster_st_down[];
	extern uint16 foster_st_talk[];
	extern uint16 mfoster_l_to_r[];
	extern uint16 bar_table[];
	extern uint16 foster_d_to_l[];
	extern Compact text_1;
	extern uint16 fradman_left[];
	extern uint16 s29_fast_list[];
	extern uint16 r1door_table[];
	extern Compact r1_door;
	extern Compact upstairs;
	extern uint16 ljoey_u_to_d[];
	extern uint16 monitor_u_to_l[];
	extern uint16 fradman_st_right[];
	extern uint16 sml_door_table[];
	extern uint16 bfoster_r_to_l[];
	extern uint16 mfoster_left[];
	extern uint16 wjoey_up[];
	extern uint16 foster_r_to_u[];
	extern uint16 mfoster_d_to_u[];
	extern uint16 but_8[];
	extern uint16 but_5[];
	extern uint16 monitor_l_to_u[];
	extern uint16 mfoster_l_to_u[];
	extern uint16 bfoster_d_to_r[];
	extern uint16 wjoey_down[];
	extern Compact text_10;
	extern uint16 monitor_u_to_d[];
	extern Compact text_5;
	extern uint16 forklift1_cdt[];
	extern uint16 bfoster_up[];
	extern uint16 s11_fast_list[];
	extern uint16 fradman_d_to_u[];
	extern uint16 monitor_r_to_u[];
	extern uint16 bfoster_down[];
	extern uint16 ledge_table[];
	extern uint16 ljoey_d_to_u[];
	extern uint16 foster_left[];
	extern uint16 sjoey_st_up[];
	extern uint16 fradman_l_to_r[];
	extern Compact outside_ledge;
	extern uint16 fradman_st_up[];
	extern uint16 foster_l_to_u[];
	extern uint16 foster_u_to_t[];
	extern uint16 ljoey_d_to_l[];
	extern uint16 ljoey_left[];
	extern uint16 ljoey_right[];
	extern uint16 ljoey_st_up[];
	extern uint16 ljoey_st_down[];
	extern uint16 ljoey_st_right[];
	extern uint16 ljoey_u_to_l[];
	extern uint16 ljoey_l_to_u[];
	extern uint16 ljoey_l_to_r[];
	extern uint16 ljoey_r_to_l[];
	extern uint16 wjoey_left[];
	extern uint16 wjoey_right[];
	extern uint16 wjoey_st_right[];
	extern uint16 wjoey_u_to_l[];
	extern uint16 wjoey_u_to_r[];
	extern uint16 wjoey_d_to_l[];
	extern uint16 wjoey_d_to_r[];
	extern uint16 wjoey_l_to_u[];
	extern uint16 wjoey_l_to_r[];
	extern uint16 wjoey_r_to_u[];
	extern uint16 wjoey_r_to_l[];
	extern uint16 sjoey_down[];
	extern uint16 sjoey_left[];
	extern uint16 sjoey_u_to_d[];
	extern uint16 sjoey_u_to_l[];
	extern uint16 sjoey_u_to_r[];
	extern uint16 sjoey_d_to_u[];
	extern uint16 sjoey_d_to_l[];
	extern uint16 sjoey_l_to_u[];
	extern uint16 sjoey_l_to_d[];
	extern uint16 sjoey_l_to_r[];
	extern uint16 sjoey_r_to_u[];
	extern uint16 sjoey_r_to_d[];
	extern uint16 sjoey_r_to_l[];
	extern ExtCompact joey_ext;
	extern Compact joey;
	extern uint16 baby_logic_list[];
	extern uint16 save_restore_mouse[];
	extern uint16 fradman_r_to_l[];
	extern uint16 foster_right[];
	extern uint16 seq2_pal[];
	extern uint16 seq1_pal[];
	extern uint16 bfoster_r_to_d[];
	extern uint16 low_get_seq[];
	extern uint16 fradman_u_to_r[];
	extern uint16 rs_mega_alive[];
	extern Compact whole_screen;
	extern uint16 bfoster_u_to_l[];
	extern Compact bar;
	extern uint16 foster_st_left[];
	extern uint16 monitor_l_to_r[];
	extern uint16 rs_lamb_start_3[];
	extern uint16 forklift2_cdt[];
	extern Compact talk2;
	extern Compact text_4;
	extern uint16 mfoster_d_to_r[];
	extern Compact door;
	extern uint16 foster_d_to_u[];
	extern uint16 park_table[];
	extern uint16 mfoster_up[];
	extern uint16 mfoster_down[];
	extern uint16 mfoster_right[];
	extern uint16 mfoster_st_left[];
	extern uint16 mfoster_u_to_l[];
	extern uint16 mfoster_l_to_d[];
	extern uint16 mfoster_r_to_d[];
	extern uint16 mfoster_r_to_l[];
	extern uint16 foster_down[];
	extern uint16 foster_st_up[];
	extern uint16 foster_u_to_r[];
	extern uint16 foster_d_to_r[];
	extern uint16 foster_l_to_d[];
	extern uint16 foster_l_to_r[];
	extern uint16 foster_r_to_d[];
	extern uint16 foster_r_to_l[];
	extern uint16 foster_t_to_u[];
	extern uint16 foster_t_to_l[];
	extern uint16 fradman_st_down[];
	extern uint16 fradman_st_left[];
	extern uint16 fradman_st_talk[];
	extern uint16 fradman_d_to_l[];
	extern uint16 fradman_d_to_r[];
	extern uint16 fradman_l_to_u[];
	extern uint16 fradman_r_to_u[];
	extern uint16 fradman_r_to_d[];
	extern uint16 bfoster_right[];
	extern uint16 bfoster_st_up[];
	extern uint16 bfoster_st_down[];
	extern uint16 bfoster_u_to_d[];
	extern uint16 bfoster_d_to_l[];
	extern uint16 bfoster_l_to_u[];
	extern uint16 bfoster_l_to_d[];
	extern uint16 bfoster_l_to_r[];
	extern ExtCompact foster_ext;
	extern Compact foster;
	extern uint16 monitor_up[];
	extern uint16 s0_fast_list[];
	extern uint16 s7_fast_list[];
	extern uint16 monitor_st_talk[];
	extern uint16 fast_list_sc90[];
	extern uint16 but_2[];
	extern uint16 but_3[];
	extern uint16 monitor_st_down[];
	extern uint16 but_9[];
	extern Compact text_11;
	extern Compact joey_park;
	extern Compact coordinate_test;
	extern Compact text_2;
	extern Compact text_3;
	extern Compact text_6;
	extern Compact text_7;
	extern Compact text_9;
	extern uint16 rad_shrug_seq[];
	extern uint16 rs_lamb_start_2[];
	extern uint16 s6_fast_list[];
	extern uint16 swing_list[];
	extern Compact right_exit0;
	extern uint16 rs_blank[];
	extern uint16 monitor_down[];
	extern uint16 monitor_st_left[];
	extern uint16 monitor_st_right[];
	extern uint16 monitor_u_to_r[];
	extern uint16 monitor_d_to_u[];
	extern uint16 monitor_d_to_l[];
	extern uint16 monitor_l_to_d[];
	extern uint16 monitor_r_to_d[];
	extern uint16 monitor_r_to_l[];
	extern ExtCompact monitor_ext;
	extern Compact monitor;
	extern ExtCompact anita_ext;
	extern Compact anita;
	extern uint16 rs_r_arr_linc[];
	extern uint16 s5_fast_list[];
	extern uint16 but_e[];
	extern uint16 but_1[];
	extern uint16 but_6[];
	extern uint16 fast_intro_2[];
	extern uint16 fast_intro_3[];
	extern uint16 retina_scan_cdt[];
	extern Compact forklift_cpt;
	extern void *data_0[];
	extern uint8 babs_auto[];
	extern uint8 burke_auto[];
	extern uint8 dan_auto[];
	extern uint8 foreman_auto[];
	extern uint8 full_ss_auto[];
	extern uint8 gal_auto[];
	extern uint8 jobs_auto[];
	extern uint8 joey_auto[];
	extern uint8 ken_auto[];
	extern uint8 lamb_auto[];
	extern uint8 loader_auto[];
	extern uint8 medi_auto[];
	extern uint8 monitor_auto[];
	extern uint8 radman_auto[];
	extern uint8 shades_auto[];
	extern uint8 spu_auto[];
	extern uint8 ss_auto[];
	extern uint8 wit_auto[];
};

#endif