summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/layout/sc4pony.lay
blob: a7c101a49686dd334a2154a1be5a40c4e3f7ca00 (plain) (tree)
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
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
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



















































































































































































































































































































































































































































                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                    


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                      


















                                                                              
                                      


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   


















                                                                              
                                   






















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                   






















                                                                              
                                    


















                                                                              
                                            






















                                                                              
                                      






















                                                                              
                                      






















                                                                              
                                      






















                                                                              
                                   










































                                                                              
                                    










































































































































































































                                                                              
                                    






































                                                                              
                                   



















































































































































































































































































































                                                                                                                                                                              







                                                                                                                                                    
                  

                                       



                                                                              

                                    



                                                                              

                                              
                                                                 
                       
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  






                                                                    
                  















                                                                                      
                  






                                                                    
                  








                                                                                      




































                                                                 
                                               
                                                                       

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                         
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                             
                                                                         

                                               
                                                                        
                          
                                                                 
                                                                                            
                          
                                                             
                                                                        

                                               
                                                                        
                          
                                                                  
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                  
                                                                                            
                          
                                                                 
                                                                                            
                          
                                                                  
                                                                                             
                          
                                                             

                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                     

                                                                 
                                                                     

                                                                        
                                                                     

                                                                 
                                                                     

                                                                      
                                                                        

                                                               
                                                                        

                                                                      
                                                                        

                                                               
                                                                        

                                                                      
                                                                        

                                                               
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                        
                                                                       

                                                                 
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                       

                                                                   
                                                                       

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                        

                                                                 
                                                                        

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                        
                                                                      

                                                                 
                                                                      

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                          
                                                                        

                                                                   
                                                                        

                                                                                                                 
                                                                       

                                                                                                          
                                                                       

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                                                                                  
                                                                        

                                                                                                           
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                                                                                
                                                                        

                                                                                                         
                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                                    
                                                                        

                                                           
                                                                        

                                                  

                                                                        

                                               
                                                                         

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                          
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                           
                                                                        

                                                       
                                                                        

                                                       
                                                                        
                          


                                     
                                                     
                                                                        

                                                                        
                                                                      

                                                                            
                                                                      

                                                                        
                                                                      

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                          
                                                                       

                                                                            
                                                                       

                                                                        
                                                                       

                                                                            
                                                                       

                                                                          
                                                                       

                                                                            
                                                                       

                                                                          
                                                                       

                                                                            
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                           
                                                                      

                                                                              
                                                                       

                                                                               
                                                                      

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                       

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                       
                                                                       

                                                                              
                                                                       

                                                                       
                                                                       

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                       
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                         

                                                                               
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                         

                                                                           
                                                                       

                                                                              
                                                                       

                                                                           
                                                                       

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                         

                                                                           
                                                                       

                                                                              
                                                                       

                                                                               
                                                                       

                                                                              
                                                                        

                                                                           
                                                                        

                                                                              
                                                                        

                                                                               
                                                                        

                                                                              
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                         

                                                                        
                                                                       

                                                                                
                                                                       

                                                                        
                                                                       

                                                                                
                                                                        

                                                                        
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                       

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                          
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                       

                                                                                
                                                                       

                                                                            
                                                                       

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                            
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                       

                                                                                
                                                                        

                                                                            
                                                                       

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                                
                                                                        

                                                                                
                                                                         

                                                                            
                                                                        

                                                                                
                                                                         

                                                                           
                                                                        

                                                                                
                                                                          

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                                          
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                       
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                             
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                         

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                                                                                           
                                                                         

                                                                                  
                                                                          

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                               
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                             
                          
                                                                 
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                 
                                                                                              
                          
                                                             
                                                                          

                                               
                                                                          
                          
                                                                  
                                                                                             
                          
                                                                 
                                                                                             
                          
                                                                  
                                                                                              
                          
                                                                 
                                                                                              
                          
                                                                  
                                                                                              
                          
                                                             

                                                                          

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         

                                                                                        
                                                                         
                          

               
<?xml version="1.0" encoding="UTF-8" ?>

<!--  ****************************************************  -->
<!--  * This MAME layout file was generated by MFME2MAME *  -->
<!--  * Please visit mfme2mame.org for more information. *  -->
<!--  ****************************************************  -->

<mamelayout version="2">
	<element name="backdrop_colour">
		<rect>
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_84_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_84_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="?">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_94_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_94_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Bank ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="It?">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_100_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_100_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Game">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Over">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_98_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_98_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Bullet">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_75_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_75_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Pony">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_74_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_74_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Pony">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_6_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_6_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_8_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_8_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_9_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_9_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_10_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_10_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_11_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_11_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_12_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_12_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_56_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_56_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Bonus">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_57_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_57_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Bonus">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_59_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_59_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_60_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_60_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_67_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_67_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_68_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_68_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_70_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_70_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_69_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_69_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_133_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_133_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£8">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_132_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_132_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£8">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_129_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_129_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_128_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_128_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_107_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_107_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_106_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_106_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£15">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_183_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_183_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_182_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_182_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_180_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_180_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_179_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_179_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_177_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_177_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_176_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_176_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_167_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_167_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_166_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_166_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_164_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_164_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£2.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_163_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_163_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£2.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_161_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_161_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_160_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_160_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_155_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_155_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£3.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_154_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_154_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£3.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_152_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_152_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_151_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_151_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_149_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_149_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_148_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_148_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_140_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_140_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_139_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_139_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£6">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_137_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_137_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_136_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_136_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£7">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_77_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_77_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Express">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_76_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_76_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Express">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_42_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_42_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Low">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_71_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.06"/>
		</rect>
	</element>
	<element name="lamp_71_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.13"/>
		</rect>
		<text string="Hi">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_22_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_22_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.25"/>
		</rect>
		<text string="Lose">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_19_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_19_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_18_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_18_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_20_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_20_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_21_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_21_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_16_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_16_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudge Now">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_186_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.12"/>
		</rect>
	</element>
	<element name="lamp_186_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.25"/>
		</rect>
		<text string="Lose">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_58_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_58_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Trail Held">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_79_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_79_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="By">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_78_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_78_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="By">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_81_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_81_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Matty.N">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_80_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_80_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Matty.N">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_246_1_border" defstate="0">
		<rect state="1">
			<color red="0.33" green="0.33" blue="0.33"/>
		</rect>
		<rect state="0">
			<color red="0.08" green="0.08" blue="0.08"/>
		</rect>
	</element>
	<element name="lamp_246_1" defstate="0">
		<rect state="1">
			<color red="0.67" green="0.67" blue="0.67"/>
		</rect>
		<rect state="0">
			<color red="0.16" green="0.16" blue="0.16"/>
		</rect>
		<text string="Light All 3 For Extra Life">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_233_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_233_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Mix 'n' Match">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_230_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_230_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Mix 'n' Match">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_232_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_232_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Jackpot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_231_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_231_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Jackpot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_218_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_218_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudge Nearest Bars">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_217_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_217_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Nudge Nearest Bars">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_221_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_221_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1 Cash KO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_220_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_220_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="1 Cash KO">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_225_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_225_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Turbo Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_224_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_224_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Turbo Win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_229_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_229_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Choose a win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_228_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_228_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Choose a win">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_227_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_227_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="6 Reel Blats">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_226_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_226_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="6 Reel Blats">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_216_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_216_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 Reel Blast's">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_215_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_215_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="3 Reel Blast's">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_212_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_212_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Super Cash Gamble">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_211_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_211_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="Super Cash Gamble">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_214_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_214_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2 Cash KO's">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_213_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_213_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.25" blue="0.00"/>
		</rect>
		<text string="2 Cash KO's">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_243_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_243_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Bullet">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_202_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_202_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="?">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_203_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_203_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="1 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_126_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_126_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_95_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_95_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_111_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_111_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Stampede">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_144_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_144_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+3 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_146_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_146_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="2 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudge">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_169_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_169_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="?">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_171_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_171_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Wheel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_28_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_28_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Plums">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£3">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_38_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_38_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Single Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£4">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_40_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_40_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Double Bar">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£5">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_41_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_41_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Triple BAr">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£10">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_23_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_23_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Cherries £1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_24_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_24_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Mixed bars">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£1.20">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_25_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_25_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Grapes">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£1.60">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_27_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_27_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Pears">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£2.40">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_26_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_26_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Melons">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_55_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_55_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="jackpot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_43_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_43_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="3 Bells">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="£25">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_85_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_85_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Wheel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_86_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_86_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Horse">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shoe">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_88_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_88_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Nudg">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_96_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_96_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+2">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shots">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_241_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_241_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Skill">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_236_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_236_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="Horse">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shoe">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_234_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_234_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+1 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Shot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_187_1_border" defstate="0">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.13"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.03"/>
		</rect>
	</element>
	<element name="lamp_187_1" defstate="0">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.06"/>
		</rect>
		<text string="+1 ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="lamp_105_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_105_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="£25">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="lamp_103_1_border" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="lamp_103_1" defstate="0">
		<rect state="1">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.00"/>
		</rect>
		<text string="Jackpot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_118_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_118">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.00"/>
		</rect>
		<text string="£1">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_119_border">
		<rect state="1">
			<color red="0.08" green="0.08" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.02" green="0.02" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_119">
		<rect state="1">
			<color red="0.17" green="0.17" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.04" green="0.04" blue="0.25"/>
		</rect>
		<text string="Collect ">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.45"/>
		</text>
		<text string="Cash">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.50" width="0.90" height="0.45"/>
		</text>
	</element>
	<element name="colour_button_120_border">
		<rect state="1">
			<color red="0.45" green="0.00" blue="0.45"/>
		</rect>
		<rect state="0">
			<color red="0.11" green="0.00" blue="0.11"/>
		</rect>
	</element>
	<element name="colour_button_120">
		<rect state="1">
			<color red="0.91" green="0.00" blue="0.91"/>
		</rect>
		<rect state="0">
			<color red="0.23" green="0.00" blue="0.23"/>
		</rect>
		<text string="Shoot">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_121_border">
		<rect state="1">
			<color red="0.08" green="0.08" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.02" green="0.02" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_121">
		<rect state="1">
			<color red="0.17" green="0.17" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.04" green="0.04" blue="0.25"/>
		</rect>
		<text string="Super spin">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_123_border">
		<rect state="1">
			<color red="0.00" green="0.25" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.06" blue="0.12"/>
		</rect>
	</element>
	<element name="colour_button_123">
		<rect state="1">
			<color red="0.00" green="0.50" blue="1.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.13" blue="0.25"/>
		</rect>
		<text string="Cancel">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_124_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_124">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="Hold">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_125_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_125">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="Hold / Hi">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_126_border">
		<rect state="1">
			<color red="0.50" green="0.25" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.06" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_126">
		<rect state="1">
			<color red="1.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.13" blue="0.00"/>
		</rect>
		<text string="Hold / lo">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_127_border">
		<rect state="1">
			<color red="0.00" green="0.50" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.12" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_127">
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.00" green="0.25" blue="0.00"/>
		</rect>
		<text string="Collect">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_128_border">
		<rect state="1">
			<color red="0.50" green="0.00" blue="0.25"/>
		</rect>
		<rect state="0">
			<color red="0.12" green="0.00" blue="0.06"/>
		</rect>
	</element>
	<element name="colour_button_128">
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.50"/>
		</rect>
		<rect state="0">
			<color red="0.25" green="0.00" blue="0.13"/>
		</rect>
		<text string="Exchange">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="colour_button_129_border">
		<rect state="1">
			<color red="0.43" green="0.22" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.11" green="0.05" blue="0.00"/>
		</rect>
	</element>
	<element name="colour_button_129">
		<rect state="1">
			<color red="0.87" green="0.44" blue="0.00"/>
		</rect>
		<rect state="0">
			<color red="0.22" green="0.11" blue="0.00"/>
		</rect>
		<text string="Start">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="reel_background">
		<rect>
			<color red="1.0" green="1.0" blue="1.0"/>
		</rect>
	</element>
	<element name="reel0" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel1" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel2" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel3" defstate="0">
		<reel reelreversed="1" stateoffset="-4779" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="reel4" defstate="0">
		<reel reelreversed="0" stateoffset="-4779" numsymbolsvisible="5" symbollist=",,,,,,,,,,,,,,,">
			<color red="0.0" green="0.0" blue="0.0"/>
		</reel>
	</element>
	<element name="led_background">
		<rect>
			<color red="0.4" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_on">
		<rect state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_on">
		<disk state="1">
			<color red="1.0" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_off">
		<rect state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_dot_off">
		<disk state="0">
			<color red="0.5" green="0.0" blue="0.0"/>
		</disk>
	</element>
	<element name="led_digit_rect_black">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_red">
		<rect>
			<color red="1.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_green">
		<rect>
			<color red="0.0" green="1.0" blue="0.0"/>
		</rect>
	</element>
	<element name="led_digit_rect_blue">
		<rect>
			<color red="0.0" green="0.0" blue="1.0"/>
		</rect>
	</element>
	<element name="led_digit_red">
		<led7seg>
			<color red="1.0" green="0.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_green">
		<led7seg>
			<color red="0.0" green="1.0" blue="0.0"/>
		</led7seg>
	</element>
	<element name="led_digit_blue">
		<led7seg>
			<color red="0.0" green="0.5" blue="1.0"/>
		</led7seg>
	</element>
	<element name="vfd0">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="vfd0_background">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="reel_lamp" defstate="0">
		<rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0"      height="1.0"/>      <color red="0.50" green="0.50" blue="0.50"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75"     height="0.75"/>     <color red="0.80" green="0.80" blue="0.80"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
		<disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
	</element>
	<element name="label_48">
		<text string="Credits">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="label_49">
		<text string="bank">
			<color red="0.0" green="0.0" blue="0.0"/>
			<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
		</text>
	</element>
	<element name="debug_backdrop_colour">
		<rect>
			<color red="0.0" green="0.0" blue="0.0"/>
		</rect>
	</element>
	<element name="debug_lamp_standard">
		<rect state="0">
			<color red="0.00" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_reel">
		<rect state="0">
			<color red="0.00" green="0.00" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="0.00" green="0.00" blue="1.00"/>
		</rect>
	</element>
	<element name="debug_lamp_segment">
		<rect state="0">
			<color red="0.20" green="0.00" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="0.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_button">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_lamp_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="256">
		<param name="n" start="0" increment="1"/>
		<element name="debug_lamp_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_button_standard">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.00"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="0.00"/>
		</rect>
	</element>
	<element name="debug_button_unreferenced">
		<rect state="0">
			<color red="0.20" green="0.20" blue="0.20"/>
		</rect>
		<rect state="1">
			<color red="1.00" green="1.00" blue="1.00"/>
		</rect>
	</element>
	<repeat count="64">
		<param name="n" start="0" increment="1"/>
		<element name="debug_button_label_~n~">
			<text string="~n~">
				<color red="0.0" green="0.0" blue="0.0"/>
				<bounds x="0.05" y="0.05" width="0.90" height="0.90"/>
			</text>
		</element>
	</repeat>
	<element name="debug_vfd">
		<led14segsc>
			<color red="0.0" green="1.0" blue="1.0"/>
		</led14segsc>
	</element>
	<element name="debug_stepper_value" defstate="0">
		<simplecounter maxstate="999" digits="3">
			<color red="1.0" green="1.0" blue="1.0"/>
		</simplecounter>
	</element>
	<element name="debug_reel_symbol_count_0">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_1">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_2">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_3">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>
	<element name="debug_reel_symbol_count_4">
		<text string="16">
			<color red="1.0" green="1.0" blue="1.0"/>
		</text>
	</element>

	<view name="AWP Simulated Video">
		<element ref="backdrop_colour">
			<bounds x="0" y="0" width="1098" height="702"/>
		</element>
		<element ref="reel_background">
			<bounds x="172" y="499" width="80" height="120"/>
		</element>
		<element name="lamp32" ref="reel_lamp" state="0">
			<bounds x="172.0000" y="499.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="172.0000" y="539.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp34" ref="reel_lamp" state="0">
			<bounds x="172.0000" y="579.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="172" y="499" width="80" height="120"/>
		</element>
		<element ref="reel_background">
			<bounds x="255" y="499" width="80" height="120"/>
		</element>
		<element name="lamp35" ref="reel_lamp" state="0">
			<bounds x="255.0000" y="499.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp36" ref="reel_lamp" state="0">
			<bounds x="255.0000" y="539.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp37" ref="reel_lamp" state="0">
			<bounds x="255.0000" y="579.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="255" y="499" width="80" height="120"/>
		</element>
		<element ref="reel_background">
			<bounds x="338" y="499" width="80" height="120"/>
		</element>
		<element name="lamp48" ref="reel_lamp" state="0">
			<bounds x="338.0000" y="499.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp49" ref="reel_lamp" state="0">
			<bounds x="338.0000" y="539.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="lamp50" ref="reel_lamp" state="0">
			<bounds x="338.0000" y="579.0000" width="80.0000" height="40.0000"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="338" y="499" width="80" height="120"/>
		</element>
		<element ref="reel_background">
			<bounds x="468" y="502" width="70" height="70"/>
		</element>
		<element name="lamp52" ref="reel_lamp" state="0">
			<bounds x="468.0000" y="502.0000" width="70.0000" height="70.0000"/>
		</element>
		<element name="sreel4" ref="reel3" state="0">
			<bounds x="468" y="502" width="70" height="70"/>
		</element>
		<element ref="reel_background">
			<bounds x="259" y="50" width="160" height="80"/>
		</element>
		<element name="lamp114" ref="reel_lamp" state="0">
			<bounds x="259.0000" y="50.0000" width="160.0000" height="16.0000"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="259.0000" y="66.0000" width="160.0000" height="16.0000"/>
		</element>
		<element name="lamp113" ref="reel_lamp" state="0">
			<bounds x="259.0000" y="82.0000" width="160.0000" height="16.0000"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="259.0000" y="98.0000" width="160.0000" height="16.0000"/>
		</element>
		<element name="lamp112" ref="reel_lamp" state="0">
			<bounds x="259.0000" y="114.0000" width="160.0000" height="16.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<orientation rotate="90"/>
			<bounds x="259" y="50" width="160" height="80"/>
		</element>
		<element name="lamp84" ref="lamp_84_1_border" state="0">
			<bounds x="182" y="52" width="77" height="47"/>
		</element>
		<element name="lamp84" ref="lamp_84_1" state="0">
			<bounds x="184" y="54" width="73" height="43"/>
		</element>
		<element name="lamp94" ref="lamp_94_1_border" state="0">
			<bounds x="182" y="101" width="77" height="47"/>
		</element>
		<element name="lamp94" ref="lamp_94_1" state="0">
			<bounds x="184" y="103" width="73" height="43"/>
		</element>
		<element name="lamp100" ref="lamp_100_1_border" state="0">
			<bounds x="419" y="101" width="77" height="47"/>
		</element>
		<element name="lamp100" ref="lamp_100_1" state="0">
			<bounds x="421" y="103" width="73" height="43"/>
		</element>
		<element name="lamp98" ref="lamp_98_1_border" state="0">
			<bounds x="419" y="52" width="77" height="47"/>
		</element>
		<element name="lamp98" ref="lamp_98_1" state="0">
			<bounds x="421" y="54" width="73" height="43"/>
		</element>
		<element name="lamp75" ref="lamp_75_1_border" state="0">
			<bounds x="1" y="3" width="126" height="50"/>
		</element>
		<element name="lamp75" ref="lamp_75_1" state="0">
			<bounds x="3" y="5" width="122" height="46"/>
		</element>
		<element name="lamp74" ref="lamp_74_1_border" state="0">
			<bounds x="1" y="3" width="126" height="50"/>
		</element>
		<element name="lamp74" ref="lamp_74_1" state="0">
			<bounds x="3" y="5" width="122" height="46"/>
		</element>
		<element name="lamp6" ref="lamp_6_1_border" state="0">
			<bounds x="621" y="584" width="57" height="32"/>
		</element>
		<element name="lamp6" ref="lamp_6_1" state="0">
			<bounds x="623" y="586" width="53" height="28"/>
		</element>
		<element name="lamp8" ref="lamp_8_1_border" state="0">
			<bounds x="621" y="584" width="57" height="32"/>
		</element>
		<element name="lamp8" ref="lamp_8_1" state="0">
			<bounds x="623" y="586" width="53" height="28"/>
		</element>
		<element name="lamp9" ref="lamp_9_1_border" state="0">
			<bounds x="621" y="552" width="57" height="32"/>
		</element>
		<element name="lamp9" ref="lamp_9_1" state="0">
			<bounds x="623" y="554" width="53" height="28"/>
		</element>
		<element name="lamp10" ref="lamp_10_1_border" state="0">
			<bounds x="621" y="552" width="57" height="32"/>
		</element>
		<element name="lamp10" ref="lamp_10_1" state="0">
			<bounds x="623" y="554" width="53" height="28"/>
		</element>
		<element name="lamp11" ref="lamp_11_1_border" state="0">
			<bounds x="621" y="520" width="57" height="32"/>
		</element>
		<element name="lamp11" ref="lamp_11_1" state="0">
			<bounds x="623" y="522" width="53" height="28"/>
		</element>
		<element name="lamp12" ref="lamp_12_1_border" state="0">
			<bounds x="621" y="520" width="57" height="32"/>
		</element>
		<element name="lamp12" ref="lamp_12_1" state="0">
			<bounds x="623" y="522" width="53" height="28"/>
		</element>
		<element name="lamp56" ref="lamp_56_1_border" state="0">
			<bounds x="621" y="488" width="57" height="32"/>
		</element>
		<element name="lamp56" ref="lamp_56_1" state="0">
			<bounds x="623" y="490" width="53" height="28"/>
		</element>
		<element name="lamp57" ref="lamp_57_1_border" state="0">
			<bounds x="621" y="488" width="57" height="32"/>
		</element>
		<element name="lamp57" ref="lamp_57_1" state="0">
			<bounds x="623" y="490" width="53" height="28"/>
		</element>
		<element name="lamp59" ref="lamp_59_1_border" state="0">
			<bounds x="621" y="456" width="57" height="32"/>
		</element>
		<element name="lamp59" ref="lamp_59_1" state="0">
			<bounds x="623" y="458" width="53" height="28"/>
		</element>
		<element name="lamp60" ref="lamp_60_1_border" state="0">
			<bounds x="621" y="456" width="57" height="32"/>
		</element>
		<element name="lamp60" ref="lamp_60_1" state="0">
			<bounds x="623" y="458" width="53" height="28"/>
		</element>
		<element name="lamp67" ref="lamp_67_1_border" state="0">
			<bounds x="621" y="424" width="57" height="32"/>
		</element>
		<element name="lamp67" ref="lamp_67_1" state="0">
			<bounds x="623" y="426" width="53" height="28"/>
		</element>
		<element name="lamp68" ref="lamp_68_1_border" state="0">
			<bounds x="621" y="424" width="57" height="32"/>
		</element>
		<element name="lamp68" ref="lamp_68_1" state="0">
			<bounds x="623" y="426" width="53" height="28"/>
		</element>
		<element name="lamp70" ref="lamp_70_1_border" state="0">
			<bounds x="621" y="392" width="57" height="32"/>
		</element>
		<element name="lamp70" ref="lamp_70_1" state="0">
			<bounds x="623" y="394" width="53" height="28"/>
		</element>
		<element name="lamp69" ref="lamp_69_1_border" state="0">
			<bounds x="621" y="392" width="57" height="32"/>
		</element>
		<element name="lamp69" ref="lamp_69_1" state="0">
			<bounds x="623" y="394" width="53" height="28"/>
		</element>
		<element name="lamp133" ref="lamp_133_1_border" state="0">
			<bounds x="651" y="133" width="47" height="22"/>
		</element>
		<element name="lamp133" ref="lamp_133_1" state="0">
			<bounds x="653" y="135" width="43" height="18"/>
		</element>
		<element name="lamp132" ref="lamp_132_1_border" state="0">
			<bounds x="651" y="133" width="47" height="22"/>
		</element>
		<element name="lamp132" ref="lamp_132_1" state="0">
			<bounds x="653" y="135" width="43" height="18"/>
		</element>
		<element name="lamp129" ref="lamp_129_1_border" state="0">
			<bounds x="651" y="112" width="47" height="22"/>
		</element>
		<element name="lamp129" ref="lamp_129_1" state="0">
			<bounds x="653" y="114" width="43" height="18"/>
		</element>
		<element name="lamp128" ref="lamp_128_1_border" state="0">
			<bounds x="651" y="112" width="47" height="22"/>
		</element>
		<element name="lamp128" ref="lamp_128_1" state="0">
			<bounds x="653" y="114" width="43" height="18"/>
		</element>
		<element name="lamp107" ref="lamp_107_1_border" state="0">
			<bounds x="651" y="91" width="47" height="22"/>
		</element>
		<element name="lamp107" ref="lamp_107_1" state="0">
			<bounds x="653" y="93" width="43" height="18"/>
		</element>
		<element name="lamp106" ref="lamp_106_1_border" state="0">
			<bounds x="651" y="91" width="47" height="22"/>
		</element>
		<element name="lamp106" ref="lamp_106_1" state="0">
			<bounds x="653" y="93" width="43" height="18"/>
		</element>
		<element name="lamp183" ref="lamp_183_1_border" state="0">
			<bounds x="651" y="367" width="47" height="22"/>
		</element>
		<element name="lamp183" ref="lamp_183_1" state="0">
			<bounds x="653" y="369" width="43" height="18"/>
		</element>
		<element name="lamp182" ref="lamp_182_1_border" state="0">
			<bounds x="651" y="367" width="47" height="22"/>
		</element>
		<element name="lamp182" ref="lamp_182_1" state="0">
			<bounds x="653" y="369" width="43" height="18"/>
		</element>
		<element name="lamp180" ref="lamp_180_1_border" state="0">
			<bounds x="651" y="345" width="47" height="22"/>
		</element>
		<element name="lamp180" ref="lamp_180_1" state="0">
			<bounds x="653" y="347" width="43" height="18"/>
		</element>
		<element name="lamp179" ref="lamp_179_1_border" state="0">
			<bounds x="651" y="345" width="47" height="22"/>
		</element>
		<element name="lamp179" ref="lamp_179_1" state="0">
			<bounds x="653" y="347" width="43" height="18"/>
		</element>
		<element name="lamp177" ref="lamp_177_1_border" state="0">
			<bounds x="651" y="324" width="47" height="22"/>
		</element>
		<element name="lamp177" ref="lamp_177_1" state="0">
			<bounds x="653" y="326" width="43" height="18"/>
		</element>
		<element name="lamp176" ref="lamp_176_1_border" state="0">
			<bounds x="651" y="324" width="47" height="22"/>
		</element>
		<element name="lamp176" ref="lamp_176_1" state="0">
			<bounds x="653" y="326" width="43" height="18"/>
		</element>
		<element name="lamp167" ref="lamp_167_1_border" state="0">
			<bounds x="651" y="302" width="47" height="22"/>
		</element>
		<element name="lamp167" ref="lamp_167_1" state="0">
			<bounds x="653" y="304" width="43" height="18"/>
		</element>
		<element name="lamp166" ref="lamp_166_1_border" state="0">
			<bounds x="651" y="302" width="47" height="22"/>
		</element>
		<element name="lamp166" ref="lamp_166_1" state="0">
			<bounds x="653" y="304" width="43" height="18"/>
		</element>
		<element name="lamp164" ref="lamp_164_1_border" state="0">
			<bounds x="651" y="281" width="47" height="22"/>
		</element>
		<element name="lamp164" ref="lamp_164_1" state="0">
			<bounds x="653" y="283" width="43" height="18"/>
		</element>
		<element name="lamp163" ref="lamp_163_1_border" state="0">
			<bounds x="651" y="281" width="47" height="22"/>
		</element>
		<element name="lamp163" ref="lamp_163_1" state="0">
			<bounds x="653" y="283" width="43" height="18"/>
		</element>
		<element name="lamp161" ref="lamp_161_1_border" state="0">
			<bounds x="651" y="260" width="47" height="22"/>
		</element>
		<element name="lamp161" ref="lamp_161_1" state="0">
			<bounds x="653" y="262" width="43" height="18"/>
		</element>
		<element name="lamp160" ref="lamp_160_1_border" state="0">
			<bounds x="651" y="260" width="47" height="22"/>
		</element>
		<element name="lamp160" ref="lamp_160_1" state="0">
			<bounds x="653" y="262" width="43" height="18"/>
		</element>
		<element name="lamp155" ref="lamp_155_1_border" state="0">
			<bounds x="651" y="239" width="47" height="22"/>
		</element>
		<element name="lamp155" ref="lamp_155_1" state="0">
			<bounds x="653" y="241" width="43" height="18"/>
		</element>
		<element name="lamp154" ref="lamp_154_1_border" state="0">
			<bounds x="651" y="239" width="47" height="22"/>
		</element>
		<element name="lamp154" ref="lamp_154_1" state="0">
			<bounds x="653" y="241" width="43" height="18"/>
		</element>
		<element name="lamp152" ref="lamp_152_1_border" state="0">
			<bounds x="651" y="218" width="47" height="22"/>
		</element>
		<element name="lamp152" ref="lamp_152_1" state="0">
			<bounds x="653" y="220" width="43" height="18"/>
		</element>
		<element name="lamp151" ref="lamp_151_1_border" state="0">
			<bounds x="651" y="218" width="47" height="22"/>
		</element>
		<element name="lamp151" ref="lamp_151_1" state="0">
			<bounds x="653" y="220" width="43" height="18"/>
		</element>
		<element name="lamp149" ref="lamp_149_1_border" state="0">
			<bounds x="651" y="197" width="47" height="22"/>
		</element>
		<element name="lamp149" ref="lamp_149_1" state="0">
			<bounds x="653" y="199" width="43" height="18"/>
		</element>
		<element name="lamp148" ref="lamp_148_1_border" state="0">
			<bounds x="651" y="197" width="47" height="22"/>
		</element>
		<element name="lamp148" ref="lamp_148_1" state="0">
			<bounds x="653" y="199" width="43" height="18"/>
		</element>
		<element name="lamp140" ref="lamp_140_1_border" state="0">
			<bounds x="651" y="176" width="47" height="22"/>
		</element>
		<element name="lamp140" ref="lamp_140_1" state="0">
			<bounds x="653" y="178" width="43" height="18"/>
		</element>
		<element name="lamp139" ref="lamp_139_1_border" state="0">
			<bounds x="651" y="176" width="47" height="22"/>
		</element>
		<element name="lamp139" ref="lamp_139_1" state="0">
			<bounds x="653" y="178" width="43" height="18"/>
		</element>
		<element name="lamp137" ref="lamp_137_1_border" state="0">
			<bounds x="651" y="154" width="47" height="22"/>
		</element>
		<element name="lamp137" ref="lamp_137_1" state="0">
			<bounds x="653" y="156" width="43" height="18"/>
		</element>
		<element name="lamp136" ref="lamp_136_1_border" state="0">
			<bounds x="651" y="154" width="47" height="22"/>
		</element>
		<element name="lamp136" ref="lamp_136_1" state="0">
			<bounds x="653" y="156" width="43" height="18"/>
		</element>
		<element name="lamp77" ref="lamp_77_1_border" state="0">
			<bounds x="15" y="61" width="126" height="50"/>
		</element>
		<element name="lamp77" ref="lamp_77_1" state="0">
			<bounds x="17" y="63" width="122" height="46"/>
		</element>
		<element name="lamp76" ref="lamp_76_1_border" state="0">
			<bounds x="15" y="61" width="126" height="50"/>
		</element>
		<element name="lamp76" ref="lamp_76_1" state="0">
			<bounds x="17" y="63" width="122" height="46"/>
		</element>
		<element name="lamp42" ref="lamp_42_1_border" state="0">
			<bounds x="486" y="573" width="32" height="32"/>
		</element>
		<element name="lamp42" ref="lamp_42_1" state="0">
			<bounds x="488" y="575" width="28" height="28"/>
		</element>
		<element name="lamp71" ref="lamp_71_1_border" state="0">
			<bounds x="486" y="469" width="32" height="32"/>
		</element>
		<element name="lamp71" ref="lamp_71_1" state="0">
			<bounds x="488" y="471" width="28" height="28"/>
		</element>
		<element name="lamp22" ref="lamp_22_1_border" state="0">
			<bounds x="82" y="590" width="37" height="27"/>
		</element>
		<element name="lamp22" ref="lamp_22_1" state="0">
			<bounds x="84" y="592" width="33" height="23"/>
		</element>
		<element name="lamp19" ref="lamp_19_1_border" state="0">
			<bounds x="49" y="521" width="32" height="32"/>
		</element>
		<element name="lamp19" ref="lamp_19_1" state="0">
			<bounds x="51" y="523" width="28" height="28"/>
		</element>
		<element name="lamp18" ref="lamp_18_1_border" state="0">
			<bounds x="49" y="489" width="32" height="32"/>
		</element>
		<element name="lamp18" ref="lamp_18_1" state="0">
			<bounds x="51" y="491" width="28" height="28"/>
		</element>
		<element name="lamp20" ref="lamp_20_1_border" state="0">
			<bounds x="49" y="553" width="32" height="32"/>
		</element>
		<element name="lamp20" ref="lamp_20_1" state="0">
			<bounds x="51" y="555" width="28" height="28"/>
		</element>
		<element name="lamp21" ref="lamp_21_1_border" state="0">
			<bounds x="49" y="585" width="32" height="32"/>
		</element>
		<element name="lamp21" ref="lamp_21_1" state="0">
			<bounds x="51" y="587" width="28" height="28"/>
		</element>
		<element name="lamp16" ref="lamp_16_1_border" state="0">
			<bounds x="39" y="459" width="56" height="29"/>
		</element>
		<element name="lamp16" ref="lamp_16_1" state="0">
			<bounds x="41" y="461" width="52" height="25"/>
		</element>
		<element name="lamp186" ref="lamp_186_1_border" state="0">
			<bounds x="579" y="391" width="34" height="22"/>
		</element>
		<element name="lamp186" ref="lamp_186_1" state="0">
			<bounds x="581" y="393" width="30" height="18"/>
		</element>
		<element name="lamp58" ref="lamp_58_1_border" state="0">
			<bounds x="563" y="547" width="42" height="42"/>
		</element>
		<element name="lamp58" ref="lamp_58_1" state="0">
			<bounds x="565" y="549" width="38" height="38"/>
		</element>
		<element name="lamp79" ref="lamp_79_1_border" state="0">
			<bounds x="29" y="119" width="126" height="50"/>
		</element>
		<element name="lamp79" ref="lamp_79_1" state="0">
			<bounds x="31" y="121" width="122" height="46"/>
		</element>
		<element name="lamp78" ref="lamp_78_1_border" state="0">
			<bounds x="29" y="119" width="126" height="50"/>
		</element>
		<element name="lamp78" ref="lamp_78_1" state="0">
			<bounds x="31" y="121" width="122" height="46"/>
		</element>
		<element name="lamp81" ref="lamp_81_1_border" state="0">
			<bounds x="45" y="177" width="126" height="50"/>
		</element>
		<element name="lamp81" ref="lamp_81_1" state="0">
			<bounds x="47" y="179" width="122" height="46"/>
		</element>
		<element name="lamp80" ref="lamp_80_1_border" state="0">
			<bounds x="45" y="177" width="126" height="50"/>
		</element>
		<element name="lamp80" ref="lamp_80_1" state="0">
			<bounds x="47" y="179" width="122" height="46"/>
		</element>
		<element name="lamp246" ref="lamp_246_1_border" state="0">
			<bounds x="47" y="338" width="82" height="52"/>
		</element>
		<element name="lamp246" ref="lamp_246_1" state="0">
			<bounds x="49" y="340" width="78" height="48"/>
		</element>
		<element name="lamp233" ref="lamp_233_1_border" state="0">
			<bounds x="259" y="353" width="52" height="42"/>
		</element>
		<element name="lamp233" ref="lamp_233_1" state="0">
			<bounds x="261" y="355" width="48" height="38"/>
		</element>
		<element name="lamp230" ref="lamp_230_1_border" state="0">
			<bounds x="259" y="353" width="52" height="42"/>
		</element>
		<element name="lamp230" ref="lamp_230_1" state="0">
			<bounds x="261" y="355" width="48" height="38"/>
		</element>
		<element name="lamp232" ref="lamp_232_1_border" state="0">
			<bounds x="259" y="311" width="52" height="42"/>
		</element>
		<element name="lamp232" ref="lamp_232_1" state="0">
			<bounds x="261" y="313" width="48" height="38"/>
		</element>
		<element name="lamp231" ref="lamp_231_1_border" state="0">
			<bounds x="259" y="311" width="52" height="42"/>
		</element>
		<element name="lamp231" ref="lamp_231_1" state="0">
			<bounds x="261" y="313" width="48" height="38"/>
		</element>
		<element name="lamp218" ref="lamp_218_1_border" state="0">
			<bounds x="259" y="227" width="52" height="42"/>
		</element>
		<element name="lamp218" ref="lamp_218_1" state="0">
			<bounds x="261" y="229" width="48" height="38"/>
		</element>
		<element name="lamp217" ref="lamp_217_1_border" state="0">
			<bounds x="259" y="227" width="52" height="42"/>
		</element>
		<element name="lamp217" ref="lamp_217_1" state="0">
			<bounds x="261" y="229" width="48" height="38"/>
		</element>
		<element name="lamp221" ref="lamp_221_1_border" state="0">
			<bounds x="259" y="269" width="52" height="42"/>
		</element>
		<element name="lamp221" ref="lamp_221_1" state="0">
			<bounds x="261" y="271" width="48" height="38"/>
		</element>
		<element name="lamp220" ref="lamp_220_1_border" state="0">
			<bounds x="259" y="269" width="52" height="42"/>
		</element>
		<element name="lamp220" ref="lamp_220_1" state="0">
			<bounds x="261" y="271" width="48" height="38"/>
		</element>
		<element name="lamp225" ref="lamp_225_1_border" state="0">
			<bounds x="365" y="311" width="52" height="42"/>
		</element>
		<element name="lamp225" ref="lamp_225_1" state="0">
			<bounds x="367" y="313" width="48" height="38"/>
		</element>
		<element name="lamp224" ref="lamp_224_1_border" state="0">
			<bounds x="365" y="311" width="52" height="42"/>
		</element>
		<element name="lamp224" ref="lamp_224_1" state="0">
			<bounds x="367" y="313" width="48" height="38"/>
		</element>
		<element name="lamp229" ref="lamp_229_1_border" state="0">
			<bounds x="312" y="353" width="52" height="42"/>
		</element>
		<element name="lamp229" ref="lamp_229_1" state="0">
			<bounds x="314" y="355" width="48" height="38"/>
		</element>
		<element name="lamp228" ref="lamp_228_1_border" state="0">
			<bounds x="312" y="353" width="52" height="42"/>
		</element>
		<element name="lamp228" ref="lamp_228_1" state="0">
			<bounds x="314" y="355" width="48" height="38"/>
		</element>
		<element name="lamp227" ref="lamp_227_1_border" state="0">
			<bounds x="365" y="353" width="52" height="42"/>
		</element>
		<element name="lamp227" ref="lamp_227_1" state="0">
			<bounds x="367" y="355" width="48" height="38"/>
		</element>
		<element name="lamp226" ref="lamp_226_1_border" state="0">
			<bounds x="365" y="353" width="52" height="42"/>
		</element>
		<element name="lamp226" ref="lamp_226_1" state="0">
			<bounds x="367" y="355" width="48" height="38"/>
		</element>
		<element name="lamp216" ref="lamp_216_1_border" state="0">
			<bounds x="312" y="227" width="52" height="42"/>
		</element>
		<element name="lamp216" ref="lamp_216_1" state="0">
			<bounds x="314" y="229" width="48" height="38"/>
		</element>
		<element name="lamp215" ref="lamp_215_1_border" state="0">
			<bounds x="312" y="227" width="52" height="42"/>
		</element>
		<element name="lamp215" ref="lamp_215_1" state="0">
			<bounds x="314" y="229" width="48" height="38"/>
		</element>
		<element name="lamp212" ref="lamp_212_1_border" state="0">
			<bounds x="365" y="227" width="52" height="42"/>
		</element>
		<element name="lamp212" ref="lamp_212_1" state="0">
			<bounds x="367" y="229" width="48" height="38"/>
		</element>
		<element name="lamp211" ref="lamp_211_1_border" state="0">
			<bounds x="365" y="227" width="52" height="42"/>
		</element>
		<element name="lamp211" ref="lamp_211_1" state="0">
			<bounds x="367" y="229" width="48" height="38"/>
		</element>
		<element name="lamp214" ref="lamp_214_1_border" state="0">
			<bounds x="365" y="269" width="52" height="42"/>
		</element>
		<element name="lamp214" ref="lamp_214_1" state="0">
			<bounds x="367" y="271" width="48" height="38"/>
		</element>
		<element name="lamp213" ref="lamp_213_1_border" state="0">
			<bounds x="365" y="269" width="52" height="42"/>
		</element>
		<element name="lamp213" ref="lamp_213_1" state="0">
			<bounds x="367" y="271" width="48" height="38"/>
		</element>
		<element name="lamp243" ref="lamp_243_1_border" state="0">
			<bounds x="182" y="346" width="77" height="47"/>
		</element>
		<element name="lamp243" ref="lamp_243_1" state="0">
			<bounds x="184" y="348" width="73" height="43"/>
		</element>
		<element name="lamp202" ref="lamp_202_1_border" state="0">
			<bounds x="182" y="297" width="77" height="47"/>
		</element>
		<element name="lamp202" ref="lamp_202_1" state="0">
			<bounds x="184" y="299" width="73" height="43"/>
		</element>
		<element name="lamp203" ref="lamp_203_1_border" state="0">
			<bounds x="182" y="248" width="77" height="47"/>
		</element>
		<element name="lamp203" ref="lamp_203_1" state="0">
			<bounds x="184" y="250" width="73" height="43"/>
		</element>
		<element name="lamp126" ref="lamp_126_1_border" state="0">
			<bounds x="182" y="199" width="77" height="47"/>
		</element>
		<element name="lamp126" ref="lamp_126_1" state="0">
			<bounds x="184" y="201" width="73" height="43"/>
		</element>
		<element name="lamp95" ref="lamp_95_1_border" state="0">
			<bounds x="182" y="150" width="77" height="47"/>
		</element>
		<element name="lamp95" ref="lamp_95_1" state="0">
			<bounds x="184" y="152" width="73" height="43"/>
		</element>
		<element name="lamp111" ref="lamp_111_1_border" state="0">
			<bounds x="419" y="150" width="77" height="47"/>
		</element>
		<element name="lamp111" ref="lamp_111_1" state="0">
			<bounds x="421" y="152" width="73" height="43"/>
		</element>
		<element name="lamp144" ref="lamp_144_1_border" state="0">
			<bounds x="419" y="199" width="77" height="47"/>
		</element>
		<element name="lamp144" ref="lamp_144_1" state="0">
			<bounds x="421" y="201" width="73" height="43"/>
		</element>
		<element name="lamp146" ref="lamp_146_1_border" state="0">
			<bounds x="419" y="248" width="77" height="47"/>
		</element>
		<element name="lamp146" ref="lamp_146_1" state="0">
			<bounds x="421" y="250" width="73" height="43"/>
		</element>
		<element name="lamp169" ref="lamp_169_1_border" state="0">
			<bounds x="419" y="297" width="77" height="47"/>
		</element>
		<element name="lamp169" ref="lamp_169_1" state="0">
			<bounds x="421" y="299" width="73" height="43"/>
		</element>
		<element name="lamp171" ref="lamp_171_1_border" state="0">
			<bounds x="419" y="346" width="77" height="47"/>
		</element>
		<element name="lamp171" ref="lamp_171_1" state="0">
			<bounds x="421" y="348" width="73" height="43"/>
		</element>
		<element name="lamp28" ref="lamp_28_1_border" state="0">
			<bounds x="461" y="652" width="72" height="47"/>
		</element>
		<element name="lamp28" ref="lamp_28_1" state="0">
			<bounds x="463" y="654" width="68" height="43"/>
		</element>
		<element name="lamp38" ref="lamp_38_1_border" state="0">
			<bounds x="533" y="652" width="72" height="47"/>
		</element>
		<element name="lamp38" ref="lamp_38_1" state="0">
			<bounds x="535" y="654" width="68" height="43"/>
		</element>
		<element name="lamp40" ref="lamp_40_1_border" state="0">
			<bounds x="605" y="652" width="72" height="47"/>
		</element>
		<element name="lamp40" ref="lamp_40_1" state="0">
			<bounds x="607" y="654" width="68" height="43"/>
		</element>
		<element name="lamp41" ref="lamp_41_1_border" state="0">
			<bounds x="677" y="652" width="72" height="47"/>
		</element>
		<element name="lamp41" ref="lamp_41_1" state="0">
			<bounds x="679" y="654" width="68" height="43"/>
		</element>
		<element name="lamp23" ref="lamp_23_1_border" state="0">
			<bounds x="101" y="652" width="72" height="47"/>
		</element>
		<element name="lamp23" ref="lamp_23_1" state="0">
			<bounds x="103" y="654" width="68" height="43"/>
		</element>
		<element name="lamp24" ref="lamp_24_1_border" state="0">
			<bounds x="173" y="652" width="72" height="47"/>
		</element>
		<element name="lamp24" ref="lamp_24_1" state="0">
			<bounds x="175" y="654" width="68" height="43"/>
		</element>
		<element name="lamp25" ref="lamp_25_1_border" state="0">
			<bounds x="245" y="652" width="72" height="47"/>
		</element>
		<element name="lamp25" ref="lamp_25_1" state="0">
			<bounds x="247" y="654" width="68" height="43"/>
		</element>
		<element name="lamp27" ref="lamp_27_1_border" state="0">
			<bounds x="389" y="652" width="72" height="47"/>
		</element>
		<element name="lamp27" ref="lamp_27_1" state="0">
			<bounds x="391" y="654" width="68" height="43"/>
		</element>
		<element name="lamp26" ref="lamp_26_1_border" state="0">
			<bounds x="317" y="652" width="72" height="47"/>
		</element>
		<element name="lamp26" ref="lamp_26_1" state="0">
			<bounds x="319" y="654" width="68" height="43"/>
		</element>
		<element name="lamp55" ref="lamp_55_1_border" state="0">
			<bounds x="713" y="573" width="72" height="27"/>
		</element>
		<element name="lamp55" ref="lamp_55_1" state="0">
			<bounds x="715" y="575" width="68" height="23"/>
		</element>
		<element name="lamp43" ref="lamp_43_1_border" state="0">
			<bounds x="713" y="600" width="72" height="47"/>
		</element>
		<element name="lamp43" ref="lamp_43_1" state="0">
			<bounds x="715" y="602" width="68" height="43"/>
		</element>
		<element name="lamp85" ref="lamp_85_1_border" state="0">
			<bounds x="182" y="3" width="77" height="47"/>
		</element>
		<element name="lamp85" ref="lamp_85_1" state="0">
			<bounds x="184" y="5" width="73" height="43"/>
		</element>
		<element name="lamp86" ref="lamp_86_1_border" state="0">
			<bounds x="261" y="3" width="77" height="47"/>
		</element>
		<element name="lamp86" ref="lamp_86_1" state="0">
			<bounds x="263" y="5" width="73" height="43"/>
		</element>
		<element name="lamp88" ref="lamp_88_1_border" state="0">
			<bounds x="340" y="3" width="77" height="47"/>
		</element>
		<element name="lamp88" ref="lamp_88_1" state="0">
			<bounds x="342" y="5" width="73" height="43"/>
		</element>
		<element name="lamp96" ref="lamp_96_1_border" state="0">
			<bounds x="419" y="3" width="77" height="47"/>
		</element>
		<element name="lamp96" ref="lamp_96_1" state="0">
			<bounds x="421" y="5" width="73" height="43"/>
		</element>
		<element name="lamp241" ref="lamp_241_1_border" state="0">
			<bounds x="182" y="395" width="77" height="47"/>
		</element>
		<element name="lamp241" ref="lamp_241_1" state="0">
			<bounds x="184" y="397" width="73" height="43"/>
		</element>
		<element name="lamp236" ref="lamp_236_1_border" state="0">
			<bounds x="261" y="395" width="77" height="47"/>
		</element>
		<element name="lamp236" ref="lamp_236_1" state="0">
			<bounds x="263" y="397" width="73" height="43"/>
		</element>
		<element name="lamp234" ref="lamp_234_1_border" state="0">
			<bounds x="340" y="395" width="77" height="47"/>
		</element>
		<element name="lamp234" ref="lamp_234_1" state="0">
			<bounds x="342" y="397" width="73" height="43"/>
		</element>
		<element name="lamp187" ref="lamp_187_1_border" state="0">
			<bounds x="419" y="395" width="77" height="47"/>
		</element>
		<element name="lamp187" ref="lamp_187_1" state="0">
			<bounds x="421" y="397" width="73" height="43"/>
		</element>
		<element name="lamp105" ref="lamp_105_1_border" state="0">
			<bounds x="589" y="16" width="117" height="52"/>
		</element>
		<element name="lamp105" ref="lamp_105_1" state="0">
			<bounds x="591" y="18" width="113" height="48"/>
		</element>
		<element name="lamp103" ref="lamp_103_1_border" state="0">
			<bounds x="589" y="69" width="117" height="19"/>
		</element>
		<element name="lamp103" ref="lamp_103_1" state="0">
			<bounds x="591" y="71" width="113" height="15"/>
		</element>
		<element name="lamp-1" ref="colour_button_118_border" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="755" y="11" width="42" height="42"/>
		</element>
		<element name="lamp-1" ref="colour_button_118" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="757" y="13" width="38" height="38"/>
		</element>
		<element name="lamp185" ref="colour_button_119_border" state="0" inputtag="IN-8" inputmask="0x01">
			<bounds x="515" y="419" width="62" height="37"/>
		</element>
		<element name="lamp185" ref="colour_button_119" state="0" inputtag="IN-8" inputmask="0x01">
			<bounds x="517" y="421" width="58" height="33"/>
		</element>
		<element name="lamp219" ref="colour_button_120_border" state="0" inputtag="IN-8" inputmask="0x02">
			<bounds x="312" y="275" width="52" height="27"/>
		</element>
		<element name="lamp219" ref="colour_button_120" state="0" inputtag="IN-8" inputmask="0x02">
			<bounds x="314" y="277" width="48" height="23"/>
		</element>
		<element name="lamp125" ref="colour_button_121_border" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="301" y="130" width="75" height="27"/>
		</element>
		<element name="lamp125" ref="colour_button_121" state="0" inputtag="IN-8" inputmask="0x04">
			<bounds x="303" y="132" width="71" height="23"/>
		</element>
		<element name="lamp0" ref="colour_button_123_border" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="100" y="623" width="78" height="25"/>
		</element>
		<element name="lamp0" ref="colour_button_123" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="102" y="625" width="74" height="21"/>
		</element>
		<element name="lamp1" ref="colour_button_124_border" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="178" y="623" width="78" height="25"/>
		</element>
		<element name="lamp1" ref="colour_button_124" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="180" y="625" width="74" height="21"/>
		</element>
		<element name="lamp2" ref="colour_button_125_border" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="256" y="623" width="78" height="25"/>
		</element>
		<element name="lamp2" ref="colour_button_125" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="258" y="625" width="74" height="21"/>
		</element>
		<element name="lamp3" ref="colour_button_126_border" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="334" y="623" width="78" height="25"/>
		</element>
		<element name="lamp3" ref="colour_button_126" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="336" y="625" width="74" height="21"/>
		</element>
		<element name="lamp4" ref="colour_button_127_border" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="412" y="623" width="78" height="25"/>
		</element>
		<element name="lamp4" ref="colour_button_127" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="414" y="625" width="74" height="21"/>
		</element>
		<element name="lamp5" ref="colour_button_128_border" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="490" y="623" width="78" height="25"/>
		</element>
		<element name="lamp5" ref="colour_button_128" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="492" y="625" width="74" height="21"/>
		</element>
		<element name="lamp7" ref="colour_button_129_border" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="568" y="623" width="78" height="25"/>
		</element>
		<element name="lamp7" ref="colour_button_129" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="570" y="625" width="74" height="21"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="314" y="317" width="24" height="32"/>
		</element>
		<element name="digit2" ref="led_digit_red">
			<bounds x="314" y="317" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="314" y="317" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="led_digit_rect_black">
			<bounds x="338" y="317" width="24" height="32"/>
		</element>
		<element name="digit0" ref="led_digit_red">
			<bounds x="338" y="317" width="24" height="32"/>
		</element>
		<element ref="led_digit_rect_red">
			<bounds x="338" y="317" width="24" height="32"/>
			<color alpha="0.1"/>
		</element>
		<element ref="vfd0_background">
			<bounds x="187" y="468" width="227" height="20"/>
		</element>
		<element name="vfd0" ref="vfd0" state="0">
			<bounds x="187" y="468" width="14" height="20"/>
		</element>
		<element name="vfd1" ref="vfd0" state="0">
			<bounds x="201" y="468" width="14" height="20"/>
		</element>
		<element name="vfd2" ref="vfd0" state="0">
			<bounds x="215" y="468" width="14" height="20"/>
		</element>
		<element name="vfd3" ref="vfd0" state="0">
			<bounds x="229" y="468" width="14" height="20"/>
		</element>
		<element name="vfd4" ref="vfd0" state="0">
			<bounds x="243" y="468" width="14" height="20"/>
		</element>
		<element name="vfd5" ref="vfd0" state="0">
			<bounds x="257" y="468" width="14" height="20"/>
		</element>
		<element name="vfd6" ref="vfd0" state="0">
			<bounds x="271" y="468" width="14" height="20"/>
		</element>
		<element name="vfd7" ref="vfd0" state="0">
			<bounds x="285" y="468" width="14" height="20"/>
		</element>
		<element name="vfd8" ref="vfd0" state="0">
			<bounds x="299" y="468" width="14" height="20"/>
		</element>
		<element name="vfd9" ref="vfd0" state="0">
			<bounds x="313" y="468" width="14" height="20"/>
		</element>
		<element name="vfd10" ref="vfd0" state="0">
			<bounds x="327" y="468" width="14" height="20"/>
		</element>
		<element name="vfd11" ref="vfd0" state="0">
			<bounds x="341" y="468" width="14" height="20"/>
		</element>
		<element name="vfd12" ref="vfd0" state="0">
			<bounds x="355" y="468" width="14" height="20"/>
		</element>
		<element name="vfd13" ref="vfd0" state="0">
			<bounds x="369" y="468" width="14" height="20"/>
		</element>
		<element name="vfd14" ref="vfd0" state="0">
			<bounds x="383" y="468" width="14" height="20"/>
		</element>
		<element name="vfd15" ref="vfd0" state="0">
			<bounds x="397" y="468" width="14" height="20"/>
		</element>
		<element name="label48" ref="label_48">
			<bounds x="366" y="450" width="41" height="14"/>
		</element>
		<element name="label49" ref="label_49">
			<bounds x="188" y="450" width="27" height="14"/>
		</element>
	</view>

	<view name="MFME2MAME Debug">
		<element ref="debug_backdrop_colour">
			<bounds x="0" y="0" width="1920" height="1080"/>
		</element>
		<element name="lamp0" ref="debug_lamp_button" state="0">
			<bounds x="32" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_0" ref="debug_lamp_label_0">
			<bounds x="47" y="47" width="30" height="30"/>
		</element>
		<element name="lamp1" ref="debug_lamp_button" state="0">
			<bounds x="96" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_1" ref="debug_lamp_label_1">
			<bounds x="111" y="47" width="30" height="30"/>
		</element>
		<element name="lamp2" ref="debug_lamp_button" state="0">
			<bounds x="160" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_2" ref="debug_lamp_label_2">
			<bounds x="175" y="47" width="30" height="30"/>
		</element>
		<element name="lamp3" ref="debug_lamp_button" state="0">
			<bounds x="224" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_3" ref="debug_lamp_label_3">
			<bounds x="239" y="47" width="30" height="30"/>
		</element>
		<element name="lamp4" ref="debug_lamp_button" state="0">
			<bounds x="288" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_4" ref="debug_lamp_label_4">
			<bounds x="303" y="47" width="30" height="30"/>
		</element>
		<element name="lamp5" ref="debug_lamp_button" state="0">
			<bounds x="352" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_5" ref="debug_lamp_label_5">
			<bounds x="367" y="47" width="30" height="30"/>
		</element>
		<element name="lamp6" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_6" ref="debug_lamp_label_6">
			<bounds x="431" y="47" width="30" height="30"/>
		</element>
		<element name="lamp7" ref="debug_lamp_button" state="0">
			<bounds x="480" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_7" ref="debug_lamp_label_7">
			<bounds x="495" y="47" width="30" height="30"/>
		</element>
		<element name="lamp8" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_8" ref="debug_lamp_label_8">
			<bounds x="559" y="47" width="30" height="30"/>
		</element>
		<element name="lamp9" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_9" ref="debug_lamp_label_9">
			<bounds x="623" y="47" width="30" height="30"/>
		</element>
		<element name="lamp10" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_10" ref="debug_lamp_label_10">
			<bounds x="687" y="47" width="30" height="30"/>
		</element>
		<element name="lamp11" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_11" ref="debug_lamp_label_11">
			<bounds x="751" y="47" width="30" height="30"/>
		</element>
		<element name="lamp12" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_12" ref="debug_lamp_label_12">
			<bounds x="815" y="47" width="30" height="30"/>
		</element>
		<element name="lamp13" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_13" ref="debug_lamp_label_13">
			<bounds x="879" y="47" width="30" height="30"/>
		</element>
		<element name="lamp14" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_14" ref="debug_lamp_label_14">
			<bounds x="943" y="47" width="30" height="30"/>
		</element>
		<element name="lamp15" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="32" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_15" ref="debug_lamp_label_15">
			<bounds x="1007" y="47" width="30" height="30"/>
		</element>
		<element name="lamp16" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_16" ref="debug_lamp_label_16">
			<bounds x="47" y="111" width="30" height="30"/>
		</element>
		<element name="lamp17" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_17" ref="debug_lamp_label_17">
			<bounds x="111" y="111" width="30" height="30"/>
		</element>
		<element name="lamp18" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_18" ref="debug_lamp_label_18">
			<bounds x="175" y="111" width="30" height="30"/>
		</element>
		<element name="lamp19" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_19" ref="debug_lamp_label_19">
			<bounds x="239" y="111" width="30" height="30"/>
		</element>
		<element name="lamp20" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_20" ref="debug_lamp_label_20">
			<bounds x="303" y="111" width="30" height="30"/>
		</element>
		<element name="lamp21" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_21" ref="debug_lamp_label_21">
			<bounds x="367" y="111" width="30" height="30"/>
		</element>
		<element name="lamp22" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_22" ref="debug_lamp_label_22">
			<bounds x="431" y="111" width="30" height="30"/>
		</element>
		<element name="lamp23" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_23" ref="debug_lamp_label_23">
			<bounds x="495" y="111" width="30" height="30"/>
		</element>
		<element name="lamp24" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_24" ref="debug_lamp_label_24">
			<bounds x="559" y="111" width="30" height="30"/>
		</element>
		<element name="lamp25" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_25" ref="debug_lamp_label_25">
			<bounds x="623" y="111" width="30" height="30"/>
		</element>
		<element name="lamp26" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_26" ref="debug_lamp_label_26">
			<bounds x="687" y="111" width="30" height="30"/>
		</element>
		<element name="lamp27" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_27" ref="debug_lamp_label_27">
			<bounds x="751" y="111" width="30" height="30"/>
		</element>
		<element name="lamp28" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_28" ref="debug_lamp_label_28">
			<bounds x="815" y="111" width="30" height="30"/>
		</element>
		<element name="lamp29" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_29" ref="debug_lamp_label_29">
			<bounds x="879" y="111" width="30" height="30"/>
		</element>
		<element name="lamp30" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_30" ref="debug_lamp_label_30">
			<bounds x="943" y="111" width="30" height="30"/>
		</element>
		<element name="lamp31" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="96" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_31" ref="debug_lamp_label_31">
			<bounds x="1007" y="111" width="30" height="30"/>
		</element>
		<element name="lamp32" ref="debug_lamp_reel" state="0">
			<bounds x="32" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_32" ref="debug_lamp_label_32">
			<bounds x="47" y="175" width="30" height="30"/>
		</element>
		<element name="lamp33" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_33" ref="debug_lamp_label_33">
			<bounds x="111" y="175" width="30" height="30"/>
		</element>
		<element name="lamp34" ref="debug_lamp_reel" state="0">
			<bounds x="160" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_34" ref="debug_lamp_label_34">
			<bounds x="175" y="175" width="30" height="30"/>
		</element>
		<element name="lamp35" ref="debug_lamp_reel" state="0">
			<bounds x="224" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_35" ref="debug_lamp_label_35">
			<bounds x="239" y="175" width="30" height="30"/>
		</element>
		<element name="lamp36" ref="debug_lamp_reel" state="0">
			<bounds x="288" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_36" ref="debug_lamp_label_36">
			<bounds x="303" y="175" width="30" height="30"/>
		</element>
		<element name="lamp37" ref="debug_lamp_reel" state="0">
			<bounds x="352" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_37" ref="debug_lamp_label_37">
			<bounds x="367" y="175" width="30" height="30"/>
		</element>
		<element name="lamp38" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_38" ref="debug_lamp_label_38">
			<bounds x="431" y="175" width="30" height="30"/>
		</element>
		<element name="lamp39" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_39" ref="debug_lamp_label_39">
			<bounds x="495" y="175" width="30" height="30"/>
		</element>
		<element name="lamp40" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_40" ref="debug_lamp_label_40">
			<bounds x="559" y="175" width="30" height="30"/>
		</element>
		<element name="lamp41" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_41" ref="debug_lamp_label_41">
			<bounds x="623" y="175" width="30" height="30"/>
		</element>
		<element name="lamp42" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_42" ref="debug_lamp_label_42">
			<bounds x="687" y="175" width="30" height="30"/>
		</element>
		<element name="lamp43" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_43" ref="debug_lamp_label_43">
			<bounds x="751" y="175" width="30" height="30"/>
		</element>
		<element name="lamp44" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_44" ref="debug_lamp_label_44">
			<bounds x="815" y="175" width="30" height="30"/>
		</element>
		<element name="lamp45" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_45" ref="debug_lamp_label_45">
			<bounds x="879" y="175" width="30" height="30"/>
		</element>
		<element name="lamp46" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_46" ref="debug_lamp_label_46">
			<bounds x="943" y="175" width="30" height="30"/>
		</element>
		<element name="lamp47" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="160" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_47" ref="debug_lamp_label_47">
			<bounds x="1007" y="175" width="30" height="30"/>
		</element>
		<element name="lamp48" ref="debug_lamp_reel" state="0">
			<bounds x="32" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_48" ref="debug_lamp_label_48">
			<bounds x="47" y="239" width="30" height="30"/>
		</element>
		<element name="lamp49" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_49" ref="debug_lamp_label_49">
			<bounds x="111" y="239" width="30" height="30"/>
		</element>
		<element name="lamp50" ref="debug_lamp_reel" state="0">
			<bounds x="160" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_50" ref="debug_lamp_label_50">
			<bounds x="175" y="239" width="30" height="30"/>
		</element>
		<element name="lamp51" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_51" ref="debug_lamp_label_51">
			<bounds x="239" y="239" width="30" height="30"/>
		</element>
		<element name="lamp52" ref="debug_lamp_reel" state="0">
			<bounds x="288" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_52" ref="debug_lamp_label_52">
			<bounds x="303" y="239" width="30" height="30"/>
		</element>
		<element name="lamp53" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_53" ref="debug_lamp_label_53">
			<bounds x="367" y="239" width="30" height="30"/>
		</element>
		<element name="lamp54" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_54" ref="debug_lamp_label_54">
			<bounds x="431" y="239" width="30" height="30"/>
		</element>
		<element name="lamp55" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_55" ref="debug_lamp_label_55">
			<bounds x="495" y="239" width="30" height="30"/>
		</element>
		<element name="lamp56" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_56" ref="debug_lamp_label_56">
			<bounds x="559" y="239" width="30" height="30"/>
		</element>
		<element name="lamp57" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_57" ref="debug_lamp_label_57">
			<bounds x="623" y="239" width="30" height="30"/>
		</element>
		<element name="lamp58" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_58" ref="debug_lamp_label_58">
			<bounds x="687" y="239" width="30" height="30"/>
		</element>
		<element name="lamp59" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_59" ref="debug_lamp_label_59">
			<bounds x="751" y="239" width="30" height="30"/>
		</element>
		<element name="lamp60" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_60" ref="debug_lamp_label_60">
			<bounds x="815" y="239" width="30" height="30"/>
		</element>
		<element name="lamp61" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_61" ref="debug_lamp_label_61">
			<bounds x="879" y="239" width="30" height="30"/>
		</element>
		<element name="lamp62" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_62" ref="debug_lamp_label_62">
			<bounds x="943" y="239" width="30" height="30"/>
		</element>
		<element name="lamp63" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="224" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_63" ref="debug_lamp_label_63">
			<bounds x="1007" y="239" width="30" height="30"/>
		</element>
		<element name="lamp64" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_64" ref="debug_lamp_label_64">
			<bounds x="47" y="303" width="30" height="30"/>
		</element>
		<element name="lamp65" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_65" ref="debug_lamp_label_65">
			<bounds x="111" y="303" width="30" height="30"/>
		</element>
		<element name="lamp66" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_66" ref="debug_lamp_label_66">
			<bounds x="175" y="303" width="30" height="30"/>
		</element>
		<element name="lamp67" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_67" ref="debug_lamp_label_67">
			<bounds x="239" y="303" width="30" height="30"/>
		</element>
		<element name="lamp68" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_68" ref="debug_lamp_label_68">
			<bounds x="303" y="303" width="30" height="30"/>
		</element>
		<element name="lamp69" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_69" ref="debug_lamp_label_69">
			<bounds x="367" y="303" width="30" height="30"/>
		</element>
		<element name="lamp70" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_70" ref="debug_lamp_label_70">
			<bounds x="431" y="303" width="30" height="30"/>
		</element>
		<element name="lamp71" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_71" ref="debug_lamp_label_71">
			<bounds x="495" y="303" width="30" height="30"/>
		</element>
		<element name="lamp72" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_72" ref="debug_lamp_label_72">
			<bounds x="559" y="303" width="30" height="30"/>
		</element>
		<element name="lamp73" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_73" ref="debug_lamp_label_73">
			<bounds x="623" y="303" width="30" height="30"/>
		</element>
		<element name="lamp74" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_74" ref="debug_lamp_label_74">
			<bounds x="687" y="303" width="30" height="30"/>
		</element>
		<element name="lamp75" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_75" ref="debug_lamp_label_75">
			<bounds x="751" y="303" width="30" height="30"/>
		</element>
		<element name="lamp76" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_76" ref="debug_lamp_label_76">
			<bounds x="815" y="303" width="30" height="30"/>
		</element>
		<element name="lamp77" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_77" ref="debug_lamp_label_77">
			<bounds x="879" y="303" width="30" height="30"/>
		</element>
		<element name="lamp78" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_78" ref="debug_lamp_label_78">
			<bounds x="943" y="303" width="30" height="30"/>
		</element>
		<element name="lamp79" ref="debug_lamp_standard" state="0">
			<bounds x="992" y="288" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_79" ref="debug_lamp_label_79">
			<bounds x="1007" y="303" width="30" height="30"/>
		</element>
		<element name="lamp80" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_80" ref="debug_lamp_label_80">
			<bounds x="47" y="367" width="30" height="30"/>
		</element>
		<element name="lamp81" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_81" ref="debug_lamp_label_81">
			<bounds x="111" y="367" width="30" height="30"/>
		</element>
		<element name="lamp82" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_82" ref="debug_lamp_label_82">
			<bounds x="175" y="367" width="30" height="30"/>
		</element>
		<element name="lamp83" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_83" ref="debug_lamp_label_83">
			<bounds x="239" y="367" width="30" height="30"/>
		</element>
		<element name="lamp84" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_84" ref="debug_lamp_label_84">
			<bounds x="303" y="367" width="30" height="30"/>
		</element>
		<element name="lamp85" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_85" ref="debug_lamp_label_85">
			<bounds x="367" y="367" width="30" height="30"/>
		</element>
		<element name="lamp86" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_86" ref="debug_lamp_label_86">
			<bounds x="431" y="367" width="30" height="30"/>
		</element>
		<element name="lamp87" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_87" ref="debug_lamp_label_87">
			<bounds x="495" y="367" width="30" height="30"/>
		</element>
		<element name="lamp88" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_88" ref="debug_lamp_label_88">
			<bounds x="559" y="367" width="30" height="30"/>
		</element>
		<element name="lamp89" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_89" ref="debug_lamp_label_89">
			<bounds x="623" y="367" width="30" height="30"/>
		</element>
		<element name="lamp90" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_90" ref="debug_lamp_label_90">
			<bounds x="687" y="367" width="30" height="30"/>
		</element>
		<element name="lamp91" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_91" ref="debug_lamp_label_91">
			<bounds x="751" y="367" width="30" height="30"/>
		</element>
		<element name="lamp92" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_92" ref="debug_lamp_label_92">
			<bounds x="815" y="367" width="30" height="30"/>
		</element>
		<element name="lamp93" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_93" ref="debug_lamp_label_93">
			<bounds x="879" y="367" width="30" height="30"/>
		</element>
		<element name="lamp94" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_94" ref="debug_lamp_label_94">
			<bounds x="943" y="367" width="30" height="30"/>
		</element>
		<element name="lamp95" ref="debug_lamp_standard" state="0">
			<bounds x="992" y="352" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_95" ref="debug_lamp_label_95">
			<bounds x="1007" y="367" width="30" height="30"/>
		</element>
		<element name="lamp96" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_96" ref="debug_lamp_label_96">
			<bounds x="47" y="431" width="30" height="30"/>
		</element>
		<element name="lamp97" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_97" ref="debug_lamp_label_97">
			<bounds x="111" y="431" width="30" height="30"/>
		</element>
		<element name="lamp98" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_98" ref="debug_lamp_label_98">
			<bounds x="175" y="431" width="30" height="30"/>
		</element>
		<element name="lamp99" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_99" ref="debug_lamp_label_99">
			<bounds x="239" y="431" width="30" height="30"/>
		</element>
		<element name="lamp100" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_100" ref="debug_lamp_label_100">
			<bounds x="303" y="431" width="30" height="30"/>
		</element>
		<element name="lamp101" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_101" ref="debug_lamp_label_101">
			<bounds x="367" y="431" width="30" height="30"/>
		</element>
		<element name="lamp102" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_102" ref="debug_lamp_label_102">
			<bounds x="431" y="431" width="30" height="30"/>
		</element>
		<element name="lamp103" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_103" ref="debug_lamp_label_103">
			<bounds x="495" y="431" width="30" height="30"/>
		</element>
		<element name="lamp104" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_104" ref="debug_lamp_label_104">
			<bounds x="559" y="431" width="30" height="30"/>
		</element>
		<element name="lamp105" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_105" ref="debug_lamp_label_105">
			<bounds x="623" y="431" width="30" height="30"/>
		</element>
		<element name="lamp106" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_106" ref="debug_lamp_label_106">
			<bounds x="687" y="431" width="30" height="30"/>
		</element>
		<element name="lamp107" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_107" ref="debug_lamp_label_107">
			<bounds x="751" y="431" width="30" height="30"/>
		</element>
		<element name="lamp108" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_108" ref="debug_lamp_label_108">
			<bounds x="815" y="431" width="30" height="30"/>
		</element>
		<element name="lamp109" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_109" ref="debug_lamp_label_109">
			<bounds x="879" y="431" width="30" height="30"/>
		</element>
		<element name="lamp110" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_110" ref="debug_lamp_label_110">
			<bounds x="943" y="431" width="30" height="30"/>
		</element>
		<element name="lamp111" ref="debug_lamp_standard" state="0">
			<bounds x="992" y="416" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_111" ref="debug_lamp_label_111">
			<bounds x="1007" y="431" width="30" height="30"/>
		</element>
		<element name="lamp112" ref="debug_lamp_reel" state="0">
			<bounds x="32" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_112" ref="debug_lamp_label_112">
			<bounds x="47" y="495" width="30" height="30"/>
		</element>
		<element name="lamp113" ref="debug_lamp_reel" state="0">
			<bounds x="96" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_113" ref="debug_lamp_label_113">
			<bounds x="111" y="495" width="30" height="30"/>
		</element>
		<element name="lamp114" ref="debug_lamp_reel" state="0">
			<bounds x="160" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_114" ref="debug_lamp_label_114">
			<bounds x="175" y="495" width="30" height="30"/>
		</element>
		<element name="lamp115" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_115" ref="debug_lamp_label_115">
			<bounds x="239" y="495" width="30" height="30"/>
		</element>
		<element name="lamp116" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_116" ref="debug_lamp_label_116">
			<bounds x="303" y="495" width="30" height="30"/>
		</element>
		<element name="lamp117" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_117" ref="debug_lamp_label_117">
			<bounds x="367" y="495" width="30" height="30"/>
		</element>
		<element name="lamp118" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_118" ref="debug_lamp_label_118">
			<bounds x="431" y="495" width="30" height="30"/>
		</element>
		<element name="lamp119" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_119" ref="debug_lamp_label_119">
			<bounds x="495" y="495" width="30" height="30"/>
		</element>
		<element name="lamp120" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_120" ref="debug_lamp_label_120">
			<bounds x="559" y="495" width="30" height="30"/>
		</element>
		<element name="lamp121" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_121" ref="debug_lamp_label_121">
			<bounds x="623" y="495" width="30" height="30"/>
		</element>
		<element name="lamp122" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_122" ref="debug_lamp_label_122">
			<bounds x="687" y="495" width="30" height="30"/>
		</element>
		<element name="lamp123" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_123" ref="debug_lamp_label_123">
			<bounds x="751" y="495" width="30" height="30"/>
		</element>
		<element name="lamp124" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_124" ref="debug_lamp_label_124">
			<bounds x="815" y="495" width="30" height="30"/>
		</element>
		<element name="lamp125" ref="debug_lamp_button" state="0">
			<bounds x="864" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_125" ref="debug_lamp_label_125">
			<bounds x="879" y="495" width="30" height="30"/>
		</element>
		<element name="lamp126" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_126" ref="debug_lamp_label_126">
			<bounds x="943" y="495" width="30" height="30"/>
		</element>
		<element name="lamp127" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="480" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_127" ref="debug_lamp_label_127">
			<bounds x="1007" y="495" width="30" height="30"/>
		</element>
		<element name="lamp128" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_128" ref="debug_lamp_label_128">
			<bounds x="47" y="559" width="30" height="30"/>
		</element>
		<element name="lamp129" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_129" ref="debug_lamp_label_129">
			<bounds x="111" y="559" width="30" height="30"/>
		</element>
		<element name="lamp130" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_130" ref="debug_lamp_label_130">
			<bounds x="175" y="559" width="30" height="30"/>
		</element>
		<element name="lamp131" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_131" ref="debug_lamp_label_131">
			<bounds x="239" y="559" width="30" height="30"/>
		</element>
		<element name="lamp132" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_132" ref="debug_lamp_label_132">
			<bounds x="303" y="559" width="30" height="30"/>
		</element>
		<element name="lamp133" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_133" ref="debug_lamp_label_133">
			<bounds x="367" y="559" width="30" height="30"/>
		</element>
		<element name="lamp134" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_134" ref="debug_lamp_label_134">
			<bounds x="431" y="559" width="30" height="30"/>
		</element>
		<element name="lamp135" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_135" ref="debug_lamp_label_135">
			<bounds x="495" y="559" width="30" height="30"/>
		</element>
		<element name="lamp136" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_136" ref="debug_lamp_label_136">
			<bounds x="559" y="559" width="30" height="30"/>
		</element>
		<element name="lamp137" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_137" ref="debug_lamp_label_137">
			<bounds x="623" y="559" width="30" height="30"/>
		</element>
		<element name="lamp138" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_138" ref="debug_lamp_label_138">
			<bounds x="687" y="559" width="30" height="30"/>
		</element>
		<element name="lamp139" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_139" ref="debug_lamp_label_139">
			<bounds x="751" y="559" width="30" height="30"/>
		</element>
		<element name="lamp140" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_140" ref="debug_lamp_label_140">
			<bounds x="815" y="559" width="30" height="30"/>
		</element>
		<element name="lamp141" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_141" ref="debug_lamp_label_141">
			<bounds x="879" y="559" width="30" height="30"/>
		</element>
		<element name="lamp142" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_142" ref="debug_lamp_label_142">
			<bounds x="943" y="559" width="30" height="30"/>
		</element>
		<element name="lamp143" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="544" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_143" ref="debug_lamp_label_143">
			<bounds x="1007" y="559" width="30" height="30"/>
		</element>
		<element name="lamp144" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_144" ref="debug_lamp_label_144">
			<bounds x="47" y="623" width="30" height="30"/>
		</element>
		<element name="lamp145" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_145" ref="debug_lamp_label_145">
			<bounds x="111" y="623" width="30" height="30"/>
		</element>
		<element name="lamp146" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_146" ref="debug_lamp_label_146">
			<bounds x="175" y="623" width="30" height="30"/>
		</element>
		<element name="lamp147" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_147" ref="debug_lamp_label_147">
			<bounds x="239" y="623" width="30" height="30"/>
		</element>
		<element name="lamp148" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_148" ref="debug_lamp_label_148">
			<bounds x="303" y="623" width="30" height="30"/>
		</element>
		<element name="lamp149" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_149" ref="debug_lamp_label_149">
			<bounds x="367" y="623" width="30" height="30"/>
		</element>
		<element name="lamp150" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_150" ref="debug_lamp_label_150">
			<bounds x="431" y="623" width="30" height="30"/>
		</element>
		<element name="lamp151" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_151" ref="debug_lamp_label_151">
			<bounds x="495" y="623" width="30" height="30"/>
		</element>
		<element name="lamp152" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_152" ref="debug_lamp_label_152">
			<bounds x="559" y="623" width="30" height="30"/>
		</element>
		<element name="lamp153" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_153" ref="debug_lamp_label_153">
			<bounds x="623" y="623" width="30" height="30"/>
		</element>
		<element name="lamp154" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_154" ref="debug_lamp_label_154">
			<bounds x="687" y="623" width="30" height="30"/>
		</element>
		<element name="lamp155" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_155" ref="debug_lamp_label_155">
			<bounds x="751" y="623" width="30" height="30"/>
		</element>
		<element name="lamp156" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_156" ref="debug_lamp_label_156">
			<bounds x="815" y="623" width="30" height="30"/>
		</element>
		<element name="lamp157" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_157" ref="debug_lamp_label_157">
			<bounds x="879" y="623" width="30" height="30"/>
		</element>
		<element name="lamp158" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_158" ref="debug_lamp_label_158">
			<bounds x="943" y="623" width="30" height="30"/>
		</element>
		<element name="lamp159" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="608" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_159" ref="debug_lamp_label_159">
			<bounds x="1007" y="623" width="30" height="30"/>
		</element>
		<element name="lamp160" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_160" ref="debug_lamp_label_160">
			<bounds x="47" y="687" width="30" height="30"/>
		</element>
		<element name="lamp161" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_161" ref="debug_lamp_label_161">
			<bounds x="111" y="687" width="30" height="30"/>
		</element>
		<element name="lamp162" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_162" ref="debug_lamp_label_162">
			<bounds x="175" y="687" width="30" height="30"/>
		</element>
		<element name="lamp163" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_163" ref="debug_lamp_label_163">
			<bounds x="239" y="687" width="30" height="30"/>
		</element>
		<element name="lamp164" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_164" ref="debug_lamp_label_164">
			<bounds x="303" y="687" width="30" height="30"/>
		</element>
		<element name="lamp165" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_165" ref="debug_lamp_label_165">
			<bounds x="367" y="687" width="30" height="30"/>
		</element>
		<element name="lamp166" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_166" ref="debug_lamp_label_166">
			<bounds x="431" y="687" width="30" height="30"/>
		</element>
		<element name="lamp167" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_167" ref="debug_lamp_label_167">
			<bounds x="495" y="687" width="30" height="30"/>
		</element>
		<element name="lamp168" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_168" ref="debug_lamp_label_168">
			<bounds x="559" y="687" width="30" height="30"/>
		</element>
		<element name="lamp169" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_169" ref="debug_lamp_label_169">
			<bounds x="623" y="687" width="30" height="30"/>
		</element>
		<element name="lamp170" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_170" ref="debug_lamp_label_170">
			<bounds x="687" y="687" width="30" height="30"/>
		</element>
		<element name="lamp171" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_171" ref="debug_lamp_label_171">
			<bounds x="751" y="687" width="30" height="30"/>
		</element>
		<element name="lamp172" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_172" ref="debug_lamp_label_172">
			<bounds x="815" y="687" width="30" height="30"/>
		</element>
		<element name="lamp173" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_173" ref="debug_lamp_label_173">
			<bounds x="879" y="687" width="30" height="30"/>
		</element>
		<element name="lamp174" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_174" ref="debug_lamp_label_174">
			<bounds x="943" y="687" width="30" height="30"/>
		</element>
		<element name="lamp175" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="672" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_175" ref="debug_lamp_label_175">
			<bounds x="1007" y="687" width="30" height="30"/>
		</element>
		<element name="lamp176" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_176" ref="debug_lamp_label_176">
			<bounds x="47" y="751" width="30" height="30"/>
		</element>
		<element name="lamp177" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_177" ref="debug_lamp_label_177">
			<bounds x="111" y="751" width="30" height="30"/>
		</element>
		<element name="lamp178" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_178" ref="debug_lamp_label_178">
			<bounds x="175" y="751" width="30" height="30"/>
		</element>
		<element name="lamp179" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_179" ref="debug_lamp_label_179">
			<bounds x="239" y="751" width="30" height="30"/>
		</element>
		<element name="lamp180" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_180" ref="debug_lamp_label_180">
			<bounds x="303" y="751" width="30" height="30"/>
		</element>
		<element name="lamp181" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_181" ref="debug_lamp_label_181">
			<bounds x="367" y="751" width="30" height="30"/>
		</element>
		<element name="lamp182" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_182" ref="debug_lamp_label_182">
			<bounds x="431" y="751" width="30" height="30"/>
		</element>
		<element name="lamp183" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_183" ref="debug_lamp_label_183">
			<bounds x="495" y="751" width="30" height="30"/>
		</element>
		<element name="lamp184" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_184" ref="debug_lamp_label_184">
			<bounds x="559" y="751" width="30" height="30"/>
		</element>
		<element name="lamp185" ref="debug_lamp_button" state="0">
			<bounds x="608" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_185" ref="debug_lamp_label_185">
			<bounds x="623" y="751" width="30" height="30"/>
		</element>
		<element name="lamp186" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_186" ref="debug_lamp_label_186">
			<bounds x="687" y="751" width="30" height="30"/>
		</element>
		<element name="lamp187" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_187" ref="debug_lamp_label_187">
			<bounds x="751" y="751" width="30" height="30"/>
		</element>
		<element name="lamp188" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_188" ref="debug_lamp_label_188">
			<bounds x="815" y="751" width="30" height="30"/>
		</element>
		<element name="lamp189" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_189" ref="debug_lamp_label_189">
			<bounds x="879" y="751" width="30" height="30"/>
		</element>
		<element name="lamp190" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_190" ref="debug_lamp_label_190">
			<bounds x="943" y="751" width="30" height="30"/>
		</element>
		<element name="lamp191" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="736" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_191" ref="debug_lamp_label_191">
			<bounds x="1007" y="751" width="30" height="30"/>
		</element>
		<element name="lamp192" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_192" ref="debug_lamp_label_192">
			<bounds x="47" y="815" width="30" height="30"/>
		</element>
		<element name="lamp193" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_193" ref="debug_lamp_label_193">
			<bounds x="111" y="815" width="30" height="30"/>
		</element>
		<element name="lamp194" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_194" ref="debug_lamp_label_194">
			<bounds x="175" y="815" width="30" height="30"/>
		</element>
		<element name="lamp195" ref="debug_lamp_unreferenced" state="0">
			<bounds x="224" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_195" ref="debug_lamp_label_195">
			<bounds x="239" y="815" width="30" height="30"/>
		</element>
		<element name="lamp196" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_196" ref="debug_lamp_label_196">
			<bounds x="303" y="815" width="30" height="30"/>
		</element>
		<element name="lamp197" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_197" ref="debug_lamp_label_197">
			<bounds x="367" y="815" width="30" height="30"/>
		</element>
		<element name="lamp198" ref="debug_lamp_unreferenced" state="0">
			<bounds x="416" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_198" ref="debug_lamp_label_198">
			<bounds x="431" y="815" width="30" height="30"/>
		</element>
		<element name="lamp199" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_199" ref="debug_lamp_label_199">
			<bounds x="495" y="815" width="30" height="30"/>
		</element>
		<element name="lamp200" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_200" ref="debug_lamp_label_200">
			<bounds x="559" y="815" width="30" height="30"/>
		</element>
		<element name="lamp201" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_201" ref="debug_lamp_label_201">
			<bounds x="623" y="815" width="30" height="30"/>
		</element>
		<element name="lamp202" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_202" ref="debug_lamp_label_202">
			<bounds x="687" y="815" width="30" height="30"/>
		</element>
		<element name="lamp203" ref="debug_lamp_standard" state="0">
			<bounds x="736" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_203" ref="debug_lamp_label_203">
			<bounds x="751" y="815" width="30" height="30"/>
		</element>
		<element name="lamp204" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_204" ref="debug_lamp_label_204">
			<bounds x="815" y="815" width="30" height="30"/>
		</element>
		<element name="lamp205" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_205" ref="debug_lamp_label_205">
			<bounds x="879" y="815" width="30" height="30"/>
		</element>
		<element name="lamp206" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_206" ref="debug_lamp_label_206">
			<bounds x="943" y="815" width="30" height="30"/>
		</element>
		<element name="lamp207" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="800" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_207" ref="debug_lamp_label_207">
			<bounds x="1007" y="815" width="30" height="30"/>
		</element>
		<element name="lamp208" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_208" ref="debug_lamp_label_208">
			<bounds x="47" y="879" width="30" height="30"/>
		</element>
		<element name="lamp209" ref="debug_lamp_unreferenced" state="0">
			<bounds x="96" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_209" ref="debug_lamp_label_209">
			<bounds x="111" y="879" width="30" height="30"/>
		</element>
		<element name="lamp210" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_210" ref="debug_lamp_label_210">
			<bounds x="175" y="879" width="30" height="30"/>
		</element>
		<element name="lamp211" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_211" ref="debug_lamp_label_211">
			<bounds x="239" y="879" width="30" height="30"/>
		</element>
		<element name="lamp212" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_212" ref="debug_lamp_label_212">
			<bounds x="303" y="879" width="30" height="30"/>
		</element>
		<element name="lamp213" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_213" ref="debug_lamp_label_213">
			<bounds x="367" y="879" width="30" height="30"/>
		</element>
		<element name="lamp214" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_214" ref="debug_lamp_label_214">
			<bounds x="431" y="879" width="30" height="30"/>
		</element>
		<element name="lamp215" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_215" ref="debug_lamp_label_215">
			<bounds x="495" y="879" width="30" height="30"/>
		</element>
		<element name="lamp216" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_216" ref="debug_lamp_label_216">
			<bounds x="559" y="879" width="30" height="30"/>
		</element>
		<element name="lamp217" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_217" ref="debug_lamp_label_217">
			<bounds x="623" y="879" width="30" height="30"/>
		</element>
		<element name="lamp218" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_218" ref="debug_lamp_label_218">
			<bounds x="687" y="879" width="30" height="30"/>
		</element>
		<element name="lamp219" ref="debug_lamp_button" state="0">
			<bounds x="736" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_219" ref="debug_lamp_label_219">
			<bounds x="751" y="879" width="30" height="30"/>
		</element>
		<element name="lamp220" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_220" ref="debug_lamp_label_220">
			<bounds x="815" y="879" width="30" height="30"/>
		</element>
		<element name="lamp221" ref="debug_lamp_standard" state="0">
			<bounds x="864" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_221" ref="debug_lamp_label_221">
			<bounds x="879" y="879" width="30" height="30"/>
		</element>
		<element name="lamp222" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_222" ref="debug_lamp_label_222">
			<bounds x="943" y="879" width="30" height="30"/>
		</element>
		<element name="lamp223" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="864" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_223" ref="debug_lamp_label_223">
			<bounds x="1007" y="879" width="30" height="30"/>
		</element>
		<element name="lamp224" ref="debug_lamp_standard" state="0">
			<bounds x="32" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_224" ref="debug_lamp_label_224">
			<bounds x="47" y="943" width="30" height="30"/>
		</element>
		<element name="lamp225" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_225" ref="debug_lamp_label_225">
			<bounds x="111" y="943" width="30" height="30"/>
		</element>
		<element name="lamp226" ref="debug_lamp_standard" state="0">
			<bounds x="160" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_226" ref="debug_lamp_label_226">
			<bounds x="175" y="943" width="30" height="30"/>
		</element>
		<element name="lamp227" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_227" ref="debug_lamp_label_227">
			<bounds x="239" y="943" width="30" height="30"/>
		</element>
		<element name="lamp228" ref="debug_lamp_standard" state="0">
			<bounds x="288" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_228" ref="debug_lamp_label_228">
			<bounds x="303" y="943" width="30" height="30"/>
		</element>
		<element name="lamp229" ref="debug_lamp_standard" state="0">
			<bounds x="352" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_229" ref="debug_lamp_label_229">
			<bounds x="367" y="943" width="30" height="30"/>
		</element>
		<element name="lamp230" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_230" ref="debug_lamp_label_230">
			<bounds x="431" y="943" width="30" height="30"/>
		</element>
		<element name="lamp231" ref="debug_lamp_standard" state="0">
			<bounds x="480" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_231" ref="debug_lamp_label_231">
			<bounds x="495" y="943" width="30" height="30"/>
		</element>
		<element name="lamp232" ref="debug_lamp_standard" state="0">
			<bounds x="544" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_232" ref="debug_lamp_label_232">
			<bounds x="559" y="943" width="30" height="30"/>
		</element>
		<element name="lamp233" ref="debug_lamp_standard" state="0">
			<bounds x="608" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_233" ref="debug_lamp_label_233">
			<bounds x="623" y="943" width="30" height="30"/>
		</element>
		<element name="lamp234" ref="debug_lamp_standard" state="0">
			<bounds x="672" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_234" ref="debug_lamp_label_234">
			<bounds x="687" y="943" width="30" height="30"/>
		</element>
		<element name="lamp235" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_235" ref="debug_lamp_label_235">
			<bounds x="751" y="943" width="30" height="30"/>
		</element>
		<element name="lamp236" ref="debug_lamp_standard" state="0">
			<bounds x="800" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_236" ref="debug_lamp_label_236">
			<bounds x="815" y="943" width="30" height="30"/>
		</element>
		<element name="lamp237" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_237" ref="debug_lamp_label_237">
			<bounds x="879" y="943" width="30" height="30"/>
		</element>
		<element name="lamp238" ref="debug_lamp_unreferenced" state="0">
			<bounds x="928" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_238" ref="debug_lamp_label_238">
			<bounds x="943" y="943" width="30" height="30"/>
		</element>
		<element name="lamp239" ref="debug_lamp_unreferenced" state="0">
			<bounds x="992" y="928" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_239" ref="debug_lamp_label_239">
			<bounds x="1007" y="943" width="30" height="30"/>
		</element>
		<element name="lamp240" ref="debug_lamp_unreferenced" state="0">
			<bounds x="32" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_240" ref="debug_lamp_label_240">
			<bounds x="47" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp241" ref="debug_lamp_standard" state="0">
			<bounds x="96" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_241" ref="debug_lamp_label_241">
			<bounds x="111" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp242" ref="debug_lamp_unreferenced" state="0">
			<bounds x="160" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_242" ref="debug_lamp_label_242">
			<bounds x="175" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp243" ref="debug_lamp_standard" state="0">
			<bounds x="224" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_243" ref="debug_lamp_label_243">
			<bounds x="239" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp244" ref="debug_lamp_unreferenced" state="0">
			<bounds x="288" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_244" ref="debug_lamp_label_244">
			<bounds x="303" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp245" ref="debug_lamp_unreferenced" state="0">
			<bounds x="352" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_245" ref="debug_lamp_label_245">
			<bounds x="367" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp246" ref="debug_lamp_standard" state="0">
			<bounds x="416" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_246" ref="debug_lamp_label_246">
			<bounds x="431" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp247" ref="debug_lamp_unreferenced" state="0">
			<bounds x="480" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_247" ref="debug_lamp_label_247">
			<bounds x="495" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp248" ref="debug_lamp_unreferenced" state="0">
			<bounds x="544" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_248" ref="debug_lamp_label_248">
			<bounds x="559" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp249" ref="debug_lamp_unreferenced" state="0">
			<bounds x="608" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_249" ref="debug_lamp_label_249">
			<bounds x="623" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp250" ref="debug_lamp_unreferenced" state="0">
			<bounds x="672" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_250" ref="debug_lamp_label_250">
			<bounds x="687" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp251" ref="debug_lamp_unreferenced" state="0">
			<bounds x="736" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_251" ref="debug_lamp_label_251">
			<bounds x="751" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp252" ref="debug_lamp_unreferenced" state="0">
			<bounds x="800" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_252" ref="debug_lamp_label_252">
			<bounds x="815" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp253" ref="debug_lamp_unreferenced" state="0">
			<bounds x="864" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_253" ref="debug_lamp_label_253">
			<bounds x="879" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp254" ref="debug_lamp_standard" state="0">
			<bounds x="928" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_254" ref="debug_lamp_label_254">
			<bounds x="943" y="1007" width="30" height="30"/>
		</element>
		<element name="lamp255" ref="debug_lamp_segment" state="0">
			<bounds x="992" y="992" width="60" height="60"/>
		</element>
		<element name="debug_lamp_label_255" ref="debug_lamp_label_255">
			<bounds x="1007" y="1007" width="30" height="30"/>
		</element>
		<element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x01">
			<bounds x="1100" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_0" ref="debug_button_label_0">
			<bounds x="1120" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x02">
			<bounds x="1184" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_1" ref="debug_button_label_1">
			<bounds x="1204" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x04">
			<bounds x="1268" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_2" ref="debug_button_label_2">
			<bounds x="1288" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x08">
			<bounds x="1352" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_3" ref="debug_button_label_3">
			<bounds x="1372" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x10">
			<bounds x="1436" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_4" ref="debug_button_label_4">
			<bounds x="1456" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x20">
			<bounds x="1520" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_5" ref="debug_button_label_5">
			<bounds x="1540" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x40">
			<bounds x="1604" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_6" ref="debug_button_label_6">
			<bounds x="1624" y="671" width="40" height="22"/>
		</element>
		<element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="IN-0" inputmask="0x80">
			<bounds x="1688" y="660" width="80" height="44"/>
		</element>
		<element name="debug_button_label_7" ref="debug_button_label_7">
			<bounds x="1708" y="671" width="40" height="22"/>
		</element>
		<element name="lamp0" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x01">
			<bounds x="1100" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_8" ref="debug_button_label_8">
			<bounds x="1120" y="719" width="40" height="22"/>
		</element>
		<element name="lamp1" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x02">
			<bounds x="1184" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_9" ref="debug_button_label_9">
			<bounds x="1204" y="719" width="40" height="22"/>
		</element>
		<element name="lamp2" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x04">
			<bounds x="1268" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_10" ref="debug_button_label_10">
			<bounds x="1288" y="719" width="40" height="22"/>
		</element>
		<element name="lamp3" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x08">
			<bounds x="1352" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_11" ref="debug_button_label_11">
			<bounds x="1372" y="719" width="40" height="22"/>
		</element>
		<element name="lamp4" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x10">
			<bounds x="1436" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_12" ref="debug_button_label_12">
			<bounds x="1456" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x20">
			<bounds x="1520" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_13" ref="debug_button_label_13">
			<bounds x="1540" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="IN-1" inputmask="0x40">
			<bounds x="1604" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_14" ref="debug_button_label_14">
			<bounds x="1624" y="719" width="40" height="22"/>
		</element>
		<element name="debug_button_15" ref="debug_button_standard" state="0" inputtag="IN-1" inputmask="0x80">
			<bounds x="1688" y="708" width="80" height="44"/>
		</element>
		<element name="debug_button_label_15" ref="debug_button_label_15">
			<bounds x="1708" y="719" width="40" height="22"/>
		</element>
		<element name="lamp5" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x01">
			<bounds x="1100" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_16" ref="debug_button_label_16">
			<bounds x="1120" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x02">
			<bounds x="1184" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_17" ref="debug_button_label_17">
			<bounds x="1204" y="767" width="40" height="22"/>
		</element>
		<element name="lamp7" ref="debug_button_standard" state="0" inputtag="IN-2" inputmask="0x04">
			<bounds x="1268" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_18" ref="debug_button_label_18">
			<bounds x="1288" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x08">
			<bounds x="1352" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_19" ref="debug_button_label_19">
			<bounds x="1372" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x10">
			<bounds x="1436" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_20" ref="debug_button_label_20">
			<bounds x="1456" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x20">
			<bounds x="1520" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_21" ref="debug_button_label_21">
			<bounds x="1540" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x40">
			<bounds x="1604" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_22" ref="debug_button_label_22">
			<bounds x="1624" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="IN-2" inputmask="0x80">
			<bounds x="1688" y="756" width="80" height="44"/>
		</element>
		<element name="debug_button_label_23" ref="debug_button_label_23">
			<bounds x="1708" y="767" width="40" height="22"/>
		</element>
		<element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x01">
			<bounds x="1100" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_24" ref="debug_button_label_24">
			<bounds x="1120" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x02">
			<bounds x="1184" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_25" ref="debug_button_label_25">
			<bounds x="1204" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x04">
			<bounds x="1268" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_26" ref="debug_button_label_26">
			<bounds x="1288" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x08">
			<bounds x="1352" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_27" ref="debug_button_label_27">
			<bounds x="1372" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x10">
			<bounds x="1436" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_28" ref="debug_button_label_28">
			<bounds x="1456" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x20">
			<bounds x="1520" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_29" ref="debug_button_label_29">
			<bounds x="1540" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x40">
			<bounds x="1604" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_30" ref="debug_button_label_30">
			<bounds x="1624" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="IN-3" inputmask="0x80">
			<bounds x="1688" y="804" width="80" height="44"/>
		</element>
		<element name="debug_button_label_31" ref="debug_button_label_31">
			<bounds x="1708" y="815" width="40" height="22"/>
		</element>
		<element name="debug_button_32" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x01">
			<bounds x="1100" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_32" ref="debug_button_label_32">
			<bounds x="1120" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x02">
			<bounds x="1184" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_33" ref="debug_button_label_33">
			<bounds x="1204" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_34" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x04">
			<bounds x="1268" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_34" ref="debug_button_label_34">
			<bounds x="1288" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_35" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x08">
			<bounds x="1352" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_35" ref="debug_button_label_35">
			<bounds x="1372" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_36" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x10">
			<bounds x="1436" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_36" ref="debug_button_label_36">
			<bounds x="1456" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_37" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x20">
			<bounds x="1520" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_37" ref="debug_button_label_37">
			<bounds x="1540" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x40">
			<bounds x="1604" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_38" ref="debug_button_label_38">
			<bounds x="1624" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="IN-4" inputmask="0x80">
			<bounds x="1688" y="852" width="80" height="44"/>
		</element>
		<element name="debug_button_label_39" ref="debug_button_label_39">
			<bounds x="1708" y="863" width="40" height="22"/>
		</element>
		<element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x01">
			<bounds x="1100" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_40" ref="debug_button_label_40">
			<bounds x="1120" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x02">
			<bounds x="1184" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_41" ref="debug_button_label_41">
			<bounds x="1204" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x04">
			<bounds x="1268" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_42" ref="debug_button_label_42">
			<bounds x="1288" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x08">
			<bounds x="1352" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_43" ref="debug_button_label_43">
			<bounds x="1372" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x10">
			<bounds x="1436" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_44" ref="debug_button_label_44">
			<bounds x="1456" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x20">
			<bounds x="1520" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_45" ref="debug_button_label_45">
			<bounds x="1540" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x40">
			<bounds x="1604" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_46" ref="debug_button_label_46">
			<bounds x="1624" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="IN-5" inputmask="0x80">
			<bounds x="1688" y="900" width="80" height="44"/>
		</element>
		<element name="debug_button_label_47" ref="debug_button_label_47">
			<bounds x="1708" y="911" width="40" height="22"/>
		</element>
		<element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x01">
			<bounds x="1100" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_48" ref="debug_button_label_48">
			<bounds x="1120" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x02">
			<bounds x="1184" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_49" ref="debug_button_label_49">
			<bounds x="1204" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x04">
			<bounds x="1268" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_50" ref="debug_button_label_50">
			<bounds x="1288" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x08">
			<bounds x="1352" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_51" ref="debug_button_label_51">
			<bounds x="1372" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x10">
			<bounds x="1436" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_52" ref="debug_button_label_52">
			<bounds x="1456" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x20">
			<bounds x="1520" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_53" ref="debug_button_label_53">
			<bounds x="1540" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x40">
			<bounds x="1604" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_54" ref="debug_button_label_54">
			<bounds x="1624" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="IN-6" inputmask="0x80">
			<bounds x="1688" y="948" width="80" height="44"/>
		</element>
		<element name="debug_button_label_55" ref="debug_button_label_55">
			<bounds x="1708" y="959" width="40" height="22"/>
		</element>
		<element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x01">
			<bounds x="1100" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_56" ref="debug_button_label_56">
			<bounds x="1120" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x02">
			<bounds x="1184" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_57" ref="debug_button_label_57">
			<bounds x="1204" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x04">
			<bounds x="1268" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_58" ref="debug_button_label_58">
			<bounds x="1288" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x08">
			<bounds x="1352" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_59" ref="debug_button_label_59">
			<bounds x="1372" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x10">
			<bounds x="1436" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_60" ref="debug_button_label_60">
			<bounds x="1456" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x20">
			<bounds x="1520" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_61" ref="debug_button_label_61">
			<bounds x="1540" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x40">
			<bounds x="1604" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_62" ref="debug_button_label_62">
			<bounds x="1624" y="1007" width="40" height="22"/>
		</element>
		<element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="IN-7" inputmask="0x80">
			<bounds x="1688" y="996" width="80" height="44"/>
		</element>
		<element name="debug_button_label_63" ref="debug_button_label_63">
			<bounds x="1708" y="1007" width="40" height="22"/>
		</element>
		<element name="vfd0" ref="debug_vfd" state="0">
			<bounds x="1150" y="600" width="32" height="48"/>
		</element>
		<element name="vfd1" ref="debug_vfd" state="0">
			<bounds x="1182" y="600" width="32" height="48"/>
		</element>
		<element name="vfd2" ref="debug_vfd" state="0">
			<bounds x="1214" y="600" width="32" height="48"/>
		</element>
		<element name="vfd3" ref="debug_vfd" state="0">
			<bounds x="1246" y="600" width="32" height="48"/>
		</element>
		<element name="vfd4" ref="debug_vfd" state="0">
			<bounds x="1278" y="600" width="32" height="48"/>
		</element>
		<element name="vfd5" ref="debug_vfd" state="0">
			<bounds x="1310" y="600" width="32" height="48"/>
		</element>
		<element name="vfd6" ref="debug_vfd" state="0">
			<bounds x="1342" y="600" width="32" height="48"/>
		</element>
		<element name="vfd7" ref="debug_vfd" state="0">
			<bounds x="1374" y="600" width="32" height="48"/>
		</element>
		<element name="vfd8" ref="debug_vfd" state="0">
			<bounds x="1406" y="600" width="32" height="48"/>
		</element>
		<element name="vfd9" ref="debug_vfd" state="0">
			<bounds x="1438" y="600" width="32" height="48"/>
		</element>
		<element name="vfd10" ref="debug_vfd" state="0">
			<bounds x="1470" y="600" width="32" height="48"/>
		</element>
		<element name="vfd11" ref="debug_vfd" state="0">
			<bounds x="1502" y="600" width="32" height="48"/>
		</element>
		<element name="vfd12" ref="debug_vfd" state="0">
			<bounds x="1534" y="600" width="32" height="48"/>
		</element>
		<element name="vfd13" ref="debug_vfd" state="0">
			<bounds x="1566" y="600" width="32" height="48"/>
		</element>
		<element name="vfd14" ref="debug_vfd" state="0">
			<bounds x="1598" y="600" width="32" height="48"/>
		</element>
		<element name="vfd15" ref="debug_vfd" state="0">
			<bounds x="1630" y="600" width="32" height="48"/>
		</element>
		<element ref="reel_background">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element name="lamp32" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp33" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp34" ref="reel_lamp" state="0">
			<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel1" ref="reel0" state="0">
			<bounds x="1100" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element name="lamp35" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp36" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp37" ref="reel_lamp" state="0">
			<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel2" ref="reel1" state="0">
			<bounds x="1240" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element name="lamp48" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp49" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="lamp50" ref="reel_lamp" state="0">
			<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
		</element>
		<element name="sreel3" ref="reel2" state="0">
			<bounds x="1380" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1520" y="32" width="120" height="240"/>
		</element>
		<element name="lamp52" ref="reel_lamp" state="0">
			<bounds x="1520.0000" y="32.0000" width="120.0000" height="240.0000"/>
		</element>
		<element name="sreel4" ref="reel3" state="0">
			<bounds x="1520" y="32" width="120" height="240"/>
		</element>
		<element ref="reel_background">
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="lamp114" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="32.0000" width="120.0000" height="48.0000"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="80.0000" width="120.0000" height="48.0000"/>
		</element>
		<element name="lamp113" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="128.0000" width="120.0000" height="48.0000"/>
		</element>
		<element name="lamp-2" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="176.0000" width="120.0000" height="48.0000"/>
		</element>
		<element name="lamp112" ref="reel_lamp" state="0">
			<bounds x="1660.0000" y="224.0000" width="120.0000" height="48.0000"/>
		</element>
		<element name="sreel5" ref="reel4" state="0">
			<orientation rotate="90"/>
			<bounds x="1660" y="32" width="120" height="240"/>
		</element>
		<element name="reel1" ref="debug_stepper_value">
			<bounds x="1100" y="272" width="50" height="30"/>
		</element>
		<element name="reel2" ref="debug_stepper_value">
			<bounds x="1240" y="272" width="50" height="30"/>
		</element>
		<element name="reel3" ref="debug_stepper_value">
			<bounds x="1380" y="272" width="50" height="30"/>
		</element>
		<element name="reel4" ref="debug_stepper_value">
			<bounds x="1520" y="272" width="50" height="30"/>
		</element>
		<element name="reel5" ref="debug_stepper_value">
			<bounds x="1660" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_0">
			<bounds x="1180" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_1">
			<bounds x="1320" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_2">
			<bounds x="1460" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_3">
			<bounds x="1600" y="272" width="50" height="30"/>
		</element>
		<element name="debug_reel_symbol_count" ref="debug_reel_symbol_count_4">
			<bounds x="1740" y="272" width="50" height="30"/>
		</element>
	</view>
</mamelayout>