blob: e8697daa423d5f5844b1145894fb28bb8fe69681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
|
const_def
const EVENT_FOLLOWED_OAK_INTO_LAB
const EVENT_001
const EVENT_002
const EVENT_HALL_OF_FAME_DEX_RATING
const EVENT_004
const EVENT_005
const EVENT_PALLET_AFTER_GETTING_POKEBALLS
const EVENT_007
const EVENT_008
const EVENT_009
const EVENT_00A
const EVENT_00B
const EVENT_00C
const EVENT_00D
const EVENT_00E
const EVENT_00F
const EVENT_010
const EVENT_011
const EVENT_012
const EVENT_013
const EVENT_014
const EVENT_015
const EVENT_016
const EVENT_017
const EVENT_GOT_TOWN_MAP
const EVENT_ENTERED_BLUES_HOUSE
const EVENT_DAISY_WALKING
const EVENT_01B
const EVENT_01C
const EVENT_01D
const EVENT_01E
const EVENT_01F
const EVENT_FOLLOWED_OAK_INTO_LAB_2
const EVENT_OAK_ASKED_TO_CHOOSE_MON
const EVENT_GOT_STARTER
const EVENT_BATTLED_RIVAL_IN_OAKS_LAB
const EVENT_GOT_POKEBALLS_FROM_OAK
const EVENT_GOT_POKEDEX
const EVENT_PALLET_AFTER_GETTING_POKEBALLS_2
const EVENT_OAK_APPEARED_IN_PALLET
const EVENT_VIRIDIAN_GYM_OPEN
const EVENT_GOT_TM42
const EVENT_02A
const EVENT_02B
const EVENT_02C
const EVENT_02D
const EVENT_02E
const EVENT_02F
const EVENT_030
const EVENT_031
const EVENT_032
const EVENT_033
const EVENT_034
const EVENT_035
const EVENT_036
const EVENT_037
const EVENT_OAK_GOT_PARCEL
const EVENT_GOT_OAKS_PARCEL
const EVENT_03A
const EVENT_03B
const EVENT_03C
const EVENT_03D
const EVENT_03E
const EVENT_03F
const EVENT_040
const EVENT_041
const EVENT_042
const EVENT_043
const EVENT_044
const EVENT_045
const EVENT_046
const EVENT_047
const EVENT_048
const EVENT_049
const EVENT_04A
const EVENT_04B
const EVENT_04C
const EVENT_04D
const EVENT_04E
const EVENT_04F
const EVENT_GOT_TM27
const EVENT_BEAT_VIRIDIAN_GYM_GIOVANNI
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_0
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_1
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_2
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_3
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_4
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_5
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_6
const EVENT_BEAT_VIRIDIAN_GYM_TRAINER_7
const EVENT_05A
const EVENT_05B
const EVENT_05C
const EVENT_05D
const EVENT_05E
const EVENT_05F
const EVENT_060
const EVENT_061
const EVENT_062
const EVENT_063
const EVENT_064
const EVENT_065
const EVENT_066
const EVENT_067
const EVENT_BOUGHT_MUSEUM_TICKET
const EVENT_GOT_OLD_AMBER
const EVENT_06A
const EVENT_06B
const EVENT_06C
const EVENT_06D
const EVENT_06E
const EVENT_06F
const EVENT_070
const EVENT_071
const EVENT_BEAT_PEWTER_GYM_TRAINER_0
const EVENT_073
const EVENT_074
const EVENT_075
const EVENT_GOT_TM34
const EVENT_BEAT_BROCK
const EVENT_078
const EVENT_079
const EVENT_07A
const EVENT_07B
const EVENT_07C
const EVENT_07D
const EVENT_07E
const EVENT_07F
const EVENT_080
const EVENT_081
const EVENT_082
const EVENT_083
const EVENT_084
const EVENT_085
const EVENT_086
const EVENT_087
const EVENT_088
const EVENT_089
const EVENT_08A
const EVENT_08B
const EVENT_08C
const EVENT_08D
const EVENT_08E
const EVENT_08F
const EVENT_090
const EVENT_091
const EVENT_092
const EVENT_093
const EVENT_094
const EVENT_095
const EVENT_096
const EVENT_097
const EVENT_BEAT_CERULEAN_RIVAL
const EVENT_099
const EVENT_09A
const EVENT_09B
const EVENT_09C
const EVENT_09D
const EVENT_09E
const EVENT_09F
const EVENT_0A0
const EVENT_0A1
const EVENT_0A2
const EVENT_0A3
const EVENT_0A4
const EVENT_0A5
const EVENT_0A6
const EVENT_BEAT_CERULEAN_ROCKET_THIEF
const EVENT_0A8
const EVENT_0A9
const EVENT_0AA
const EVENT_0AB
const EVENT_0AC
const EVENT_0AD
const EVENT_0AE
const EVENT_0AF
const EVENT_0B0
const EVENT_0B1
const EVENT_0B2
const EVENT_0B3
const EVENT_0B4
const EVENT_0B5
const EVENT_0B6
const EVENT_0B7
const EVENT_0B8
const EVENT_0B9
const EVENT_BEAT_CERULEAN_GYM_TRAINER_0
const EVENT_BEAT_CERULEAN_GYM_TRAINER_1
const EVENT_0BC
const EVENT_0BD
const EVENT_GOT_TM11
const EVENT_BEAT_MISTY
const EVENT_GOT_BICYCLE
const EVENT_0C1
const EVENT_0C2
const EVENT_0C3
const EVENT_0C4
const EVENT_0C5
const EVENT_0C6
const EVENT_0C7
const EVENT_0C8
const EVENT_0C9
const EVENT_0CA
const EVENT_0CB
const EVENT_0CC
const EVENT_0CD
const EVENT_0CE
const EVENT_0CF
const EVENT_0D0
const EVENT_0D1
const EVENT_0D2
const EVENT_0D3
const EVENT_0D4
const EVENT_0D5
const EVENT_0D6
const EVENT_0D7
const EVENT_0D8
const EVENT_0D9
const EVENT_0DA
const EVENT_0DB
const EVENT_0DC
const EVENT_0DD
const EVENT_0DE
const EVENT_0DF
const EVENT_0E0
const EVENT_0E1
const EVENT_0E2
const EVENT_0E3
const EVENT_0E4
const EVENT_0E5
const EVENT_0E6
const EVENT_0E7
const EVENT_0E8
const EVENT_0E9
const EVENT_0EA
const EVENT_0EB
const EVENT_0EC
const EVENT_0ED
const EVENT_POKEMON_TOWER_RIVAL_ON_LEFT
const EVENT_BEAT_POKEMON_TOWER_RIVAL
const EVENT_0F0
const EVENT_BEAT_POKEMONTOWER_3_TRAINER_0
const EVENT_BEAT_POKEMONTOWER_3_TRAINER_1
const EVENT_BEAT_POKEMONTOWER_3_TRAINER_2
const EVENT_0F4
const EVENT_0F5
const EVENT_0F6
const EVENT_0F7
const EVENT_0F8
const EVENT_BEAT_POKEMONTOWER_4_TRAINER_0
const EVENT_BEAT_POKEMONTOWER_4_TRAINER_1
const EVENT_BEAT_POKEMONTOWER_4_TRAINER_2
const EVENT_0FC
const EVENT_0FD
const EVENT_0FE
const EVENT_0FF
const EVENT_100
const EVENT_101
const EVENT_BEAT_POKEMONTOWER_5_TRAINER_0
const EVENT_BEAT_POKEMONTOWER_5_TRAINER_1
const EVENT_BEAT_POKEMONTOWER_5_TRAINER_2
const EVENT_BEAT_POKEMONTOWER_5_TRAINER_3
const EVENT_106
const EVENT_IN_PURIFIED_ZONE
const EVENT_108
const EVENT_BEAT_POKEMONTOWER_6_TRAINER_0
const EVENT_BEAT_POKEMONTOWER_6_TRAINER_1
const EVENT_BEAT_POKEMONTOWER_6_TRAINER_2
const EVENT_10C
const EVENT_10D
const EVENT_10E
const EVENT_BEAT_GHOST_MAROWAK
const EVENT_110
const EVENT_BEAT_POKEMONTOWER_7_TRAINER_0
const EVENT_BEAT_POKEMONTOWER_7_TRAINER_1
const EVENT_BEAT_POKEMONTOWER_7_TRAINER_2
const EVENT_114
const EVENT_115
const EVENT_116
const EVENT_RESCUED_MR_FUJI_2
const EVENT_118
const EVENT_119
const EVENT_11A
const EVENT_11B
const EVENT_11C
const EVENT_11D
const EVENT_11E
const EVENT_11F
const EVENT_120
const EVENT_121
const EVENT_122
const EVENT_123
const EVENT_124
const EVENT_125
const EVENT_126
const EVENT_127
const EVENT_GOT_POKE_FLUTE
const EVENT_129
const EVENT_12A
const EVENT_12B
const EVENT_12C
const EVENT_12D
const EVENT_12E
const EVENT_12F
const EVENT_130
const EVENT_131
const EVENT_132
const EVENT_133
const EVENT_134
const EVENT_135
const EVENT_136
const EVENT_137
const EVENT_138
const EVENT_139
const EVENT_13A
const EVENT_13B
const EVENT_13C
const EVENT_13D
const EVENT_13E
const EVENT_13F
const EVENT_140
const EVENT_141
const EVENT_142
const EVENT_143
const EVENT_144
const EVENT_145
const EVENT_146
const EVENT_147
const EVENT_148
const EVENT_149
const EVENT_14A
const EVENT_14B
const EVENT_14C
const EVENT_14D
const EVENT_14E
const EVENT_14F
const EVENT_150
const EVENT_GOT_BIKE_VOUCHER
const EVENT_152
const EVENT_153
const EVENT_154
const EVENT_155
const EVENT_SEEL_FAN_BOAST
const EVENT_PIKACHU_FAN_BOAST
const EVENT_158
const EVENT_159
const EVENT_15A
const EVENT_15B
const EVENT_15C
const EVENT_15D
const EVENT_15E
const EVENT_15F
const EVENT_2ND_LOCK_OPENED
const EVENT_1ST_LOCK_OPENED
const EVENT_BEAT_VERMILION_GYM_TRAINER_0
const EVENT_BEAT_VERMILION_GYM_TRAINER_1
const EVENT_BEAT_VERMILION_GYM_TRAINER_2
const EVENT_165
const EVENT_GOT_TM24
const EVENT_BEAT_LT_SURGE
const EVENT_168
const EVENT_169
const EVENT_16A
const EVENT_16B
const EVENT_16C
const EVENT_16D
const EVENT_16E
const EVENT_16F
const EVENT_170
const EVENT_171
const EVENT_172
const EVENT_173
const EVENT_174
const EVENT_175
const EVENT_176
const EVENT_177
const EVENT_178
const EVENT_179
const EVENT_17A
const EVENT_17B
const EVENT_17C
const EVENT_17D
const EVENT_17E
const EVENT_17F
const EVENT_GOT_TM41
const EVENT_181
const EVENT_182
const EVENT_183
const EVENT_184
const EVENT_185
const EVENT_186
const EVENT_187
const EVENT_188
const EVENT_189
const EVENT_18A
const EVENT_18B
const EVENT_GOT_TM13
const EVENT_GOT_TM48
const EVENT_GOT_TM49
const EVENT_GOT_TM18
const EVENT_190
const EVENT_191
const EVENT_192
const EVENT_193
const EVENT_194
const EVENT_195
const EVENT_196
const EVENT_197
const EVENT_198
const EVENT_199
const EVENT_19A
const EVENT_19B
const EVENT_19C
const EVENT_19D
const EVENT_19E
const EVENT_19F
const EVENT_1A0
const EVENT_1A1
const EVENT_1A2
const EVENT_1A3
const EVENT_1A4
const EVENT_1A5
const EVENT_1A6
const EVENT_1A7
const EVENT_GOT_TM21
const EVENT_BEAT_ERIKA
const EVENT_BEAT_CELADON_GYM_TRAINER_0
const EVENT_BEAT_CELADON_GYM_TRAINER_1
const EVENT_BEAT_CELADON_GYM_TRAINER_2
const EVENT_BEAT_CELADON_GYM_TRAINER_3
const EVENT_BEAT_CELADON_GYM_TRAINER_4
const EVENT_BEAT_CELADON_GYM_TRAINER_5
const EVENT_BEAT_CELADON_GYM_TRAINER_6
const EVENT_1B1
const EVENT_1B2
const EVENT_1B3
const EVENT_1B4
const EVENT_1B5
const EVENT_1B6
const EVENT_1B7
const EVENT_1B8
const EVENT_FOUND_ROCKET_HIDEOUT
const EVENT_GOT_10_COINS
const EVENT_GOT_20_COINS
const EVENT_GOT_20_COINS_2
const EVENT_1BD
const EVENT_1BE
const EVENT_1BF
const EVENT_1C0
const EVENT_1C1
const EVENT_1C2
const EVENT_1C3
const EVENT_1C4
const EVENT_1C5
const EVENT_1C6
const EVENT_1C7
const EVENT_1C8
const EVENT_1C9
const EVENT_1CA
const EVENT_1CB
const EVENT_1CC
const EVENT_1CD
const EVENT_1CE
const EVENT_1CF
const EVENT_1D0
const EVENT_1D1
const EVENT_1D2
const EVENT_1D3
const EVENT_1D4
const EVENT_1D5
const EVENT_1D6
const EVENT_1D7
const EVENT_1D8
const EVENT_1D9
const EVENT_1DA
const EVENT_1DB
const EVENT_1DC
const EVENT_1DD
const EVENT_1DE
const EVENT_1DF
const EVENT_GOT_COIN_CASE
const EVENT_1E1
const EVENT_1E2
const EVENT_1E3
const EVENT_1E4
const EVENT_1E5
const EVENT_1E6
const EVENT_1E7
const EVENT_1E8
const EVENT_1E9
const EVENT_1EA
const EVENT_1EB
const EVENT_1EC
const EVENT_1ED
const EVENT_1EE
const EVENT_1EF
const EVENT_1F0
const EVENT_1F1
const EVENT_1F2
const EVENT_1F3
const EVENT_1F4
const EVENT_1F5
const EVENT_1F6
const EVENT_1F7
const EVENT_1F8
const EVENT_1F9
const EVENT_1FA
const EVENT_1FB
const EVENT_1FC
const EVENT_1FD
const EVENT_1FE
const EVENT_1FF
const EVENT_200
const EVENT_201
const EVENT_202
const EVENT_203
const EVENT_204
const EVENT_205
const EVENT_206
const EVENT_207
const EVENT_208
const EVENT_209
const EVENT_20A
const EVENT_20B
const EVENT_20C
const EVENT_20D
const EVENT_20E
const EVENT_20F
const EVENT_210
const EVENT_211
const EVENT_212
const EVENT_213
const EVENT_214
const EVENT_215
const EVENT_216
const EVENT_217
const EVENT_218
const EVENT_219
const EVENT_21A
const EVENT_21B
const EVENT_21C
const EVENT_21D
const EVENT_21E
const EVENT_21F
const EVENT_220
const EVENT_221
const EVENT_222
const EVENT_223
const EVENT_224
const EVENT_225
const EVENT_226
const EVENT_227
const EVENT_228
const EVENT_229
const EVENT_22A
const EVENT_22B
const EVENT_22C
const EVENT_22D
const EVENT_22E
const EVENT_22F
const EVENT_230
const EVENT_231
const EVENT_232
const EVENT_233
const EVENT_234
const EVENT_235
const EVENT_236
const EVENT_237
const EVENT_GOT_HM04
const EVENT_GAVE_GOLD_TEETH
const EVENT_23A
const EVENT_23B
const EVENT_23C
const EVENT_23D
const EVENT_23E
const EVENT_23F
const EVENT_240
const EVENT_241
const EVENT_242
const EVENT_243
const EVENT_244
const EVENT_245
const EVENT_246
const EVENT_247
const EVENT_248
const EVENT_249
const EVENT_24A
const EVENT_24B
const EVENT_24C
const EVENT_24D
const EVENT_SAFARI_GAME_OVER
const EVENT_IN_SAFARI_ZONE
const EVENT_250
const EVENT_251
const EVENT_252
const EVENT_253
const EVENT_254
const EVENT_255
const EVENT_256
const EVENT_257
const EVENT_GOT_TM06
const EVENT_BEAT_KOGA
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_0
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_1
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_2
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_3
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_4
const EVENT_BEAT_FUCHSIA_GYM_TRAINER_5
const EVENT_260
const EVENT_261
const EVENT_262
const EVENT_263
const EVENT_264
const EVENT_265
const EVENT_266
const EVENT_267
const EVENT_268
const EVENT_269
const EVENT_26A
const EVENT_26B
const EVENT_26C
const EVENT_26D
const EVENT_26E
const EVENT_26F
const EVENT_270
const EVENT_271
const EVENT_272
const EVENT_273
const EVENT_274
const EVENT_275
const EVENT_276
const EVENT_277
const EVENT_MANSION_SWITCH_ON
const EVENT_279
const EVENT_27A
const EVENT_27B
const EVENT_27C
const EVENT_27D
const EVENT_27E
const EVENT_27F
const EVENT_280
const EVENT_281
const EVENT_282
const EVENT_283
const EVENT_284
const EVENT_285
const EVENT_286
const EVENT_287
const EVENT_288
const EVENT_BEAT_MANSION_1_TRAINER_0
const EVENT_28A
const EVENT_28B
const EVENT_28C
const EVENT_28D
const EVENT_28E
const EVENT_28F
const EVENT_290
const EVENT_291
const EVENT_292
const EVENT_293
const EVENT_294
const EVENT_295
const EVENT_296
const EVENT_297
const EVENT_GOT_TM38
const EVENT_BEAT_BLAINE
const EVENT_BEAT_CINNABAR_GYM_TRAINER_0
const EVENT_BEAT_CINNABAR_GYM_TRAINER_1
const EVENT_BEAT_CINNABAR_GYM_TRAINER_2
const EVENT_BEAT_CINNABAR_GYM_TRAINER_3
const EVENT_BEAT_CINNABAR_GYM_TRAINER_4
const EVENT_BEAT_CINNABAR_GYM_TRAINER_5
const EVENT_BEAT_CINNABAR_GYM_TRAINER_6
const EVENT_2A1
const EVENT_2A2
const EVENT_2A3
const EVENT_2A4
const EVENT_2A5
const EVENT_2A6
const EVENT_2A7
const EVENT_CINNABAR_GYM_GATE0_UNLOCKED
const EVENT_CINNABAR_GYM_GATE1_UNLOCKED
const EVENT_CINNABAR_GYM_GATE2_UNLOCKED
const EVENT_CINNABAR_GYM_GATE3_UNLOCKED
const EVENT_CINNABAR_GYM_GATE4_UNLOCKED
const EVENT_CINNABAR_GYM_GATE5_UNLOCKED
const EVENT_CINNABAR_GYM_GATE6_UNLOCKED
const EVENT_2AF
const EVENT_2B0
const EVENT_2B1
const EVENT_2B2
const EVENT_2B3
const EVENT_2B4
const EVENT_2B5
const EVENT_2B6
const EVENT_2B7
const EVENT_2B8
const EVENT_2B9
const EVENT_2BA
const EVENT_2BB
const EVENT_2BC
const EVENT_2BD
const EVENT_2BE
const EVENT_2BF
const EVENT_2C0
const EVENT_2C1
const EVENT_2C2
const EVENT_2C3
const EVENT_2C4
const EVENT_2C5
const EVENT_2C6
const EVENT_2C7
const EVENT_2C8
const EVENT_2C9
const EVENT_2CA
const EVENT_2CB
const EVENT_2CC
const EVENT_2CD
const EVENT_2CE
const EVENT_2CF
const EVENT_2D0
const EVENT_2D1
const EVENT_2D2
const EVENT_2D3
const EVENT_2D4
const EVENT_2D5
const EVENT_2D6
const EVENT_GOT_TM35
const EVENT_2D8
const EVENT_2D9
const EVENT_2DA
const EVENT_2DB
const EVENT_2DC
const EVENT_2DD
const EVENT_2DE
const EVENT_2DF
const EVENT_GAVE_FOSSIL_TO_LAB
const EVENT_LAB_STILL_REVIVING_FOSSIL
const EVENT_LAB_HANDING_OVER_FOSSIL_MON
const EVENT_2E3
const EVENT_2E4
const EVENT_2E5
const EVENT_2E6
const EVENT_2E7
const EVENT_2E8
const EVENT_2E9
const EVENT_2EA
const EVENT_2EB
const EVENT_2EC
const EVENT_2ED
const EVENT_2EE
const EVENT_2EF
const EVENT_2F0
const EVENT_2F1
const EVENT_2F2
const EVENT_2F3
const EVENT_2F4
const EVENT_2F5
const EVENT_2F6
const EVENT_2F7
const EVENT_2F8
const EVENT_2F9
const EVENT_2FA
const EVENT_2FB
const EVENT_2FC
const EVENT_2FD
const EVENT_2FE
const EVENT_2FF
const EVENT_300
const EVENT_301
const EVENT_302
const EVENT_303
const EVENT_304
const EVENT_305
const EVENT_306
const EVENT_307
const EVENT_308
const EVENT_309
const EVENT_30A
const EVENT_30B
const EVENT_30C
const EVENT_30D
const EVENT_30E
const EVENT_30F
const EVENT_310
const EVENT_311
const EVENT_312
const EVENT_313
const EVENT_314
const EVENT_315
const EVENT_316
const EVENT_317
const EVENT_318
const EVENT_319
const EVENT_31A
const EVENT_31B
const EVENT_31C
const EVENT_31D
const EVENT_31E
const EVENT_31F
const EVENT_320
const EVENT_321
const EVENT_322
const EVENT_323
const EVENT_324
const EVENT_325
const EVENT_326
const EVENT_327
const EVENT_328
const EVENT_329
const EVENT_32A
const EVENT_32B
const EVENT_32C
const EVENT_32D
const EVENT_32E
const EVENT_32F
const EVENT_330
const EVENT_331
const EVENT_332
const EVENT_333
const EVENT_334
const EVENT_335
const EVENT_336
const EVENT_337
const EVENT_338
const EVENT_339
const EVENT_33A
const EVENT_33B
const EVENT_33C
const EVENT_33D
const EVENT_33E
const EVENT_33F
const EVENT_GOT_TM31
const EVENT_341
const EVENT_342
const EVENT_343
const EVENT_344
const EVENT_345
const EVENT_346
const EVENT_347
const EVENT_348
const EVENT_349
const EVENT_34A
const EVENT_34B
const EVENT_34C
const EVENT_34D
const EVENT_34E
const EVENT_34F
const EVENT_DEFEATED_FIGHTING_DOJO
const EVENT_BEAT_KARATE_MASTER
const EVENT_BEAT_FIGHTING_DOJO_TRAINER_0
const EVENT_BEAT_FIGHTING_DOJO_TRAINER_1
const EVENT_BEAT_FIGHTING_DOJO_TRAINER_2
const EVENT_BEAT_FIGHTING_DOJO_TRAINER_3
const EVENT_GOT_HITMONLEE
const EVENT_GOT_HITMONCHAN
const EVENT_358
const EVENT_359
const EVENT_35A
const EVENT_35B
const EVENT_35C
const EVENT_35D
const EVENT_35E
const EVENT_35F
const EVENT_GOT_TM46
const EVENT_BEAT_SABRINA
const EVENT_BEAT_SAFFRON_GYM_TRAINER_0
const EVENT_BEAT_SAFFRON_GYM_TRAINER_1
const EVENT_BEAT_SAFFRON_GYM_TRAINER_2
const EVENT_BEAT_SAFFRON_GYM_TRAINER_3
const EVENT_BEAT_SAFFRON_GYM_TRAINER_4
const EVENT_BEAT_SAFFRON_GYM_TRAINER_5
const EVENT_BEAT_SAFFRON_GYM_TRAINER_6
const EVENT_369
const EVENT_36A
const EVENT_36B
const EVENT_36C
const EVENT_36D
const EVENT_36E
const EVENT_36F
const EVENT_370
const EVENT_371
const EVENT_372
const EVENT_373
const EVENT_374
const EVENT_375
const EVENT_376
const EVENT_377
const EVENT_378
const EVENT_379
const EVENT_37A
const EVENT_37B
const EVENT_37C
const EVENT_37D
const EVENT_37E
const EVENT_37F
const EVENT_380
const EVENT_381
const EVENT_382
const EVENT_383
const EVENT_384
const EVENT_385
const EVENT_386
const EVENT_387
const EVENT_388
const EVENT_389
const EVENT_38A
const EVENT_38B
const EVENT_38C
const EVENT_38D
const EVENT_38E
const EVENT_38F
const EVENT_390
const EVENT_391
const EVENT_392
const EVENT_393
const EVENT_394
const EVENT_395
const EVENT_396
const EVENT_SILPH_CO_RECEPTIONIST_AT_DESK
const EVENT_398
const EVENT_399
const EVENT_39A
const EVENT_39B
const EVENT_39C
const EVENT_39D
const EVENT_39E
const EVENT_39F
const EVENT_3A0
const EVENT_3A1
const EVENT_3A2
const EVENT_3A3
const EVENT_3A4
const EVENT_3A5
const EVENT_3A6
const EVENT_3A7
const EVENT_3A8
const EVENT_3A9
const EVENT_3AA
const EVENT_3AB
const EVENT_3AC
const EVENT_3AD
const EVENT_3AE
const EVENT_3AF
const EVENT_GOT_TM29
const EVENT_3B1
const EVENT_3B2
const EVENT_3B3
const EVENT_3B4
const EVENT_3B5
const EVENT_3B6
const EVENT_3B7
const EVENT_3B8
const EVENT_3B9
const EVENT_3BA
const EVENT_3BB
const EVENT_3BC
const EVENT_3BD
const EVENT_3BE
const EVENT_3BF
const EVENT_GOT_POTION_SAMPLE
const EVENT_3C1
const EVENT_3C2
const EVENT_3C3
const EVENT_3C4
const EVENT_3C5
const EVENT_3C6
const EVENT_3C7
const EVENT_3C8
const EVENT_3C9
const EVENT_3CA
const EVENT_3CB
const EVENT_3CC
const EVENT_3CD
const EVENT_3CE
const EVENT_3CF
const EVENT_3D0
const EVENT_3D1
const EVENT_3D2
const EVENT_3D3
const EVENT_3D4
const EVENT_3D5
const EVENT_3D6
const EVENT_3D7
const EVENT_GOT_HM05
const EVENT_3D9
const EVENT_3DA
const EVENT_3DB
const EVENT_3DC
const EVENT_3DD
const EVENT_3DE
const EVENT_3DF
const EVENT_3E0
const EVENT_3E1
const EVENT_BEAT_ROUTE_3_TRAINER_0
const EVENT_BEAT_ROUTE_3_TRAINER_1
const EVENT_BEAT_ROUTE_3_TRAINER_2
const EVENT_BEAT_ROUTE_3_TRAINER_3
const EVENT_BEAT_ROUTE_3_TRAINER_4
const EVENT_BEAT_ROUTE_3_TRAINER_5
const EVENT_BEAT_ROUTE_3_TRAINER_6
const EVENT_BEAT_ROUTE_3_TRAINER_7
const EVENT_3EA
const EVENT_3EB
const EVENT_3EC
const EVENT_3ED
const EVENT_3EE
const EVENT_3EF
const EVENT_3F0
const EVENT_3F1
const EVENT_BEAT_ROUTE_4_TRAINER_0
const EVENT_3F3
const EVENT_3F4
const EVENT_3F5
const EVENT_3F6
const EVENT_3F7
const EVENT_3F8
const EVENT_3F9
const EVENT_3FA
const EVENT_3FB
const EVENT_3FC
const EVENT_3FD
const EVENT_3FE
const EVENT_BOUGHT_MAGIKARP
const EVENT_400
const EVENT_401
const EVENT_402
const EVENT_403
const EVENT_404
const EVENT_405
const EVENT_406
const EVENT_407
const EVENT_408
const EVENT_409
const EVENT_40A
const EVENT_40B
const EVENT_40C
const EVENT_40D
const EVENT_40E
const EVENT_40F
const EVENT_410
const EVENT_BEAT_ROUTE_6_TRAINER_0
const EVENT_BEAT_ROUTE_6_TRAINER_1
const EVENT_BEAT_ROUTE_6_TRAINER_2
const EVENT_BEAT_ROUTE_6_TRAINER_3
const EVENT_BEAT_ROUTE_6_TRAINER_4
const EVENT_BEAT_ROUTE_6_TRAINER_5
const EVENT_417
const EVENT_418
const EVENT_419
const EVENT_41A
const EVENT_41B
const EVENT_41C
const EVENT_41D
const EVENT_41E
const EVENT_41F
const EVENT_420
const EVENT_421
const EVENT_422
const EVENT_423
const EVENT_424
const EVENT_425
const EVENT_426
const EVENT_427
const EVENT_428
const EVENT_429
const EVENT_42A
const EVENT_42B
const EVENT_42C
const EVENT_42D
const EVENT_42E
const EVENT_42F
const EVENT_430
const EVENT_BEAT_ROUTE_8_TRAINER_0
const EVENT_BEAT_ROUTE_8_TRAINER_1
const EVENT_BEAT_ROUTE_8_TRAINER_2
const EVENT_BEAT_ROUTE_8_TRAINER_3
const EVENT_BEAT_ROUTE_8_TRAINER_4
const EVENT_BEAT_ROUTE_8_TRAINER_5
const EVENT_BEAT_ROUTE_8_TRAINER_6
const EVENT_BEAT_ROUTE_8_TRAINER_7
const EVENT_BEAT_ROUTE_8_TRAINER_8
const EVENT_43A
const EVENT_43B
const EVENT_43C
const EVENT_43D
const EVENT_43E
const EVENT_43F
const EVENT_440
const EVENT_BEAT_ROUTE_9_TRAINER_0
const EVENT_BEAT_ROUTE_9_TRAINER_1
const EVENT_BEAT_ROUTE_9_TRAINER_2
const EVENT_BEAT_ROUTE_9_TRAINER_3
const EVENT_BEAT_ROUTE_9_TRAINER_4
const EVENT_BEAT_ROUTE_9_TRAINER_5
const EVENT_BEAT_ROUTE_9_TRAINER_6
const EVENT_BEAT_ROUTE_9_TRAINER_7
const EVENT_BEAT_ROUTE_9_TRAINER_8
const EVENT_44A
const EVENT_44B
const EVENT_44C
const EVENT_44D
const EVENT_44E
const EVENT_44F
const EVENT_450
const EVENT_BEAT_ROUTE_10_TRAINER_0
const EVENT_BEAT_ROUTE_10_TRAINER_1
const EVENT_BEAT_ROUTE_10_TRAINER_2
const EVENT_BEAT_ROUTE_10_TRAINER_3
const EVENT_BEAT_ROUTE_10_TRAINER_4
const EVENT_BEAT_ROUTE_10_TRAINER_5
const EVENT_457
const EVENT_458
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_0
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_1
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_2
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_3
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_4
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_5
const EVENT_BEAT_ROCK_TUNNEL_1_TRAINER_6
const EVENT_460
const EVENT_BEAT_POWER_PLANT_VOLTORB_0
const EVENT_BEAT_POWER_PLANT_VOLTORB_1
const EVENT_BEAT_POWER_PLANT_VOLTORB_2
const EVENT_BEAT_POWER_PLANT_VOLTORB_3
const EVENT_BEAT_POWER_PLANT_VOLTORB_4
const EVENT_BEAT_POWER_PLANT_VOLTORB_5
const EVENT_BEAT_POWER_PLANT_VOLTORB_6
const EVENT_BEAT_POWER_PLANT_VOLTORB_7
const EVENT_BEAT_ZAPDOS
const EVENT_46A
const EVENT_46B
const EVENT_46C
const EVENT_46D
const EVENT_46E
const EVENT_46F
const EVENT_470
const EVENT_BEAT_ROUTE_11_TRAINER_0
const EVENT_BEAT_ROUTE_11_TRAINER_1
const EVENT_BEAT_ROUTE_11_TRAINER_2
const EVENT_BEAT_ROUTE_11_TRAINER_3
const EVENT_BEAT_ROUTE_11_TRAINER_4
const EVENT_BEAT_ROUTE_11_TRAINER_5
const EVENT_BEAT_ROUTE_11_TRAINER_6
const EVENT_BEAT_ROUTE_11_TRAINER_7
const EVENT_BEAT_ROUTE_11_TRAINER_8
const EVENT_BEAT_ROUTE_11_TRAINER_9
const EVENT_47B
const EVENT_47C
const EVENT_47D
const EVENT_47E
const EVENT_GOT_ITEMFINDER
const EVENT_GOT_TM39
const EVENT_481
const EVENT_BEAT_ROUTE_12_TRAINER_0
const EVENT_BEAT_ROUTE_12_TRAINER_1
const EVENT_BEAT_ROUTE_12_TRAINER_2
const EVENT_BEAT_ROUTE_12_TRAINER_3
const EVENT_BEAT_ROUTE_12_TRAINER_4
const EVENT_BEAT_ROUTE_12_TRAINER_5
const EVENT_BEAT_ROUTE_12_TRAINER_6
const EVENT_489
const EVENT_48A
const EVENT_48B
const EVENT_48C
const EVENT_48D
const EVENT_FIGHT_ROUTE12_SNORLAX
const EVENT_BEAT_ROUTE12_SNORLAX
const EVENT_490
const EVENT_BEAT_ROUTE_13_TRAINER_0
const EVENT_BEAT_ROUTE_13_TRAINER_1
const EVENT_BEAT_ROUTE_13_TRAINER_2
const EVENT_BEAT_ROUTE_13_TRAINER_3
const EVENT_BEAT_ROUTE_13_TRAINER_4
const EVENT_BEAT_ROUTE_13_TRAINER_5
const EVENT_BEAT_ROUTE_13_TRAINER_6
const EVENT_BEAT_ROUTE_13_TRAINER_7
const EVENT_BEAT_ROUTE_13_TRAINER_8
const EVENT_BEAT_ROUTE_13_TRAINER_9
const EVENT_49B
const EVENT_49C
const EVENT_49D
const EVENT_49E
const EVENT_49F
const EVENT_4A0
const EVENT_BEAT_ROUTE_14_TRAINER_0
const EVENT_BEAT_ROUTE_14_TRAINER_1
const EVENT_BEAT_ROUTE_14_TRAINER_2
const EVENT_BEAT_ROUTE_14_TRAINER_3
const EVENT_BEAT_ROUTE_14_TRAINER_4
const EVENT_BEAT_ROUTE_14_TRAINER_5
const EVENT_BEAT_ROUTE_14_TRAINER_6
const EVENT_BEAT_ROUTE_14_TRAINER_7
const EVENT_BEAT_ROUTE_14_TRAINER_8
const EVENT_BEAT_ROUTE_14_TRAINER_9
const EVENT_4AB
const EVENT_4AC
const EVENT_4AD
const EVENT_4AE
const EVENT_4AF
const EVENT_GOT_EXP_ALL
const EVENT_BEAT_ROUTE_15_TRAINER_0
const EVENT_BEAT_ROUTE_15_TRAINER_1
const EVENT_BEAT_ROUTE_15_TRAINER_2
const EVENT_BEAT_ROUTE_15_TRAINER_3
const EVENT_BEAT_ROUTE_15_TRAINER_4
const EVENT_BEAT_ROUTE_15_TRAINER_5
const EVENT_BEAT_ROUTE_15_TRAINER_6
const EVENT_BEAT_ROUTE_15_TRAINER_7
const EVENT_BEAT_ROUTE_15_TRAINER_8
const EVENT_BEAT_ROUTE_15_TRAINER_9
const EVENT_4BB
const EVENT_4BC
const EVENT_4BD
const EVENT_4BE
const EVENT_4BF
const EVENT_4C0
const EVENT_BEAT_ROUTE_16_TRAINER_0
const EVENT_BEAT_ROUTE_16_TRAINER_1
const EVENT_BEAT_ROUTE_16_TRAINER_2
const EVENT_BEAT_ROUTE_16_TRAINER_3
const EVENT_BEAT_ROUTE_16_TRAINER_4
const EVENT_BEAT_ROUTE_16_TRAINER_5
const EVENT_4C7
const EVENT_FIGHT_ROUTE16_SNORLAX
const EVENT_BEAT_ROUTE16_SNORLAX
const EVENT_4CA
const EVENT_4CB
const EVENT_4CC
const EVENT_4CD
const EVENT_GOT_HM02
const EVENT_RESCUED_MR_FUJI
const EVENT_4D0
const EVENT_BEAT_ROUTE_17_TRAINER_0
const EVENT_BEAT_ROUTE_17_TRAINER_1
const EVENT_BEAT_ROUTE_17_TRAINER_2
const EVENT_BEAT_ROUTE_17_TRAINER_3
const EVENT_BEAT_ROUTE_17_TRAINER_4
const EVENT_BEAT_ROUTE_17_TRAINER_5
const EVENT_BEAT_ROUTE_17_TRAINER_6
const EVENT_BEAT_ROUTE_17_TRAINER_7
const EVENT_BEAT_ROUTE_17_TRAINER_8
const EVENT_BEAT_ROUTE_17_TRAINER_9
const EVENT_4DB
const EVENT_4DC
const EVENT_4DD
const EVENT_4DE
const EVENT_4DF
const EVENT_4E0
const EVENT_BEAT_ROUTE_18_TRAINER_0
const EVENT_BEAT_ROUTE_18_TRAINER_1
const EVENT_BEAT_ROUTE_18_TRAINER_2
const EVENT_4E4
const EVENT_4E5
const EVENT_4E6
const EVENT_4E7
const EVENT_4E8
const EVENT_4E9
const EVENT_4EA
const EVENT_4EB
const EVENT_4EC
const EVENT_4ED
const EVENT_4EE
const EVENT_4EF
const EVENT_4F0
const EVENT_BEAT_ROUTE_19_TRAINER_0
const EVENT_BEAT_ROUTE_19_TRAINER_1
const EVENT_BEAT_ROUTE_19_TRAINER_2
const EVENT_BEAT_ROUTE_19_TRAINER_3
const EVENT_BEAT_ROUTE_19_TRAINER_4
const EVENT_BEAT_ROUTE_19_TRAINER_5
const EVENT_BEAT_ROUTE_19_TRAINER_6
const EVENT_BEAT_ROUTE_19_TRAINER_7
const EVENT_BEAT_ROUTE_19_TRAINER_8
const EVENT_BEAT_ROUTE_19_TRAINER_9
const EVENT_4FB
const EVENT_4FC
const EVENT_4FD
const EVENT_4FE
const EVENT_4FF
const EVENT_IN_SEAFOAM_ISLANDS
const EVENT_BEAT_ROUTE_20_TRAINER_0
const EVENT_BEAT_ROUTE_20_TRAINER_1
const EVENT_BEAT_ROUTE_20_TRAINER_2
const EVENT_BEAT_ROUTE_20_TRAINER_3
const EVENT_BEAT_ROUTE_20_TRAINER_4
const EVENT_BEAT_ROUTE_20_TRAINER_5
const EVENT_BEAT_ROUTE_20_TRAINER_6
const EVENT_BEAT_ROUTE_20_TRAINER_7
const EVENT_BEAT_ROUTE_20_TRAINER_8
const EVENT_BEAT_ROUTE_20_TRAINER_9
const EVENT_50B
const EVENT_50C
const EVENT_50D
const EVENT_SEAFOAM1_BOULDER1_DOWN_HOLE
const EVENT_SEAFOAM1_BOULDER2_DOWN_HOLE
const EVENT_510
const EVENT_BEAT_ROUTE_21_TRAINER_0
const EVENT_BEAT_ROUTE_21_TRAINER_1
const EVENT_BEAT_ROUTE_21_TRAINER_2
const EVENT_BEAT_ROUTE_21_TRAINER_3
const EVENT_BEAT_ROUTE_21_TRAINER_4
const EVENT_BEAT_ROUTE_21_TRAINER_5
const EVENT_BEAT_ROUTE_21_TRAINER_6
const EVENT_BEAT_ROUTE_21_TRAINER_7
const EVENT_BEAT_ROUTE_21_TRAINER_8
const EVENT_51A
const EVENT_51B
const EVENT_51C
const EVENT_51D
const EVENT_51E
const EVENT_51F
const EVENT_1ST_ROUTE22_RIVAL_BATTLE
const EVENT_2ND_ROUTE22_RIVAL_BATTLE
const EVENT_522
const EVENT_523
const EVENT_524
const EVENT_BEAT_ROUTE22_RIVAL_1ST_BATTLE
const EVENT_BEAT_ROUTE22_RIVAL_2ND_BATTLE
const EVENT_ROUTE22_RIVAL_WANTS_BATTLE
const EVENT_528
const EVENT_529
const EVENT_52A
const EVENT_52B
const EVENT_52C
const EVENT_52D
const EVENT_52E
const EVENT_52F
const EVENT_PASSED_CASCADEBADGE_CHECK
const EVENT_PASSED_THUNDERBADGE_CHECK
const EVENT_PASSED_RAINBOWBADGE_CHECK
const EVENT_PASSED_SOULBADGE_CHECK
const EVENT_PASSED_MARSHBADGE_CHECK
const EVENT_PASSED_VOLCANOBADGE_CHECK
const EVENT_PASSED_EARTHBADGE_CHECK
const EVENT_537
const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH1
const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_0
const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_1
const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_2
const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_3
const EVENT_BEAT_VICTORY_ROAD_2_TRAINER_4
const EVENT_BEAT_MOLTRES
const EVENT_VICTORY_ROAD_2_BOULDER_ON_SWITCH2
const EVENT_GOT_NUGGET
const EVENT_BEAT_ROUTE24_ROCKET
const EVENT_BEAT_ROUTE_24_TRAINER_0
const EVENT_BEAT_ROUTE_24_TRAINER_1
const EVENT_BEAT_ROUTE_24_TRAINER_2
const EVENT_BEAT_ROUTE_24_TRAINER_3
const EVENT_BEAT_ROUTE_24_TRAINER_4
const EVENT_BEAT_ROUTE_24_TRAINER_5
const EVENT_548
const EVENT_NUGGET_REWARD_AVAILABLE
const EVENT_54A
const EVENT_54B
const EVENT_54C
const EVENT_54D
const EVENT_54E
const EVENT_54F
const EVENT_MET_BILL
const EVENT_BEAT_ROUTE_25_TRAINER_0
const EVENT_BEAT_ROUTE_25_TRAINER_1
const EVENT_BEAT_ROUTE_25_TRAINER_2
const EVENT_BEAT_ROUTE_25_TRAINER_3
const EVENT_BEAT_ROUTE_25_TRAINER_4
const EVENT_BEAT_ROUTE_25_TRAINER_5
const EVENT_BEAT_ROUTE_25_TRAINER_6
const EVENT_BEAT_ROUTE_25_TRAINER_7
const EVENT_BEAT_ROUTE_25_TRAINER_8
const EVENT_55A
const EVENT_USED_CELL_SEPARATOR_ON_BILL
const EVENT_GOT_SS_TICKET
const EVENT_MET_BILL_2
const EVENT_BILL_SAID_USE_CELL_SEPARATOR
const EVENT_LEFT_BILLS_HOUSE_AFTER_HELPING
const EVENT_560
const EVENT_561
const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_0
const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_1
const EVENT_BEAT_VIRIDIAN_FOREST_TRAINER_2
const EVENT_565
const EVENT_566
const EVENT_567
const EVENT_568
const EVENT_569
const EVENT_56A
const EVENT_56B
const EVENT_56C
const EVENT_56D
const EVENT_56E
const EVENT_56F
const EVENT_570
const EVENT_BEAT_MT_MOON_1_TRAINER_0
const EVENT_BEAT_MT_MOON_1_TRAINER_1
const EVENT_BEAT_MT_MOON_1_TRAINER_2
const EVENT_BEAT_MT_MOON_1_TRAINER_3
const EVENT_BEAT_MT_MOON_1_TRAINER_4
const EVENT_BEAT_MT_MOON_1_TRAINER_5
const EVENT_BEAT_MT_MOON_1_TRAINER_6
const EVENT_578
const EVENT_BEAT_MT_MOON_EXIT_SUPER_NERD
const EVENT_BEAT_MT_MOON_3_TRAINER_0
const EVENT_BEAT_MT_MOON_3_TRAINER_1
const EVENT_BEAT_MT_MOON_3_TRAINER_2
const EVENT_BEAT_MT_MOON_3_TRAINER_3
const EVENT_GOT_DOME_FOSSIL
const EVENT_GOT_HELIX_FOSSIL
const EVENT_580
const EVENT_581
const EVENT_582
const EVENT_583
const EVENT_584
const EVENT_585
const EVENT_586
const EVENT_587
const EVENT_588
const EVENT_589
const EVENT_58A
const EVENT_58B
const EVENT_58C
const EVENT_58D
const EVENT_58E
const EVENT_58F
const EVENT_590
const EVENT_591
const EVENT_592
const EVENT_593
const EVENT_594
const EVENT_595
const EVENT_596
const EVENT_597
const EVENT_598
const EVENT_599
const EVENT_59A
const EVENT_59B
const EVENT_59C
const EVENT_59D
const EVENT_59E
const EVENT_59F
const EVENT_5A0
const EVENT_5A1
const EVENT_5A2
const EVENT_5A3
const EVENT_5A4
const EVENT_5A5
const EVENT_5A6
const EVENT_5A7
const EVENT_5A8
const EVENT_5A9
const EVENT_5AA
const EVENT_5AB
const EVENT_5AC
const EVENT_5AD
const EVENT_5AE
const EVENT_5AF
const EVENT_5B0
const EVENT_5B1
const EVENT_5B2
const EVENT_5B3
const EVENT_5B4
const EVENT_5B5
const EVENT_5B6
const EVENT_5B7
const EVENT_5B8
const EVENT_5B9
const EVENT_5BA
const EVENT_5BB
const EVENT_5BC
const EVENT_5BD
const EVENT_5BE
const EVENT_5BF
const EVENT_5C0
const EVENT_5C1
const EVENT_5C2
const EVENT_5C3
const EVENT_BEAT_SS_ANNE_5_TRAINER_0
const EVENT_BEAT_SS_ANNE_5_TRAINER_1
const EVENT_5C6
const EVENT_5C7
const EVENT_5C8
const EVENT_5C9
const EVENT_5CA
const EVENT_5CB
const EVENT_5CC
const EVENT_5CD
const EVENT_5CE
const EVENT_5CF
const EVENT_5D0
const EVENT_5D1
const EVENT_5D2
const EVENT_5D3
const EVENT_5D4
const EVENT_5D5
const EVENT_5D6
const EVENT_5D7
const EVENT_5D8
const EVENT_5D9
const EVENT_5DA
const EVENT_5DB
const EVENT_5DC
const EVENT_5DD
const EVENT_5DE
const EVENT_5DF
const EVENT_GOT_HM01
const EVENT_RUBBED_CAPTAINS_BACK
const EVENT_SS_ANNE_LEFT
const EVENT_WALKED_PAST_GUARD_AFTER_SS_ANNE_LEFT
const EVENT_STARTED_WALKING_OUT_OF_DOCK
const EVENT_WALKED_OUT_OF_DOCK
const EVENT_5E6
const EVENT_5E7
const EVENT_5E8
const EVENT_5E9
const EVENT_5EA
const EVENT_5EB
const EVENT_5EC
const EVENT_5ED
const EVENT_5EE
const EVENT_5EF
const EVENT_5F0
const EVENT_BEAT_SS_ANNE_8_TRAINER_0
const EVENT_BEAT_SS_ANNE_8_TRAINER_1
const EVENT_BEAT_SS_ANNE_8_TRAINER_2
const EVENT_BEAT_SS_ANNE_8_TRAINER_3
const EVENT_5F5
const EVENT_5F6
const EVENT_5F7
const EVENT_5F8
const EVENT_5F9
const EVENT_5FA
const EVENT_5FB
const EVENT_5FC
const EVENT_5FD
const EVENT_5FE
const EVENT_5FF
const EVENT_600
const EVENT_BEAT_SS_ANNE_9_TRAINER_0
const EVENT_BEAT_SS_ANNE_9_TRAINER_1
const EVENT_BEAT_SS_ANNE_9_TRAINER_2
const EVENT_BEAT_SS_ANNE_9_TRAINER_3
const EVENT_605
const EVENT_606
const EVENT_607
const EVENT_608
const EVENT_609
const EVENT_60A
const EVENT_60B
const EVENT_60C
const EVENT_60D
const EVENT_60E
const EVENT_60F
const EVENT_610
const EVENT_BEAT_SS_ANNE_10_TRAINER_0
const EVENT_BEAT_SS_ANNE_10_TRAINER_1
const EVENT_BEAT_SS_ANNE_10_TRAINER_2
const EVENT_BEAT_SS_ANNE_10_TRAINER_3
const EVENT_BEAT_SS_ANNE_10_TRAINER_4
const EVENT_BEAT_SS_ANNE_10_TRAINER_5
const EVENT_617
const EVENT_618
const EVENT_619
const EVENT_61A
const EVENT_61B
const EVENT_61C
const EVENT_61D
const EVENT_61E
const EVENT_61F
const EVENT_620
const EVENT_621
const EVENT_622
const EVENT_623
const EVENT_624
const EVENT_625
const EVENT_626
const EVENT_627
const EVENT_628
const EVENT_629
const EVENT_62A
const EVENT_62B
const EVENT_62C
const EVENT_62D
const EVENT_62E
const EVENT_62F
const EVENT_630
const EVENT_631
const EVENT_632
const EVENT_633
const EVENT_634
const EVENT_635
const EVENT_636
const EVENT_637
const EVENT_638
const EVENT_639
const EVENT_63A
const EVENT_63B
const EVENT_63C
const EVENT_63D
const EVENT_63E
const EVENT_63F
const EVENT_640
const EVENT_641
const EVENT_642
const EVENT_643
const EVENT_644
const EVENT_645
const EVENT_646
const EVENT_647
const EVENT_648
const EVENT_649
const EVENT_64A
const EVENT_64B
const EVENT_64C
const EVENT_64D
const EVENT_64E
const EVENT_64F
const EVENT_650
const EVENT_651
const EVENT_652
const EVENT_653
const EVENT_654
const EVENT_655
const EVENT_656
const EVENT_657
const EVENT_658
const EVENT_659
const EVENT_65A
const EVENT_65B
const EVENT_65C
const EVENT_65D
const EVENT_65E
const EVENT_65F
const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH1
const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_0
const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_1
const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_2
const EVENT_BEAT_VICTORY_ROAD_3_TRAINER_3
const EVENT_665
const EVENT_VICTORY_ROAD_3_BOULDER_ON_SWITCH2
const EVENT_667
const EVENT_668
const EVENT_669
const EVENT_66A
const EVENT_66B
const EVENT_66C
const EVENT_66D
const EVENT_66E
const EVENT_66F
const EVENT_670
const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_0
const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_1
const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_2
const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_3
const EVENT_BEAT_ROCKET_HIDEOUT_1_TRAINER_4
const EVENT_676
const EVENT_677
const EVENT_678
const EVENT_679
const EVENT_67A
const EVENT_67B
const EVENT_67C
const EVENT_67D
const EVENT_67E
const EVENT_67F
const EVENT_680
const EVENT_BEAT_ROCKET_HIDEOUT_2_TRAINER_0
const EVENT_682
const EVENT_683
const EVENT_684
const EVENT_685
const EVENT_686
const EVENT_687
const EVENT_688
const EVENT_689
const EVENT_68A
const EVENT_68B
const EVENT_68C
const EVENT_68D
const EVENT_68E
const EVENT_68F
const EVENT_690
const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_0
const EVENT_BEAT_ROCKET_HIDEOUT_3_TRAINER_1
const EVENT_693
const EVENT_694
const EVENT_695
const EVENT_696
const EVENT_697
const EVENT_698
const EVENT_699
const EVENT_69A
const EVENT_69B
const EVENT_69C
const EVENT_69D
const EVENT_69E
const EVENT_69F
const EVENT_6A0
const EVENT_6A1
const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_0
const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_1
const EVENT_BEAT_ROCKET_HIDEOUT_4_TRAINER_2
const EVENT_ROCKET_HIDEOUT_4_DOOR_UNLOCKED
const EVENT_ROCKET_DROPPED_LIFT_KEY
const EVENT_BEAT_ROCKET_HIDEOUT_GIOVANNI
const EVENT_6A8
const EVENT_6A9
const EVENT_6AA
const EVENT_6AB
const EVENT_6AC
const EVENT_6AD
const EVENT_6AE
const EVENT_6AF
const EVENT_6B0
const EVENT_6B1
const EVENT_6B2
const EVENT_6B3
const EVENT_6B4
const EVENT_6B5
const EVENT_6B6
const EVENT_6B7
const EVENT_6B8
const EVENT_6B9
const EVENT_6BA
const EVENT_6BB
const EVENT_6BC
const EVENT_6BD
const EVENT_6BE
const EVENT_6BF
const EVENT_6C0
const EVENT_6C1
const EVENT_6C2
const EVENT_6C3
const EVENT_6C4
const EVENT_6C5
const EVENT_6C6
const EVENT_6C7
const EVENT_6C8
const EVENT_6C9
const EVENT_6CA
const EVENT_6CB
const EVENT_6CC
const EVENT_6CD
const EVENT_6CE
const EVENT_6CF
const EVENT_6D0
const EVENT_6D1
const EVENT_6D2
const EVENT_6D3
const EVENT_6D4
const EVENT_6D5
const EVENT_6D6
const EVENT_6D7
const EVENT_6D8
const EVENT_6D9
const EVENT_6DA
const EVENT_6DB
const EVENT_6DC
const EVENT_6DD
const EVENT_6DE
const EVENT_6DF
const EVENT_6E0
const EVENT_6E1
const EVENT_6E2
const EVENT_6E3
const EVENT_6E4
const EVENT_6E5
const EVENT_6E6
const EVENT_6E7
const EVENT_6E8
const EVENT_6E9
const EVENT_6EA
const EVENT_6EB
const EVENT_6EC
const EVENT_6ED
const EVENT_6EE
const EVENT_6EF
const EVENT_6F0
const EVENT_6F1
const EVENT_BEAT_SILPH_CO_2F_TRAINER_0
const EVENT_BEAT_SILPH_CO_2F_TRAINER_1
const EVENT_BEAT_SILPH_CO_2F_TRAINER_2
const EVENT_BEAT_SILPH_CO_2F_TRAINER_3
const EVENT_6F6
const EVENT_6F7
const EVENT_6F8
const EVENT_6F9
const EVENT_6FA
const EVENT_6FB
const EVENT_6FC
const EVENT_SILPH_CO_2_UNLOCKED_DOOR1
const EVENT_SILPH_CO_2_UNLOCKED_DOOR2
const EVENT_GOT_TM36
const EVENT_700
const EVENT_701
const EVENT_BEAT_SILPH_CO_3F_TRAINER_0
const EVENT_BEAT_SILPH_CO_3F_TRAINER_1
const EVENT_704
const EVENT_705
const EVENT_706
const EVENT_707
const EVENT_SILPH_CO_3_UNLOCKED_DOOR1
const EVENT_SILPH_CO_3_UNLOCKED_DOOR2
const EVENT_70A
const EVENT_70B
const EVENT_70C
const EVENT_70D
const EVENT_70E
const EVENT_70F
const EVENT_710
const EVENT_711
const EVENT_BEAT_SILPH_CO_4F_TRAINER_0
const EVENT_BEAT_SILPH_CO_4F_TRAINER_1
const EVENT_BEAT_SILPH_CO_4F_TRAINER_2
const EVENT_715
const EVENT_716
const EVENT_717
const EVENT_SILPH_CO_4_UNLOCKED_DOOR1
const EVENT_SILPH_CO_4_UNLOCKED_DOOR2
const EVENT_71A
const EVENT_71B
const EVENT_71C
const EVENT_71D
const EVENT_71E
const EVENT_71F
const EVENT_720
const EVENT_721
const EVENT_BEAT_SILPH_CO_5F_TRAINER_0
const EVENT_BEAT_SILPH_CO_5F_TRAINER_1
const EVENT_BEAT_SILPH_CO_5F_TRAINER_2
const EVENT_BEAT_SILPH_CO_5F_TRAINER_3
const EVENT_726
const EVENT_727
const EVENT_SILPH_CO_5_UNLOCKED_DOOR1
const EVENT_SILPH_CO_5_UNLOCKED_DOOR2
const EVENT_SILPH_CO_5_UNLOCKED_DOOR3
const EVENT_72B
const EVENT_72C
const EVENT_72D
const EVENT_72E
const EVENT_72F
const EVENT_730
const EVENT_731
const EVENT_732
const EVENT_733
const EVENT_734
const EVENT_735
const EVENT_BEAT_SILPH_CO_6F_TRAINER_0
const EVENT_BEAT_SILPH_CO_6F_TRAINER_1
const EVENT_BEAT_SILPH_CO_6F_TRAINER_2
const EVENT_739
const EVENT_73A
const EVENT_73B
const EVENT_73C
const EVENT_73D
const EVENT_73E
const EVENT_SILPH_CO_6_UNLOCKED_DOOR
const EVENT_BEAT_SILPH_CO_RIVAL
const EVENT_741
const EVENT_742
const EVENT_743
const EVENT_744
const EVENT_BEAT_SILPH_CO_7F_TRAINER_0
const EVENT_BEAT_SILPH_CO_7F_TRAINER_1
const EVENT_BEAT_SILPH_CO_7F_TRAINER_2
const EVENT_BEAT_SILPH_CO_7F_TRAINER_3
const EVENT_749
const EVENT_74A
const EVENT_74B
const EVENT_SILPH_CO_7_UNLOCKED_DOOR1
const EVENT_SILPH_CO_7_UNLOCKED_DOOR2
const EVENT_SILPH_CO_7_UNLOCKED_DOOR3
const EVENT_74F
const EVENT_750
const EVENT_751
const EVENT_BEAT_SILPH_CO_8F_TRAINER_0
const EVENT_BEAT_SILPH_CO_8F_TRAINER_1
const EVENT_BEAT_SILPH_CO_8F_TRAINER_2
const EVENT_755
const EVENT_756
const EVENT_757
const EVENT_SILPH_CO_8_UNLOCKED_DOOR
const EVENT_759
const EVENT_75A
const EVENT_75B
const EVENT_75C
const EVENT_75D
const EVENT_75E
const EVENT_75F
const EVENT_760
const EVENT_761
const EVENT_BEAT_SILPH_CO_9F_TRAINER_0
const EVENT_BEAT_SILPH_CO_9F_TRAINER_1
const EVENT_BEAT_SILPH_CO_9F_TRAINER_2
const EVENT_765
const EVENT_766
const EVENT_767
const EVENT_SILPH_CO_9_UNLOCKED_DOOR1
const EVENT_SILPH_CO_9_UNLOCKED_DOOR2
const EVENT_SILPH_CO_9_UNLOCKED_DOOR3
const EVENT_SILPH_CO_9_UNLOCKED_DOOR4
const EVENT_76C
const EVENT_76D
const EVENT_76E
const EVENT_76F
const EVENT_770
const EVENT_BEAT_SILPH_CO_10F_TRAINER_0
const EVENT_BEAT_SILPH_CO_10F_TRAINER_1
const EVENT_773
const EVENT_774
const EVENT_775
const EVENT_776
const EVENT_777
const EVENT_SILPH_CO_10_UNLOCKED_DOOR
const EVENT_779
const EVENT_77A
const EVENT_77B
const EVENT_77C
const EVENT_77D
const EVENT_77E
const EVENT_77F
const EVENT_780
const EVENT_781
const EVENT_782
const EVENT_783
const EVENT_BEAT_SILPH_CO_11F_TRAINER_0
const EVENT_BEAT_SILPH_CO_11F_TRAINER_1
const EVENT_786
const EVENT_787
const EVENT_SILPH_CO_11_UNLOCKED_DOOR
const EVENT_789
const EVENT_78A
const EVENT_78B
const EVENT_78C
const EVENT_GOT_MASTER_BALL
const EVENT_78E
const EVENT_BEAT_SILPH_CO_GIOVANNI
const EVENT_790
const EVENT_791
const EVENT_792
const EVENT_793
const EVENT_794
const EVENT_795
const EVENT_796
const EVENT_797
const EVENT_798
const EVENT_799
const EVENT_79A
const EVENT_79B
const EVENT_79C
const EVENT_79D
const EVENT_79E
const EVENT_79F
const EVENT_7A0
const EVENT_7A1
const EVENT_7A2
const EVENT_7A3
const EVENT_7A4
const EVENT_7A5
const EVENT_7A6
const EVENT_7A7
const EVENT_7A8
const EVENT_7A9
const EVENT_7AA
const EVENT_7AB
const EVENT_7AC
const EVENT_7AD
const EVENT_7AE
const EVENT_7AF
const EVENT_7B0
const EVENT_7B1
const EVENT_7B2
const EVENT_7B3
const EVENT_7B4
const EVENT_7B5
const EVENT_7B6
const EVENT_7B7
const EVENT_7B8
const EVENT_7B9
const EVENT_7BA
const EVENT_7BB
const EVENT_7BC
const EVENT_7BD
const EVENT_7BE
const EVENT_7BF
const EVENT_7C0
const EVENT_7C1
const EVENT_7C2
const EVENT_7C3
const EVENT_7C4
const EVENT_7C5
const EVENT_7C6
const EVENT_7C7
const EVENT_7C8
const EVENT_7C9
const EVENT_7CA
const EVENT_7CB
const EVENT_7CC
const EVENT_7CD
const EVENT_7CE
const EVENT_7CF
const EVENT_7D0
const EVENT_7D1
const EVENT_7D2
const EVENT_7D3
const EVENT_7D4
const EVENT_7D5
const EVENT_7D6
const EVENT_7D7
const EVENT_7D8
const EVENT_7D9
const EVENT_7DA
const EVENT_7DB
const EVENT_7DC
const EVENT_7DD
const EVENT_7DE
const EVENT_7DF
const EVENT_7E0
const EVENT_7E1
const EVENT_7E2
const EVENT_7E3
const EVENT_7E4
const EVENT_7E5
const EVENT_7E6
const EVENT_7E7
const EVENT_7E8
const EVENT_7E9
const EVENT_7EA
const EVENT_7EB
const EVENT_7EC
const EVENT_7ED
const EVENT_7EE
const EVENT_7EF
const EVENT_7F0
const EVENT_7F1
const EVENT_7F2
const EVENT_7F3
const EVENT_7F4
const EVENT_7F5
const EVENT_7F6
const EVENT_7F7
const EVENT_7F8
const EVENT_7F9
const EVENT_7FA
const EVENT_7FB
const EVENT_7FC
const EVENT_7FD
const EVENT_7FE
const EVENT_7FF
const EVENT_800
const EVENT_BEAT_MANSION_2_TRAINER_0
const EVENT_802
const EVENT_803
const EVENT_804
const EVENT_805
const EVENT_806
const EVENT_807
const EVENT_808
const EVENT_809
const EVENT_80A
const EVENT_80B
const EVENT_80C
const EVENT_80D
const EVENT_80E
const EVENT_80F
const EVENT_810
const EVENT_BEAT_MANSION_3_TRAINER_0
const EVENT_BEAT_MANSION_3_TRAINER_1
const EVENT_813
const EVENT_814
const EVENT_815
const EVENT_816
const EVENT_817
const EVENT_818
const EVENT_819
const EVENT_81A
const EVENT_81B
const EVENT_81C
const EVENT_81D
const EVENT_81E
const EVENT_81F
const EVENT_820
const EVENT_BEAT_MANSION_4_TRAINER_0
const EVENT_BEAT_MANSION_4_TRAINER_1
const EVENT_823
const EVENT_824
const EVENT_825
const EVENT_826
const EVENT_827
const EVENT_828
const EVENT_829
const EVENT_82A
const EVENT_82B
const EVENT_82C
const EVENT_82D
const EVENT_82E
const EVENT_82F
const EVENT_830
const EVENT_831
const EVENT_832
const EVENT_833
const EVENT_834
const EVENT_835
const EVENT_836
const EVENT_837
const EVENT_838
const EVENT_839
const EVENT_83A
const EVENT_83B
const EVENT_83C
const EVENT_83D
const EVENT_83E
const EVENT_83F
const EVENT_840
const EVENT_841
const EVENT_842
const EVENT_843
const EVENT_844
const EVENT_845
const EVENT_846
const EVENT_847
const EVENT_848
const EVENT_849
const EVENT_84A
const EVENT_84B
const EVENT_84C
const EVENT_84D
const EVENT_84E
const EVENT_84F
const EVENT_850
const EVENT_851
const EVENT_852
const EVENT_853
const EVENT_854
const EVENT_855
const EVENT_856
const EVENT_857
const EVENT_858
const EVENT_859
const EVENT_85A
const EVENT_85B
const EVENT_85C
const EVENT_85D
const EVENT_85E
const EVENT_85F
const EVENT_860
const EVENT_861
const EVENT_862
const EVENT_863
const EVENT_864
const EVENT_865
const EVENT_866
const EVENT_867
const EVENT_868
const EVENT_869
const EVENT_86A
const EVENT_86B
const EVENT_86C
const EVENT_86D
const EVENT_86E
const EVENT_86F
const EVENT_870
const EVENT_871
const EVENT_872
const EVENT_873
const EVENT_874
const EVENT_875
const EVENT_876
const EVENT_877
const EVENT_878
const EVENT_879
const EVENT_87A
const EVENT_87B
const EVENT_87C
const EVENT_87D
const EVENT_87E
const EVENT_87F
const EVENT_GOT_HM03
const EVENT_881
const EVENT_882
const EVENT_883
const EVENT_884
const EVENT_885
const EVENT_886
const EVENT_887
const EVENT_888
const EVENT_889
const EVENT_88A
const EVENT_88B
const EVENT_88C
const EVENT_88D
const EVENT_88E
const EVENT_88F
const EVENT_890
const EVENT_891
const EVENT_892
const EVENT_893
const EVENT_894
const EVENT_895
const EVENT_896
const EVENT_897
const EVENT_898
const EVENT_899
const EVENT_89A
const EVENT_89B
const EVENT_89C
const EVENT_89D
const EVENT_89E
const EVENT_89F
const EVENT_8A0
const EVENT_8A1
const EVENT_8A2
const EVENT_8A3
const EVENT_8A4
const EVENT_8A5
const EVENT_8A6
const EVENT_8A7
const EVENT_8A8
const EVENT_8A9
const EVENT_8AA
const EVENT_8AB
const EVENT_8AC
const EVENT_8AD
const EVENT_8AE
const EVENT_8AF
const EVENT_8B0
const EVENT_8B1
const EVENT_8B2
const EVENT_8B3
const EVENT_8B4
const EVENT_8B5
const EVENT_8B6
const EVENT_8B7
const EVENT_8B8
const EVENT_8B9
const EVENT_8BA
const EVENT_8BB
const EVENT_8BC
const EVENT_8BD
const EVENT_8BE
const EVENT_8BF
const EVENT_8C0
const EVENT_BEAT_MEWTWO
const EVENT_8C2
const EVENT_8C3
const EVENT_8C4
const EVENT_8C5
const EVENT_8C6
const EVENT_8C7
const EVENT_8C8
const EVENT_8C9
const EVENT_8CA
const EVENT_8CB
const EVENT_8CC
const EVENT_8CD
const EVENT_8CE
const EVENT_8CF
const EVENT_8D0
const EVENT_8D1
const EVENT_8D2
const EVENT_8D3
const EVENT_8D4
const EVENT_8D5
const EVENT_8D6
const EVENT_8D7
const EVENT_8D8
const EVENT_8D9
const EVENT_8DA
const EVENT_8DB
const EVENT_8DC
const EVENT_8DD
const EVENT_8DE
const EVENT_8DF
const ELITE4_EVENTS_START
const EVENT_BEAT_LORELEIS_ROOM_TRAINER_0
const EVENT_8E2
const EVENT_8E3
const EVENT_8E4
const EVENT_8E5
const EVENT_AUTOWALKED_INTO_LORELEIS_ROOM
const EVENT_8E7
const EVENT_8E8
const EVENT_BEAT_BRUNOS_ROOM_TRAINER_0
const EVENT_8EA
const EVENT_8EB
const EVENT_8EC
const EVENT_8ED
const EVENT_AUTOWALKED_INTO_BRUNOS_ROOM
const EVENT_8EF
const EVENT_8F0
const EVENT_BEAT_AGATHAS_ROOM_TRAINER_0
const EVENT_8F2
const EVENT_8F3
const EVENT_8F4
const EVENT_8F5
const EVENT_AUTOWALKED_INTO_AGATHAS_ROOM
const EVENT_8F7
const EVENT_8F8
const EVENT_BEAT_LANCES_ROOM_TRAINER_0
const EVENT_8FA
const EVENT_8FB
const EVENT_8FC
const EVENT_8FD
const EVENT_BEAT_LANCE
const EVENT_LANCES_ROOM_LOCK_DOOR
const EVENT_900
const EVENT_BEAT_CHAMPION_RIVAL
const EVENT_902
const EVENT_903
const EVENT_904
const EVENT_905
const EVENT_906
const ELITE4_CHAMPION_EVENTS_END
const EVENT_908
const EVENT_909
const EVENT_90A
const EVENT_90B
const EVENT_90C
const EVENT_90D
const EVENT_90E
const EVENT_90F
const EVENT_910
const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_0
const EVENT_BEAT_VICTORY_ROAD_1_TRAINER_1
const EVENT_913
const EVENT_914
const EVENT_915
const EVENT_916
const EVENT_VICTORY_ROAD_1_BOULDER_ON_SWITCH
const EVENT_918
const EVENT_919
const EVENT_91A
const EVENT_91B
const EVENT_91C
const EVENT_91D
const EVENT_91E
const EVENT_91F
const EVENT_920
const EVENT_921
const EVENT_922
const EVENT_923
const EVENT_924
const EVENT_925
const EVENT_926
const EVENT_927
const EVENT_928
const EVENT_929
const EVENT_92A
const EVENT_92B
const EVENT_92C
const EVENT_92D
const EVENT_92E
const EVENT_92F
const EVENT_930
const EVENT_931
const EVENT_932
const EVENT_933
const EVENT_934
const EVENT_935
const EVENT_936
const EVENT_937
const EVENT_938
const EVENT_939
const EVENT_93A
const EVENT_93B
const EVENT_93C
const EVENT_93D
const EVENT_93E
const EVENT_93F
const EVENT_940
const EVENT_941
const EVENT_942
const EVENT_943
const EVENT_944
const EVENT_945
const EVENT_946
const EVENT_947
const EVENT_948
const EVENT_949
const EVENT_94A
const EVENT_94B
const EVENT_94C
const EVENT_94D
const EVENT_94E
const EVENT_94F
const EVENT_950
const EVENT_951
const EVENT_952
const EVENT_953
const EVENT_954
const EVENT_955
const EVENT_956
const EVENT_957
const EVENT_958
const EVENT_959
const EVENT_95A
const EVENT_95B
const EVENT_95C
const EVENT_95D
const EVENT_95E
const EVENT_95F
const EVENT_960
const EVENT_961
const EVENT_962
const EVENT_963
const EVENT_964
const EVENT_965
const EVENT_966
const EVENT_967
const EVENT_968
const EVENT_969
const EVENT_96A
const EVENT_96B
const EVENT_96C
const EVENT_96D
const EVENT_96E
const EVENT_96F
const EVENT_970
const EVENT_971
const EVENT_972
const EVENT_973
const EVENT_974
const EVENT_975
const EVENT_976
const EVENT_977
const EVENT_978
const EVENT_979
const EVENT_97A
const EVENT_97B
const EVENT_97C
const EVENT_97D
const EVENT_97E
const EVENT_97F
const EVENT_980
const EVENT_981
const EVENT_982
const EVENT_983
const EVENT_984
const EVENT_985
const EVENT_986
const EVENT_987
const EVENT_988
const EVENT_989
const EVENT_98A
const EVENT_98B
const EVENT_98C
const EVENT_98D
const EVENT_98E
const EVENT_98F
const EVENT_990
const EVENT_991
const EVENT_992
const EVENT_993
const EVENT_994
const EVENT_995
const EVENT_996
const EVENT_997
const EVENT_998
const EVENT_999
const EVENT_99A
const EVENT_99B
const EVENT_99C
const EVENT_99D
const EVENT_99E
const EVENT_99F
const EVENT_9A0
const EVENT_9A1
const EVENT_9A2
const EVENT_9A3
const EVENT_9A4
const EVENT_9A5
const EVENT_9A6
const EVENT_9A7
const EVENT_9A8
const EVENT_9A9
const EVENT_9AA
const EVENT_9AB
const EVENT_9AC
const EVENT_9AD
const EVENT_9AE
const EVENT_9AF
const EVENT_9B0
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_0
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_1
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_2
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_3
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_4
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_5
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_6
const EVENT_BEAT_ROCK_TUNNEL_2_TRAINER_7
const EVENT_9B9
const EVENT_9BA
const EVENT_9BB
const EVENT_9BC
const EVENT_9BD
const EVENT_9BE
const EVENT_9BF
const EVENT_SEAFOAM2_BOULDER1_DOWN_HOLE
const EVENT_SEAFOAM2_BOULDER2_DOWN_HOLE
const EVENT_9C2
const EVENT_9C3
const EVENT_9C4
const EVENT_9C5
const EVENT_9C6
const EVENT_9C7
const EVENT_SEAFOAM3_BOULDER1_DOWN_HOLE
const EVENT_SEAFOAM3_BOULDER2_DOWN_HOLE
const EVENT_9CA
const EVENT_9CB
const EVENT_9CC
const EVENT_9CD
const EVENT_9CE
const EVENT_9CF
const EVENT_SEAFOAM4_BOULDER1_DOWN_HOLE
const EVENT_SEAFOAM4_BOULDER2_DOWN_HOLE
const EVENT_9D2
const EVENT_9D3
const EVENT_9D4
const EVENT_9D5
const EVENT_9D6
const EVENT_9D7
const EVENT_9D8
const EVENT_9D9
const EVENT_BEAT_ARTICUNO
const EVENT_9DB
const EVENT_9DC
const EVENT_9DD
const EVENT_9DE
const EVENT_9DF
const EVENT_9E0
const EVENT_9E1
const EVENT_9E2
const EVENT_9E3
const EVENT_9E4
const EVENT_9E5
const EVENT_9E6
const EVENT_9E7
const EVENT_9E8
const EVENT_9E9
const EVENT_9EA
const EVENT_9EB
const EVENT_9EC
const EVENT_9ED
const EVENT_9EE
const EVENT_9EF
const EVENT_9F0
const EVENT_9F1
const EVENT_9F2
const EVENT_9F3
const EVENT_9F4
const EVENT_9F5
const EVENT_9F6
const EVENT_9F7
const EVENT_9F8
const EVENT_9F9
const EVENT_9FA
const EVENT_9FB
const EVENT_9FC
const EVENT_9FD
const EVENT_9FE
const EVENT_9FF
|