1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
|
UnknownMap_00_00:: @ 834F188
.4byte gMapData_UnknownMap_00_00 @ 0x82D89E8
.4byte gMapEvents_UnknownMap_00_00 @ 0x83AE0DC
.4byte gMapScripts_UnknownMap_00_00 @ 0x8160478
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 47
.byte 0xc4, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08
UnknownMap_00_01:: @ 834F1A4
.4byte gMapData_UnknownMap_00_01 @ 0x82D8AE4
.4byte gMapEvents_UnknownMap_00_01 @ 0x83AE138
.4byte gMapScripts_UnknownMap_00_01 @ 0x8160479
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 48
.byte 0xc4, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
UnknownMap_00_02:: @ 834F1C0
.4byte gMapData_UnknownMap_00_02 @ 0x82D8C98
.4byte gMapEvents_UnknownMap_00_02 @ 0x83AE1C4
.4byte gMapScripts_UnknownMap_00_02 @ 0x816047A
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 49
.byte 0xc4, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
UnknownMap_00_03:: @ 834F1DC
.4byte gMapData_UnknownMap_00_03 @ 0x82D8DB8
.4byte gMapEvents_UnknownMap_00_03 @ 0x83AE238
.4byte gMapScripts_UnknownMap_00_03 @ 0x816047B
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 50
.byte 0xc4, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08
UnknownMap_00_04:: @ 834F1F8
.4byte gMapData_UnknownMap_00_04 @ 0x83388C4
.4byte gMapEvents_UnknownMap_00_04 @ 0x83AE32C
.4byte gMapScripts_UnknownMap_00_04 @ 0x816047C
.4byte NULL
.2byte BGM_FRLG_UNION_ROOM
.2byte 262
.byte 0xc4, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08
ViridianForest:: @ 834F214
.4byte gMapData_ViridianForest @ 0x82FE46C
.4byte gMapEvents_ViridianForest @ 0x83AE4D8
.4byte gMapScripts_ViridianForest @ 0x816051F
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 117
.byte 0x7e, 0x00, 0x0b, 0x03, 0x01, 0x07, 0x00, 0x00
MtMoon_1F:: @ 834F230
.4byte gMapData_MtMoon_1F @ 0x82FA890
.4byte gMapEvents_MtMoon_1F @ 0x83AE668
.4byte gMapScripts_MtMoon_1F @ 0x81605E4
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 114
.byte 0x7f, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtMoon_B1F:: @ 834F24C
.4byte gMapData_MtMoon_B1F @ 0x82FB804
.4byte gMapEvents_MtMoon_B1F @ 0x83AE704
.4byte gMapScripts_MtMoon_B1F @ 0x8160698
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 115
.byte 0x7f, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtMoon_B2F:: @ 834F268
.4byte gMapData_MtMoon_B2F @ 0x82FC728
.4byte gMapEvents_MtMoon_B2F @ 0x83AE868
.4byte gMapScripts_MtMoon_B2F @ 0x8160699
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 116
.byte 0x7f, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_Exterior:: @ 834F284
.4byte gMapData_SSAnne_Exterior @ 0x82FF610
.4byte gMapEvents_SSAnne_Exterior @ 0x83AE8C8
.4byte gMapScripts_SSAnne_Exterior @ 0x8160840
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 118
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Corridor:: @ 834F2A0
.4byte gMapData_SSAnne_1F_Corridor @ 0x82FFB4C
.4byte gMapEvents_SSAnne_1F_Corridor @ 0x83AE974
.4byte gMapScripts_SSAnne_1F_Corridor @ 0x81608CB
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 119
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Corridor:: @ 834F2BC
.4byte gMapData_SSAnne_2F_Corridor @ 0x82FFFB0
.4byte gMapEvents_SSAnne_2F_Corridor @ 0x83AEA30
.4byte gMapScripts_SSAnne_2F_Corridor @ 0x81608DE
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 120
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_3F_Corridor:: @ 834F2D8
.4byte gMapData_SSAnne_3F_Corridor @ 0x8300108
.4byte gMapEvents_SSAnne_3F_Corridor @ 0x83AEA74
.4byte gMapScripts_SSAnne_3F_Corridor @ 0x8160A5D
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 121
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Corridor:: @ 834F2F4
.4byte gMapData_SSAnne_B1F_Corridor @ 0x8300270
.4byte gMapEvents_SSAnne_B1F_Corridor @ 0x83AEAC4
.4byte gMapScripts_SSAnne_B1F_Corridor @ 0x8160A67
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 122
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_Deck:: @ 834F310
.4byte gMapData_SSAnne_Deck @ 0x8300624
.4byte gMapEvents_SSAnne_Deck @ 0x83AEB60
.4byte gMapScripts_SSAnne_Deck @ 0x8160A68
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 123
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_Kitchen:: @ 834F32C
.4byte gMapData_SSAnne_Kitchen @ 0x8319214
.4byte gMapEvents_SSAnne_Kitchen @ 0x83AEC60
.4byte gMapScripts_SSAnne_Kitchen @ 0x8160AB2
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 170
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_CaptainsOffice:: @ 834F348
.4byte gMapData_SSAnne_CaptainsOffice @ 0x83192EC
.4byte gMapEvents_SSAnne_CaptainsOffice @ 0x83AECB8
.4byte gMapScripts_SSAnne_CaptainsOffice @ 0x8160B39
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 171
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room1:: @ 834F364
.4byte gMapData_SSAnne_1F_Room1 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room1 @ 0x83AECEC
.4byte gMapScripts_SSAnne_1F_Room1 @ 0x8160BDB
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room2:: @ 834F380
.4byte gMapData_SSAnne_1F_Room2 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room2 @ 0x83AED68
.4byte gMapScripts_SSAnne_1F_Room2 @ 0x8160BE5
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room3:: @ 834F39C
.4byte gMapData_SSAnne_1F_Room3 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room3 @ 0x83AEDCC
.4byte gMapScripts_SSAnne_1F_Room3 @ 0x8160C1D
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room4:: @ 834F3B8
.4byte gMapData_SSAnne_1F_Room4 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room4 @ 0x83AEE00
.4byte gMapScripts_SSAnne_1F_Room4 @ 0x8160C43
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room5:: @ 834F3D4
.4byte gMapData_SSAnne_1F_Room5 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room5 @ 0x83AEE34
.4byte gMapScripts_SSAnne_1F_Room5 @ 0x8160C66
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room7:: @ 834F3F0
.4byte gMapData_SSAnne_1F_Room7 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room7 @ 0x83AEE68
.4byte gMapScripts_SSAnne_1F_Room7 @ 0x8160C7E
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room1:: @ 834F40C
.4byte gMapData_SSAnne_2F_Room1 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room1 @ 0x83AEE9C
.4byte gMapScripts_SSAnne_2F_Room1 @ 0x8160C96
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room2:: @ 834F428
.4byte gMapData_SSAnne_2F_Room2 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room2 @ 0x83AEF00
.4byte gMapScripts_SSAnne_2F_Room2 @ 0x8160CB0
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room3:: @ 834F444
.4byte gMapData_SSAnne_2F_Room3 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room3 @ 0x83AEF4C
.4byte gMapScripts_SSAnne_2F_Room3 @ 0x8160CDF
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room4:: @ 834F460
.4byte gMapData_SSAnne_2F_Room4 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room4 @ 0x83AEFB0
.4byte gMapScripts_SSAnne_2F_Room4 @ 0x8160CF2
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room5:: @ 834F47C
.4byte gMapData_SSAnne_2F_Room5 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room5 @ 0x83AEFFC
.4byte gMapScripts_SSAnne_2F_Room5 @ 0x8160D21
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_2F_Room6:: @ 834F498
.4byte gMapData_SSAnne_2F_Room6 @ 0x8319F04
.4byte gMapEvents_SSAnne_2F_Room6 @ 0x83AF048
.4byte gMapScripts_SSAnne_2F_Room6 @ 0x8160D34
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Room1:: @ 834F4B4
.4byte gMapData_SSAnne_B1F_Room1 @ 0x8319F04
.4byte gMapEvents_SSAnne_B1F_Room1 @ 0x83AF094
.4byte gMapScripts_SSAnne_B1F_Room1 @ 0x8160D47
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Room2:: @ 834F4D0
.4byte gMapData_SSAnne_B1F_Room2 @ 0x8319F04
.4byte gMapEvents_SSAnne_B1F_Room2 @ 0x83AF0E0
.4byte gMapScripts_SSAnne_B1F_Room2 @ 0x8160D76
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Room3:: @ 834F4EC
.4byte gMapData_SSAnne_B1F_Room3 @ 0x8319F04
.4byte gMapEvents_SSAnne_B1F_Room3 @ 0x83AF12C
.4byte gMapScripts_SSAnne_B1F_Room3 @ 0x8160D8E
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Room4:: @ 834F508
.4byte gMapData_SSAnne_B1F_Room4 @ 0x8319F04
.4byte gMapEvents_SSAnne_B1F_Room4 @ 0x83AF178
.4byte gMapScripts_SSAnne_B1F_Room4 @ 0x8160DA6
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_B1F_Room5:: @ 834F524
.4byte gMapData_SSAnne_B1F_Room5 @ 0x8319F04
.4byte gMapEvents_SSAnne_B1F_Room5 @ 0x83AF1DC
.4byte gMapScripts_SSAnne_B1F_Room5 @ 0x8160DD5
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 178
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
SSAnne_1F_Room6:: @ 834F540
.4byte gMapData_SSAnne_1F_Room6 @ 0x8319E74
.4byte gMapEvents_SSAnne_1F_Room6 @ 0x83AF210
.4byte gMapScripts_SSAnne_1F_Room6 @ 0x8160DF2
.4byte NULL
.2byte BGM_FRLG_SS_ANNE
.2byte 177
.byte 0x80, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
UndergroundPath_NorthEntrance:: @ 834F55C
.4byte gMapData_UndergroundPath_NorthEntrance @ 0x8319414
.4byte gMapEvents_UndergroundPath_NorthEntrance @ 0x83AF25C
.4byte gMapScripts_UndergroundPath_NorthEntrance @ 0x8160E38
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 172
.byte 0x81, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
UndergroundPath_NorthSouthTunnel:: @ 834F578
.4byte gMapData_UndergroundPath_NorthSouthTunnel @ 0x8319CAC
.4byte gMapEvents_UndergroundPath_NorthSouthTunnel @ 0x83AF2D4
.4byte gMapScripts_UndergroundPath_NorthSouthTunnel @ 0x8160EB5
.4byte NULL
.2byte BGM_FRLG_ROUTE_1
.2byte 174
.byte 0x81, 0x00, 0x00, 0x08, 0x01, 0x06, 0x00, 0x00
UndergroundPath_SouthEntrance:: @ 834F594
.4byte gMapData_UndergroundPath_SouthEntrance @ 0x8319414
.4byte gMapEvents_UndergroundPath_SouthEntrance @ 0x83AF320
.4byte gMapScripts_UndergroundPath_SouthEntrance @ 0x8160EBF
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 172
.byte 0x81, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
UndergroundPath_WestEntrance:: @ 834F5B0
.4byte gMapData_UndergroundPath_WestEntrance @ 0x8319414
.4byte gMapEvents_UndergroundPath_WestEntrance @ 0x83AF36C
.4byte gMapScripts_UndergroundPath_WestEntrance @ 0x8160EC9
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 172
.byte 0x82, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
UndergroundPath_EastWestTunnel:: @ 834F5CC
.4byte gMapData_UndergroundPath_EastWestTunnel @ 0x8319898
.4byte gMapEvents_UndergroundPath_EastWestTunnel @ 0x83AF3E4
.4byte gMapScripts_UndergroundPath_EastWestTunnel @ 0x8160ED3
.4byte NULL
.2byte BGM_FRLG_ROUTE_1
.2byte 173
.byte 0x82, 0x00, 0x00, 0x08, 0x01, 0x06, 0x00, 0x00
UndergroundPath_EastEntrance:: @ 834F5E8
.4byte gMapData_UndergroundPath_EastEntrance @ 0x8319414
.4byte gMapEvents_UndergroundPath_EastEntrance @ 0x83AF430
.4byte gMapScripts_UndergroundPath_EastEntrance @ 0x8160EDD
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 172
.byte 0x82, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
DiglettsCave_NorthEntrance:: @ 834F604
.4byte gMapData_DiglettsCave_NorthEntrance @ 0x831EB94
.4byte gMapEvents_DiglettsCave_NorthEntrance @ 0x83AF46C
.4byte gMapScripts_DiglettsCave_NorthEntrance @ 0x8160EE7
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 210
.byte 0x83, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
DiglettsCave_B1F:: @ 834F620
.4byte gMapData_DiglettsCave_B1F @ 0x8303B68
.4byte gMapEvents_DiglettsCave_B1F @ 0x83AF490
.4byte gMapScripts_DiglettsCave_B1F @ 0x8160EF1
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 124
.byte 0x83, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
DiglettsCave_SouthEntrance:: @ 834F63C
.4byte gMapData_DiglettsCave_SouthEntrance @ 0x831EC58
.4byte gMapEvents_DiglettsCave_SouthEntrance @ 0x83AF4CC
.4byte gMapScripts_DiglettsCave_SouthEntrance @ 0x8160EFB
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 211
.byte 0x83, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
VictoryRoad_1F:: @ 834F658
.4byte gMapData_VictoryRoad_1F @ 0x83043CC
.4byte gMapEvents_VictoryRoad_1F @ 0x83AF5C0
.4byte gMapScripts_VictoryRoad_1F @ 0x8160F05
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 125
.byte 0x84, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
VictoryRoad_2F:: @ 834F674
.4byte gMapData_VictoryRoad_2F @ 0x8304CB4
.4byte gMapEvents_VictoryRoad_2F @ 0x83AF774
.4byte gMapScripts_VictoryRoad_2F @ 0x8160F92
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 126
.byte 0x84, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
VictoryRoad_3F:: @ 834F690
.4byte gMapData_VictoryRoad_3F @ 0x8305494
.4byte gMapEvents_VictoryRoad_3F @ 0x83AF8E0
.4byte gMapScripts_VictoryRoad_3F @ 0x81610AA
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 127
.byte 0x84, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
RocketHideout_B1F:: @ 834F6AC
.4byte gMapData_RocketHideout_B1F @ 0x8305C28
.4byte gMapEvents_RocketHideout_B1F @ 0x83AF9D8
.4byte gMapScripts_RocketHideout_B1F @ 0x8161195
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 128
.byte 0x85, 0x00, 0x00, 0x08, 0x00, 0x07, 0xff, 0x03
RocketHideout_B2F:: @ 834F6C8
.4byte gMapData_RocketHideout_B2F @ 0x83061CC
.4byte gMapEvents_RocketHideout_B2F @ 0x83AFA8C
.4byte gMapScripts_RocketHideout_B2F @ 0x81612A1
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 129
.byte 0x85, 0x00, 0x00, 0x08, 0x00, 0x07, 0xfe, 0x03
RocketHideout_B3F:: @ 834F6E4
.4byte gMapData_RocketHideout_B3F @ 0x8306694
.4byte gMapEvents_RocketHideout_B3F @ 0x83AFB34
.4byte gMapScripts_RocketHideout_B3F @ 0x81612B9
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 130
.byte 0x85, 0x00, 0x00, 0x08, 0x00, 0x07, 0xfd, 0x03
RocketHideout_B4F:: @ 834F700
.4byte gMapData_RocketHideout_B4F @ 0x8306B98
.4byte gMapEvents_RocketHideout_B4F @ 0x83AFC50
.4byte gMapScripts_RocketHideout_B4F @ 0x81612E8
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 131
.byte 0x85, 0x00, 0x00, 0x08, 0x00, 0x07, 0xfc, 0x03
RocketHideout_Elevator:: @ 834F71C
.4byte gMapData_RocketHideout_Elevator @ 0x8320EDC
.4byte gMapEvents_RocketHideout_Elevator @ 0x83AFC80
.4byte gMapScripts_RocketHideout_Elevator @ 0x81614D8
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 225
.byte 0x85, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x03
SilphCo_1F:: @ 834F738
.4byte gMapData_SilphCo_1F @ 0x83071EC
.4byte gMapEvents_SilphCo_1F @ 0x83AFCE0
.4byte gMapScripts_SilphCo_1F @ 0x8161625
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 132
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x01, 0x00
SilphCo_2F:: @ 834F754
.4byte gMapData_SilphCo_2F @ 0x8307840
.4byte gMapEvents_SilphCo_2F @ 0x83AFE1C
.4byte gMapScripts_SilphCo_2F @ 0x8161641
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 133
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x02, 0x00
SilphCo_3F:: @ 834F770
.4byte gMapData_SilphCo_3F @ 0x8307E94
.4byte gMapEvents_SilphCo_3F @ 0x83AFF58
.4byte gMapScripts_SilphCo_3F @ 0x81616C5
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 134
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x03, 0x00
SilphCo_4F:: @ 834F78C
.4byte gMapData_SilphCo_4F @ 0x83084E8
.4byte gMapEvents_SilphCo_4F @ 0x83B00DC
.4byte gMapScripts_SilphCo_4F @ 0x8161736
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 135
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x04, 0x00
SilphCo_5F:: @ 834F7A8
.4byte gMapData_SilphCo_5F @ 0x8308B3C
.4byte gMapEvents_SilphCo_5F @ 0x83B02D8
.4byte gMapScripts_SilphCo_5F @ 0x81617BE
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 136
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x05, 0x00
SilphCo_6F:: @ 834F7C4
.4byte gMapData_SilphCo_6F @ 0x8308FFC
.4byte gMapEvents_SilphCo_6F @ 0x83B044C
.4byte gMapScripts_SilphCo_6F @ 0x8161881
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 137
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x06, 0x00
SilphCo_7F:: @ 834F7E0
.4byte gMapData_SilphCo_7F @ 0x83094BC
.4byte gMapEvents_SilphCo_7F @ 0x83B0660
.4byte gMapScripts_SilphCo_7F @ 0x8161984
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 138
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x07, 0x00
SilphCo_8F:: @ 834F7FC
.4byte gMapData_SilphCo_8F @ 0x830997C
.4byte gMapEvents_SilphCo_8F @ 0x83B0784
.4byte gMapScripts_SilphCo_8F @ 0x8161C5F
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 139
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x08, 0x00
SilphCo_9F:: @ 834F818
.4byte gMapData_SilphCo_9F @ 0x8309E3C
.4byte gMapEvents_SilphCo_9F @ 0x83B0904
.4byte gMapScripts_SilphCo_9F @ 0x8161CDE
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 140
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x09, 0x00
SilphCo_10F:: @ 834F834
.4byte gMapData_SilphCo_10F @ 0x830A0E8
.4byte gMapEvents_SilphCo_10F @ 0x83B0A20
.4byte gMapScripts_SilphCo_10F @ 0x8161D86
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 141
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x0a, 0x00
SilphCo_11F:: @ 834F850
.4byte gMapData_SilphCo_11F @ 0x830A3B4
.4byte gMapEvents_SilphCo_11F @ 0x83B0B44
.4byte gMapScripts_SilphCo_11F @ 0x8161DEE
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 142
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x07, 0x0b, 0x00
SilphCo_Elevator:: @ 834F86C
.4byte gMapData_SilphCo_Elevator @ 0x8321330
.4byte gMapEvents_SilphCo_Elevator @ 0x83B0B6C
.4byte gMapScripts_SilphCo_Elevator @ 0x8161F6E
.4byte NULL
.2byte BGM_FRLG_SILPH
.2byte 229
.byte 0x86, 0x00, 0x00, 0x08, 0x00, 0x06, 0x00, 0x00
PokemonMansion_1F:: @ 834F888
.4byte gMapData_PokemonMansion_1F @ 0x830AE3C
.4byte gMapEvents_PokemonMansion_1F @ 0x83B0C60
.4byte gMapScripts_PokemonMansion_1F @ 0x81621F9
.4byte NULL
.2byte BGM_FRLG_POKEMON_MANSION
.2byte 143
.byte 0x87, 0x00, 0x0b, 0x08, 0x00, 0x07, 0x00, 0x03
PokemonMansion_2F:: @ 834F8A4
.4byte gMapData_PokemonMansion_2F @ 0x830B9A8
.4byte gMapEvents_PokemonMansion_2F @ 0x83B0D20
.4byte gMapScripts_PokemonMansion_2F @ 0x8162254
.4byte NULL
.2byte BGM_FRLG_POKEMON_MANSION
.2byte 144
.byte 0x87, 0x00, 0x0b, 0x08, 0x00, 0x07, 0x00, 0x03
PokemonMansion_3F:: @ 834F8C0
.4byte gMapData_PokemonMansion_3F @ 0x830C430
.4byte gMapEvents_PokemonMansion_3F @ 0x83B0DF8
.4byte gMapScripts_PokemonMansion_3F @ 0x81622A1
.4byte NULL
.2byte BGM_FRLG_POKEMON_MANSION
.2byte 145
.byte 0x87, 0x00, 0x0b, 0x08, 0x00, 0x07, 0x00, 0x03
PokemonMansion_B1F:: @ 834F8DC
.4byte gMapData_PokemonMansion_B1F @ 0x830CEB8
.4byte gMapEvents_PokemonMansion_B1F @ 0x83B0ED4
.4byte gMapScripts_PokemonMansion_B1F @ 0x81622FC
.4byte NULL
.2byte BGM_FRLG_POKEMON_MANSION
.2byte 146
.byte 0x87, 0x00, 0x0b, 0x08, 0x00, 0x07, 0x00, 0x03
SafariZone_Center:: @ 834F8F8
.4byte gMapData_SafariZone_Center @ 0x830DD38
.4byte gMapEvents_SafariZone_Center @ 0x83B0F98
.4byte gMapScripts_SafariZone_Center @ 0x8162357
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 147
.byte 0x88, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
SafariZone_East:: @ 834F914
.4byte gMapData_SafariZone_East @ 0x830EC24
.4byte gMapEvents_SafariZone_East @ 0x83B1068
.4byte gMapScripts_SafariZone_East @ 0x816237C
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 148
.byte 0x88, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
SafariZone_North:: @ 834F930
.4byte gMapData_SafariZone_North @ 0x830FE1C
.4byte gMapEvents_SafariZone_North @ 0x83B1168
.4byte gMapScripts_SafariZone_North @ 0x8162398
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 149
.byte 0x88, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
SafariZone_West:: @ 834F94C
.4byte gMapData_SafariZone_West @ 0x8310BC4
.4byte gMapEvents_SafariZone_West @ 0x83B1270
.4byte gMapScripts_SafariZone_West @ 0x81623C6
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 150
.byte 0x88, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
SafariZone_Building1:: @ 834F968
.4byte gMapData_SafariZone_Building1 @ 0x831C028
.4byte gMapEvents_SafariZone_Building1 @ 0x83B12CC
.4byte gMapScripts_SafariZone_Building1 @ 0x81623EB
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 198
.byte 0x88, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SafariZone_Building2:: @ 834F984
.4byte gMapData_SafariZone_Building2 @ 0x831C028
.4byte gMapEvents_SafariZone_Building2 @ 0x83B1340
.4byte gMapScripts_SafariZone_Building2 @ 0x81623FE
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 198
.byte 0x88, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SafariZone_Building3:: @ 834F9A0
.4byte gMapData_SafariZone_Building3 @ 0x831C028
.4byte gMapEvents_SafariZone_Building3 @ 0x83B13CC
.4byte gMapScripts_SafariZone_Building3 @ 0x816241A
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 198
.byte 0x88, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SafariZone_Building4:: @ 834F9BC
.4byte gMapData_SafariZone_Building4 @ 0x831C028
.4byte gMapEvents_SafariZone_Building4 @ 0x83B1440
.4byte gMapScripts_SafariZone_Building4 @ 0x8162436
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 198
.byte 0x88, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SafariZone_SecretHouse:: @ 834F9D8
.4byte gMapData_SafariZone_SecretHouse @ 0x831C16C
.4byte gMapEvents_SafariZone_SecretHouse @ 0x83B1484
.4byte gMapScripts_SafariZone_SecretHouse @ 0x8162452
.4byte NULL
.2byte BGM_FRLG_SAFARI_ZONE
.2byte 199
.byte 0x88, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCave_1F:: @ 834F9F4
.4byte gMapData_CeruleanCave_1F @ 0x8311318
.4byte gMapEvents_CeruleanCave_1F @ 0x83B15BC
.4byte gMapScripts_CeruleanCave_1F @ 0x81624B3
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 151
.byte 0x8d, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
CeruleanCave_2F:: @ 834FA10
.4byte gMapData_CeruleanCave_2F @ 0x8311A6C
.4byte gMapEvents_CeruleanCave_2F @ 0x83B1738
.4byte gMapScripts_CeruleanCave_2F @ 0x81624BD
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 152
.byte 0x8d, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
CeruleanCave_B1F:: @ 834FA2C
.4byte gMapData_CeruleanCave_B1F @ 0x83121C0
.4byte gMapEvents_CeruleanCave_B1F @ 0x83B1874
.4byte gMapScripts_CeruleanCave_B1F @ 0x81624BE
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 153
.byte 0x8d, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
PokemonLeague_LoreleisRoom:: @ 834FA48
.4byte gMapData_PokemonLeague_LoreleisRoom @ 0x831F178
.4byte gMapEvents_PokemonLeague_LoreleisRoom @ 0x83B18B0
.4byte gMapScripts_PokemonLeague_LoreleisRoom @ 0x816256C
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 213
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x04
PokemonLeague_BrunosRoom:: @ 834FA64
.4byte gMapData_PokemonLeague_BrunosRoom @ 0x831F2F0
.4byte gMapEvents_PokemonLeague_BrunosRoom @ 0x83B18EC
.4byte gMapScripts_PokemonLeague_BrunosRoom @ 0x8162685
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 214
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x05
PokemonLeague_AgathasRoom:: @ 834FA80
.4byte gMapData_PokemonLeague_AgathasRoom @ 0x831F468
.4byte gMapEvents_PokemonLeague_AgathasRoom @ 0x83B1928
.4byte gMapScripts_PokemonLeague_AgathasRoom @ 0x8162810
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 215
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06
PokemonLeague_LancesRoom:: @ 834FA9C
.4byte gMapData_PokemonLeague_LancesRoom @ 0x831F9CC
.4byte gMapEvents_PokemonLeague_LancesRoom @ 0x83B1964
.4byte gMapScripts_PokemonLeague_LancesRoom @ 0x816292D
.4byte NULL
.2byte BGM_FRLG_INDIGO_PLATEAU
.2byte 216
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07
PokemonLeague_ChampionsRoom:: @ 834FAB8
.4byte gMapData_PokemonLeague_ChampionsRoom @ 0x831FBF8
.4byte gMapEvents_PokemonLeague_ChampionsRoom @ 0x83B19B8
.4byte gMapScripts_PokemonLeague_ChampionsRoom @ 0x8162AE2
.4byte NULL
.2byte BGM_FRLG_INDIGO_PLATEAU
.2byte 217
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PokemonLeague_HallOfFame:: @ 834FAD4
.4byte gMapData_PokemonLeague_HallOfFame @ 0x831FD3C
.4byte gMapEvents_PokemonLeague_HallOfFame @ 0x83B19EC
.4byte gMapScripts_PokemonLeague_HallOfFame @ 0x8162D4C
.4byte NULL
.2byte BGM_FRLG_HALL_OF_FAME_PALLET_TOWN
.2byte 218
.byte 0x89, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
RockTunnel_1F:: @ 834FAF0
.4byte gMapData_RockTunnel_1F @ 0x83130E4
.4byte gMapEvents_RockTunnel_1F @ 0x83B1B2C
.4byte gMapScripts_RockTunnel_1F @ 0x8162DD6
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 154
.byte 0x8a, 0x01, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
RockTunnel_B1F:: @ 834FB0C
.4byte gMapData_RockTunnel_B1F @ 0x8314008
.4byte gMapEvents_RockTunnel_B1F @ 0x83B1DD0
.4byte gMapScripts_RockTunnel_B1F @ 0x8162E8A
.4byte NULL
.2byte BGM_FRLG_MT_MOON
.2byte 155
.byte 0x8a, 0x01, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SeafoamIslands_1F:: @ 834FB28
.4byte gMapData_SeafoamIslands_1F @ 0x831474C
.4byte gMapEvents_SeafoamIslands_1F @ 0x83B1E64
.4byte gMapScripts_SeafoamIslands_1F @ 0x8162F43
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 156
.byte 0x8b, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SeafoamIslands_B1F:: @ 834FB44
.4byte gMapData_SeafoamIslands_B1F @ 0x8314E44
.4byte gMapEvents_SeafoamIslands_B1F @ 0x83B1F30
.4byte gMapScripts_SeafoamIslands_B1F @ 0x8162F4D
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 157
.byte 0x8b, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SeafoamIslands_B2F:: @ 834FB60
.4byte gMapData_SeafoamIslands_B2F @ 0x8315588
.4byte gMapEvents_SeafoamIslands_B2F @ 0x83B1FE4
.4byte gMapScripts_SeafoamIslands_B2F @ 0x8162F4E
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 158
.byte 0x8b, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SeafoamIslands_B3F:: @ 834FB7C
.4byte gMapData_SeafoamIslands_B3F @ 0x8315CCC
.4byte gMapEvents_SeafoamIslands_B3F @ 0x83B20DC
.4byte gMapScripts_SeafoamIslands_B3F @ 0x8162F4F
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 159
.byte 0x8b, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SeafoamIslands_B4F:: @ 834FB98
.4byte gMapData_SeafoamIslands_B4F @ 0x8316410
.4byte gMapEvents_SeafoamIslands_B4F @ 0x83B21C4
.4byte gMapScripts_SeafoamIslands_B4F @ 0x816302E
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 160
.byte 0x8b, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
PokemonTower_1F:: @ 834FBB4
.4byte gMapData_PokemonTower_1F @ 0x83167F4
.4byte gMapEvents_PokemonTower_1F @ 0x83B2270
.4byte gMapScripts_PokemonTower_1F @ 0x8163235
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 161
.byte 0x8c, 0x00, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_2F:: @ 834FBD0
.4byte gMapData_PokemonTower_2F @ 0x8316BD8
.4byte gMapEvents_PokemonTower_2F @ 0x83B22E4
.4byte gMapScripts_PokemonTower_2F @ 0x8163285
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 162
.byte 0x8c, 0x00, 0x00, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_3F:: @ 834FBEC
.4byte gMapData_PokemonTower_3F @ 0x8316FBC
.4byte gMapEvents_PokemonTower_3F @ 0x83B2368
.4byte gMapScripts_PokemonTower_3F @ 0x81633A6
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 163
.byte 0x8c, 0x00, 0x06, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_4F:: @ 834FC08
.4byte gMapData_PokemonTower_4F @ 0x83173A0
.4byte gMapEvents_PokemonTower_4F @ 0x83B241C
.4byte gMapScripts_PokemonTower_4F @ 0x81633EC
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 164
.byte 0x8c, 0x00, 0x06, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_5F:: @ 834FC24
.4byte gMapData_PokemonTower_5F @ 0x8317784
.4byte gMapEvents_PokemonTower_5F @ 0x83B2604
.4byte gMapScripts_PokemonTower_5F @ 0x8163432
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 165
.byte 0x8c, 0x00, 0x06, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_6F:: @ 834FC40
.4byte gMapData_PokemonTower_6F @ 0x8317B68
.4byte gMapEvents_PokemonTower_6F @ 0x83B26C0
.4byte gMapScripts_PokemonTower_6F @ 0x81634B7
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 166
.byte 0x8c, 0x00, 0x06, 0x08, 0x00, 0x05, 0x00, 0x02
PokemonTower_7F:: @ 834FC5C
.4byte gMapData_PokemonTower_7F @ 0x8317F4C
.4byte gMapEvents_PokemonTower_7F @ 0x83B2748
.4byte gMapScripts_PokemonTower_7F @ 0x8163559
.4byte NULL
.2byte BGM_FRLG_POKEMON_TOWER
.2byte 167
.byte 0x8c, 0x00, 0x06, 0x08, 0x00, 0x05, 0x00, 0x02
PowerPlant:: @ 834FC78
.4byte gMapData_PowerPlant @ 0x8318EC0
.4byte gMapEvents_PowerPlant @ 0x83B285C
.4byte gMapScripts_PowerPlant @ 0x8163764
.4byte NULL
.2byte BGM_FRLG_POKEMON_MANSION
.2byte 168
.byte 0x8e, 0x00, 0x00, 0x08, 0x00, 0x07, 0x00, 0x03
MtEmber_RubyPath_B4F:: @ 834FC94
.4byte gMapData_MtEmber_RubyPath_B4F @ 0x8339290
.4byte gMapEvents_MtEmber_RubyPath_B4F @ 0x83B29B8
.4byte gMapScripts_MtEmber_RubyPath_B4F @ 0x81638EB
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 269
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_Exterior:: @ 834FCB0
.4byte gMapData_MtEmber_Exterior @ 0x833D660
.4byte gMapEvents_MtEmber_Exterior @ 0x83B2C24
.4byte gMapScripts_MtEmber_Exterior @ 0x8163946
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 280
.byte 0xaf, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
MtEmber_SummitPath_1F:: @ 834FCCC
.4byte gMapData_MtEmber_SummitPath_1F @ 0x833DC08
.4byte gMapEvents_MtEmber_SummitPath_1F @ 0x83B2C48
.4byte gMapScripts_MtEmber_SummitPath_1F @ 0x8163AF9
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 282
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_SummitPath_2F:: @ 834FCE8
.4byte gMapData_MtEmber_SummitPath_2F @ 0x833ED6C
.4byte gMapEvents_MtEmber_SummitPath_2F @ 0x83B2D44
.4byte gMapScripts_MtEmber_SummitPath_2F @ 0x8163AFA
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 283
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_SummitPath_3F:: @ 834FD04
.4byte gMapData_MtEmber_SummitPath_3F @ 0x833EEDC
.4byte gMapEvents_MtEmber_SummitPath_3F @ 0x83B2D68
.4byte gMapScripts_MtEmber_SummitPath_3F @ 0x8163AFB
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 284
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_Summit:: @ 834FD20
.4byte gMapData_MtEmber_Summit @ 0x833D9C8
.4byte gMapEvents_MtEmber_Summit @ 0x83B2DFC
.4byte gMapScripts_MtEmber_Summit @ 0x8163AFC
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 281
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B5F:: @ 834FD3C
.4byte gMapData_MtEmber_RubyPath_B5F @ 0x833FF60
.4byte gMapEvents_MtEmber_RubyPath_B5F @ 0x83B2E3C
.4byte gMapScripts_MtEmber_RubyPath_B5F @ 0x8163BAA
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 291
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_Kitchen3:: @ 834FD58
.4byte gMapData_SSAnne_Kitchen3 @ 0x833F304
.4byte gMapEvents_SSAnne_Kitchen3 @ 0x83B2EE0
.4byte gMapScripts_SSAnne_Kitchen3 @ 0x8163C45
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 285
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B1F:: @ 834FD74
.4byte gMapData_MtEmber_RubyPath_B1F @ 0x833F524
.4byte gMapEvents_MtEmber_RubyPath_B1F @ 0x83B2F64
.4byte gMapScripts_MtEmber_RubyPath_B1F @ 0x8163C46
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 286
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B2F:: @ 834FD90
.4byte gMapData_MtEmber_RubyPath_B2F @ 0x833F6A8
.4byte gMapEvents_MtEmber_RubyPath_B2F @ 0x83B3030
.4byte gMapScripts_MtEmber_RubyPath_B2F @ 0x8163C47
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 287
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B3F:: @ 834FDAC
.4byte gMapData_MtEmber_RubyPath_B3F @ 0x833FC60
.4byte gMapEvents_MtEmber_RubyPath_B3F @ 0x83B314C
.4byte gMapScripts_MtEmber_RubyPath_B3F @ 0x8163C48
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 288
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B1F_Stairs:: @ 834FDC8
.4byte gMapData_MtEmber_RubyPath_B1F_Stairs @ 0x833FCD8
.4byte gMapEvents_MtEmber_RubyPath_B1F_Stairs @ 0x83B3188
.4byte gMapScripts_MtEmber_RubyPath_B1F_Stairs @ 0x8163C6F
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 289
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
MtEmber_RubyPath_B2F_Stairs:: @ 834FDE4
.4byte gMapData_MtEmber_RubyPath_B2F_Stairs @ 0x833FD5C
.4byte gMapEvents_MtEmber_RubyPath_B2F_Stairs @ 0x83B31DC
.4byte gMapScripts_MtEmber_RubyPath_B2F_Stairs @ 0x8163C70
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 290
.byte 0xaf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
ThreeIsland_BerryForest:: @ 834FE00
.4byte gMapData_ThreeIsland_BerryForest @ 0x833A7A8
.4byte gMapEvents_ThreeIsland_BerryForest @ 0x83B340C
.4byte gMapScripts_ThreeIsland_BerryForest @ 0x8163C71
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 270
.byte 0xb0, 0x00, 0x0b, 0x03, 0x01, 0x07, 0x00, 0x00
FourIsland_IcefallCave_Entrance:: @ 834FE1C
.4byte gMapData_FourIsland_IcefallCave_Entrance @ 0x8340E38
.4byte gMapEvents_FourIsland_IcefallCave_Entrance @ 0x83B3438
.4byte gMapScripts_FourIsland_IcefallCave_Entrance @ 0x8163D3A
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 293
.byte 0xb1, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
FourIsland_IcefallCave_1F:: @ 834FE38
.4byte gMapData_FourIsland_IcefallCave_1F @ 0x834117C
.4byte gMapEvents_FourIsland_IcefallCave_1F @ 0x83B34AC
.4byte gMapScripts_FourIsland_IcefallCave_1F @ 0x8163D44
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 294
.byte 0xb1, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_CaptainsOffice2:: @ 834FE54
.4byte gMapData_SSAnne_CaptainsOffice2 @ 0x8341560
.4byte gMapEvents_SSAnne_CaptainsOffice2 @ 0x83B3508
.4byte gMapScripts_SSAnne_CaptainsOffice2 @ 0x8163D81
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 295
.byte 0xb1, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_CaptainsOffice3:: @ 834FE70
.4byte gMapData_SSAnne_CaptainsOffice3 @ 0x8341A98
.4byte gMapEvents_SSAnne_CaptainsOffice3 @ 0x83B35B4
.4byte gMapScripts_SSAnne_CaptainsOffice3 @ 0x8163D82
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 296
.byte 0xb1, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_CaptainsOffice4:: @ 834FE8C
.4byte gMapData_SSAnne_CaptainsOffice4 @ 0x83405A4
.4byte gMapEvents_SSAnne_CaptainsOffice4 @ 0x83B381C
.4byte gMapScripts_SSAnne_CaptainsOffice4 @ 0x8163F2E
.4byte NULL
.2byte BGM_FRLG_ROCKET_HIDEOUT
.2byte 292
.byte 0xb2, 0x00, 0x00, 0x08, 0x00, 0x05, 0x00, 0x03
SSAnne_CaptainsOffice5:: @ 834FEA8
.4byte gMapData_SSAnne_CaptainsOffice5 @ 0x83436C4
.4byte gMapEvents_SSAnne_CaptainsOffice5 @ 0x83B3850
.4byte gMapScripts_SSAnne_CaptainsOffice5 @ 0x8164182
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 309
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SixIsland_DottedHole_B1F:: @ 834FEC4
.4byte gMapData_SixIsland_DottedHole_B1F @ 0x8343808
.4byte gMapEvents_SixIsland_DottedHole_B1F @ 0x83B3898
.4byte gMapScripts_SixIsland_DottedHole_B1F @ 0x81641B0
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 310
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SixIsland_DottedHole_B2F:: @ 834FEE0
.4byte gMapData_SixIsland_DottedHole_B2F @ 0x834394C
.4byte gMapEvents_SixIsland_DottedHole_B2F @ 0x83B38E0
.4byte gMapScripts_SixIsland_DottedHole_B2F @ 0x81641B1
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 311
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SixIsland_DottedHole_B3F:: @ 834FEFC
.4byte gMapData_SixIsland_DottedHole_B3F @ 0x8343A90
.4byte gMapEvents_SixIsland_DottedHole_B3F @ 0x83B3928
.4byte gMapScripts_SixIsland_DottedHole_B3F @ 0x81641B2
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 312
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_CaptainsOffice9:: @ 834FF18
.4byte gMapData_SSAnne_CaptainsOffice9 @ 0x8343BD4
.4byte gMapEvents_SSAnne_CaptainsOffice9 @ 0x83B3970
.4byte gMapScripts_SSAnne_CaptainsOffice9 @ 0x81641B3
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 313
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SixIsland_DottedHole_SapphireRoom:: @ 834FF34
.4byte gMapData_SixIsland_DottedHole_SapphireRoom @ 0x8343DD8
.4byte gMapEvents_SixIsland_DottedHole_SapphireRoom @ 0x83B39D0
.4byte gMapScripts_SixIsland_DottedHole_SapphireRoom @ 0x81641B4
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 314
.byte 0xb4, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SSAnne_1F_Room11:: @ 834FF50
.4byte gMapData_SSAnne_1F_Room11 @ 0x8345030
.4byte gMapEvents_SSAnne_1F_Room11 @ 0x83B3B34
.4byte gMapScripts_SSAnne_1F_Room11 @ 0x8164559
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 317
.byte 0xb6, 0x00, 0x00, 0x03, 0x01, 0x07, 0x00, 0x00
SSAnne_1F_Room12:: @ 834FF6C
.4byte gMapData_SSAnne_1F_Room12 @ 0x8347A50
.4byte gMapEvents_SSAnne_1F_Room12 @ 0x83B3B50
.4byte gMapScripts_SSAnne_1F_Room12 @ 0x81646A4
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 340
.byte 0xb7, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
NavelRock_Exterior:: @ 834FF88
.4byte gMapData_NavelRock_Exterior @ 0x834873C
.4byte gMapEvents_NavelRock_Exterior @ 0x83B3B74
.4byte gMapScripts_NavelRock_Exterior @ 0x81646AE
.4byte NULL
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 343
.byte 0xae, 0x00, 0x00, 0x03, 0x01, 0x06, 0x00, 0x00
SevenIsland_TrainerTower_1F:: @ 834FFA4
.4byte gMapData_SevenIsland_TrainerTower_1F @ 0x8341FCC
.4byte gMapEvents_SevenIsland_TrainerTower_1F @ 0x83B3C40
.4byte gMapScripts_SevenIsland_TrainerTower_1F @ 0x81646B8
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 298
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_2F:: @ 834FFC0
.4byte gMapData_SevenIsland_TrainerTower_2F @ 0x8342254
.4byte gMapEvents_SevenIsland_TrainerTower_2F @ 0x83B3D14
.4byte gMapScripts_SevenIsland_TrainerTower_2F @ 0x81646E6
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 299
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_3F:: @ 834FFDC
.4byte gMapData_SevenIsland_TrainerTower_3F @ 0x83424DC
.4byte gMapEvents_SevenIsland_TrainerTower_3F @ 0x83B3DE8
.4byte gMapScripts_SevenIsland_TrainerTower_3F @ 0x8164714
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 300
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_4F:: @ 834FFF8
.4byte gMapData_SevenIsland_TrainerTower_4F @ 0x8342764
.4byte gMapEvents_SevenIsland_TrainerTower_4F @ 0x83B3EBC
.4byte gMapScripts_SevenIsland_TrainerTower_4F @ 0x8164742
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 301
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_5F:: @ 8350014
.4byte gMapData_SevenIsland_TrainerTower_5F @ 0x83429EC
.4byte gMapEvents_SevenIsland_TrainerTower_5F @ 0x83B3F90
.4byte gMapScripts_SevenIsland_TrainerTower_5F @ 0x8164770
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 302
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_6F:: @ 8350030
.4byte gMapData_SevenIsland_TrainerTower_6F @ 0x8342C74
.4byte gMapEvents_SevenIsland_TrainerTower_6F @ 0x83B4064
.4byte gMapScripts_SevenIsland_TrainerTower_6F @ 0x816479E
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 303
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_7F:: @ 835004C
.4byte gMapData_SevenIsland_TrainerTower_7F @ 0x8342EFC
.4byte gMapEvents_SevenIsland_TrainerTower_7F @ 0x83B4138
.4byte gMapScripts_SevenIsland_TrainerTower_7F @ 0x81647CC
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 304
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_8F:: @ 8350068
.4byte gMapData_SevenIsland_TrainerTower_8F @ 0x8343184
.4byte gMapEvents_SevenIsland_TrainerTower_8F @ 0x83B420C
.4byte gMapScripts_SevenIsland_TrainerTower_8F @ 0x81647FA
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 305
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_Roof:: @ 8350084
.4byte gMapData_SevenIsland_TrainerTower_Roof @ 0x83433E8
.4byte gMapEvents_SevenIsland_TrainerTower_Roof @ 0x83B4248
.4byte gMapScripts_SevenIsland_TrainerTower_Roof @ 0x8164828
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 306
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_Lobby:: @ 83500A0
.4byte gMapData_SevenIsland_TrainerTower_Lobby @ 0x8341D44
.4byte gMapEvents_SevenIsland_TrainerTower_Lobby @ 0x83B4308
.4byte gMapScripts_SevenIsland_TrainerTower_Lobby @ 0x8164839
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 297
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
SevenIsland_TrainerTower_Elevator:: @ 83500BC
.4byte gMapData_SevenIsland_TrainerTower_Elevator @ 0x8343454
.4byte gMapEvents_SevenIsland_TrainerTower_Elevator @ 0x83B4330
.4byte gMapScripts_SevenIsland_TrainerTower_Elevator @ 0x8164AF8
.4byte NULL
.2byte BGM_FRLG_TRAINER_TOWER
.2byte 307
.byte 0xb3, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00
FiveIsland_LostCave_Entrance:: @ 83500D8
.4byte gMapData_FiveIsland_LostCave_Entrance @ 0x83454D8
.4byte gMapEvents_FiveIsland_LostCave_Entrance @ 0x83B4354
.4byte gMapScripts_FiveIsland_LostCave_Entrance @ 0x8164BEC
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 320
.byte 0xb5, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room1:: @ 83500F4
.4byte gMapData_FiveIsland_LostCave_Room1 @ 0x83455F0
.4byte gMapEvents_FiveIsland_LostCave_Room1 @ 0x83B43A8
.4byte gMapScripts_FiveIsland_LostCave_Room1 @ 0x8164BF6
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 321
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room2:: @ 8350110
.4byte gMapData_FiveIsland_LostCave_Room2 @ 0x8345708
.4byte gMapEvents_FiveIsland_LostCave_Room2 @ 0x83B43DC
.4byte gMapScripts_FiveIsland_LostCave_Room2 @ 0x8164C0E
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 322
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room3:: @ 835012C
.4byte gMapData_FiveIsland_LostCave_Room3 @ 0x8345820
.4byte gMapEvents_FiveIsland_LostCave_Room3 @ 0x83B4410
.4byte gMapScripts_FiveIsland_LostCave_Room3 @ 0x8164C0F
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 323
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room4:: @ 8350148
.4byte gMapData_FiveIsland_LostCave_Room4 @ 0x8345938
.4byte gMapEvents_FiveIsland_LostCave_Room4 @ 0x83B445C
.4byte gMapScripts_FiveIsland_LostCave_Room4 @ 0x8164C10
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 324
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room5:: @ 8350164
.4byte gMapData_FiveIsland_LostCave_Room5 @ 0x8345A50
.4byte gMapEvents_FiveIsland_LostCave_Room5 @ 0x83B4490
.4byte gMapScripts_FiveIsland_LostCave_Room5 @ 0x8164C28
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 325
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room6:: @ 8350180
.4byte gMapData_FiveIsland_LostCave_Room6 @ 0x8345B68
.4byte gMapEvents_FiveIsland_LostCave_Room6 @ 0x83B44C4
.4byte gMapScripts_FiveIsland_LostCave_Room6 @ 0x8164C29
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 326
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room7:: @ 835019C
.4byte gMapData_FiveIsland_LostCave_Room7 @ 0x8345C80
.4byte gMapEvents_FiveIsland_LostCave_Room7 @ 0x83B44F8
.4byte gMapScripts_FiveIsland_LostCave_Room7 @ 0x8164C2A
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 327
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room8:: @ 83501B8
.4byte gMapData_FiveIsland_LostCave_Room8 @ 0x8345D98
.4byte gMapEvents_FiveIsland_LostCave_Room8 @ 0x83B452C
.4byte gMapScripts_FiveIsland_LostCave_Room8 @ 0x8164C2B
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 328
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room9:: @ 83501D4
.4byte gMapData_FiveIsland_LostCave_Room9 @ 0x8345EB0
.4byte gMapEvents_FiveIsland_LostCave_Room9 @ 0x83B4560
.4byte gMapScripts_FiveIsland_LostCave_Room9 @ 0x8164C2C
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 329
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room10:: @ 83501F0
.4byte gMapData_FiveIsland_LostCave_Room10 @ 0x8345FC8
.4byte gMapEvents_FiveIsland_LostCave_Room10 @ 0x83B45AC
.4byte gMapScripts_FiveIsland_LostCave_Room10 @ 0x8164C2D
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 330
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room11:: @ 835020C
.4byte gMapData_FiveIsland_LostCave_Room11 @ 0x83460E0
.4byte gMapEvents_FiveIsland_LostCave_Room11 @ 0x83B45E0
.4byte gMapScripts_FiveIsland_LostCave_Room11 @ 0x8164CCB
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 331
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room12:: @ 8350228
.4byte gMapData_FiveIsland_LostCave_Room12 @ 0x83461F8
.4byte gMapEvents_FiveIsland_LostCave_Room12 @ 0x83B4614
.4byte gMapScripts_FiveIsland_LostCave_Room12 @ 0x8164CCC
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 332
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room13:: @ 8350244
.4byte gMapData_FiveIsland_LostCave_Room13 @ 0x8346310
.4byte gMapEvents_FiveIsland_LostCave_Room13 @ 0x83B4648
.4byte gMapScripts_FiveIsland_LostCave_Room13 @ 0x8164CCD
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 333
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
FiveIsland_LostCave_Room14:: @ 8350260
.4byte gMapData_FiveIsland_LostCave_Room14 @ 0x8346428
.4byte gMapEvents_FiveIsland_LostCave_Room14 @ 0x83B467C
.4byte gMapScripts_FiveIsland_LostCave_Room14 @ 0x8164CCE
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 334
.byte 0xb5, 0x00, 0x06, 0x04, 0x01, 0x07, 0x00, 0x00
SevenIsland_TanobyRuins_MoneanChamber:: @ 835027C
.4byte gMapData_SevenIsland_TanobyRuins_MoneanChamber @ 0x834675C
.4byte gMapEvents_SevenIsland_TanobyRuins_MoneanChamber @ 0x83B4698
.4byte gMapScripts_SevenIsland_TanobyRuins_MoneanChamber @ 0x8164CCF
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 335
.byte 0xbc, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_LiptooChamber:: @ 8350298
.4byte gMapData_SevenIsland_TanobyRuins_LiptooChamber @ 0x8346A90
.4byte gMapEvents_SevenIsland_TanobyRuins_LiptooChamber @ 0x83B46B4
.4byte gMapScripts_SevenIsland_TanobyRuins_LiptooChamber @ 0x8164CDE
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 336
.byte 0xbd, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_WeepthChamber:: @ 83502B4
.4byte gMapData_SevenIsland_TanobyRuins_WeepthChamber @ 0x8346DC4
.4byte gMapEvents_SevenIsland_TanobyRuins_WeepthChamber @ 0x83B46D0
.4byte gMapScripts_SevenIsland_TanobyRuins_WeepthChamber @ 0x8164CEA
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 337
.byte 0xbe, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_DilfordChamber:: @ 83502D0
.4byte gMapData_SevenIsland_TanobyRuins_DilfordChamber @ 0x83470F8
.4byte gMapEvents_SevenIsland_TanobyRuins_DilfordChamber @ 0x83B46EC
.4byte gMapScripts_SevenIsland_TanobyRuins_DilfordChamber @ 0x8164CF6
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 338
.byte 0xbf, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_ScufibChamber:: @ 83502EC
.4byte gMapData_SevenIsland_TanobyRuins_ScufibChamber @ 0x834742C
.4byte gMapEvents_SevenIsland_TanobyRuins_ScufibChamber @ 0x83B4708
.4byte gMapScripts_SevenIsland_TanobyRuins_ScufibChamber @ 0x8164D02
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 339
.byte 0xc0, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_RixyChamber:: @ 8350308
.4byte gMapData_SevenIsland_TanobyRuins_RixyChamber @ 0x8349DC8
.4byte gMapEvents_SevenIsland_TanobyRuins_RixyChamber @ 0x83B4724
.4byte gMapScripts_SevenIsland_TanobyRuins_RixyChamber @ 0x8164D0E
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 362
.byte 0xc1, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
SevenIsland_TanobyRuins_ViapoisChamber:: @ 8350324
.4byte gMapData_SevenIsland_TanobyRuins_ViapoisChamber @ 0x834A0FC
.4byte gMapEvents_SevenIsland_TanobyRuins_ViapoisChamber @ 0x83B4740
.4byte gMapScripts_SevenIsland_TanobyRuins_ViapoisChamber @ 0x8164D1A
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 363
.byte 0xc2, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
ThreeIsland_DunsparceTunnel:: @ 8350340
.4byte gMapData_ThreeIsland_DunsparceTunnel @ 0x83451F8
.4byte gMapEvents_ThreeIsland_DunsparceTunnel @ 0x83B4788
.4byte gMapScripts_ThreeIsland_DunsparceTunnel @ 0x8164D26
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 318
.byte 0xb9, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x00
SevenIsland_SeavaultCanyon_TanobyKey:: @ 835035C
.4byte gMapData_SevenIsland_SeavaultCanyon_TanobyKey @ 0x8347C54
.4byte gMapEvents_SevenIsland_SeavaultCanyon_TanobyKey @ 0x83B48BC
.4byte gMapScripts_SevenIsland_SeavaultCanyon_TanobyKey @ 0x8164DCC
.4byte NULL
.2byte BGM_FRLG_TANOBY_RUINS
.2byte 341
.byte 0xba, 0x00, 0x00, 0x04, 0x01, 0x07, 0x00, 0x02
NavelRock_1F:: @ 8350378
.4byte gMapData_NavelRock_1F @ 0x8348AD4
.4byte gMapEvents_NavelRock_1F @ 0x83B48E0
.4byte gMapScripts_NavelRock_1F @ 0x8164F9E
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 344
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_Summit:: @ 8350394
.4byte gMapData_NavelRock_Summit @ 0x8348EB0
.4byte gMapEvents_NavelRock_Summit @ 0x83B4930
.4byte gMapScripts_NavelRock_Summit @ 0x8164F9F
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 345
.byte 0xae, 0x00, 0x0b, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_Base:: @ 83503B0
.4byte gMapData_NavelRock_Base @ 0x834929C
.4byte gMapEvents_NavelRock_Base @ 0x83B4964
.4byte gMapScripts_NavelRock_Base @ 0x81650E7
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 346
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_SummitPath_2F:: @ 83503CC
.4byte gMapData_NavelRock_SummitPath_2F @ 0x8349324
.4byte gMapEvents_NavelRock_SummitPath_2F @ 0x83B4988
.4byte gMapScripts_NavelRock_SummitPath_2F @ 0x81651F2
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 347
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_SummitPath_3F:: @ 83503E8
.4byte gMapData_NavelRock_SummitPath_3F @ 0x83493AC
.4byte gMapEvents_NavelRock_SummitPath_3F @ 0x83B49AC
.4byte gMapScripts_NavelRock_SummitPath_3F @ 0x81651F3
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 348
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_SummitPath_4F:: @ 8350404
.4byte gMapData_NavelRock_SummitPath_4F @ 0x8349434
.4byte gMapEvents_NavelRock_SummitPath_4F @ 0x83B49D0
.4byte gMapScripts_NavelRock_SummitPath_4F @ 0x81651F4
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 349
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_SummitPath_5F:: @ 8350420
.4byte gMapData_NavelRock_SummitPath_5F @ 0x83494BC
.4byte gMapEvents_NavelRock_SummitPath_5F @ 0x83B49F4
.4byte gMapScripts_NavelRock_SummitPath_5F @ 0x81651F5
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 350
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B1F:: @ 835043C
.4byte gMapData_NavelRock_BasePath_B1F @ 0x8349544
.4byte gMapEvents_NavelRock_BasePath_B1F @ 0x83B4A18
.4byte gMapScripts_NavelRock_BasePath_B1F @ 0x81651F6
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 351
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B2F:: @ 8350458
.4byte gMapData_NavelRock_BasePath_B2F @ 0x83495CC
.4byte gMapEvents_NavelRock_BasePath_B2F @ 0x83B4A3C
.4byte gMapScripts_NavelRock_BasePath_B2F @ 0x81651F7
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 352
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B3F:: @ 8350474
.4byte gMapData_NavelRock_BasePath_B3F @ 0x8349654
.4byte gMapEvents_NavelRock_BasePath_B3F @ 0x83B4A60
.4byte gMapScripts_NavelRock_BasePath_B3F @ 0x81651F8
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 353
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B4F:: @ 8350490
.4byte gMapData_NavelRock_BasePath_B4F @ 0x83496DC
.4byte gMapEvents_NavelRock_BasePath_B4F @ 0x83B4A84
.4byte gMapScripts_NavelRock_BasePath_B4F @ 0x81651F9
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 354
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B5F:: @ 83504AC
.4byte gMapData_NavelRock_BasePath_B5F @ 0x8349764
.4byte gMapEvents_NavelRock_BasePath_B5F @ 0x83B4AA8
.4byte gMapScripts_NavelRock_BasePath_B5F @ 0x81651FA
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 355
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B6F:: @ 83504C8
.4byte gMapData_NavelRock_BasePath_B6F @ 0x83497EC
.4byte gMapEvents_NavelRock_BasePath_B6F @ 0x83B4ACC
.4byte gMapScripts_NavelRock_BasePath_B6F @ 0x81651FB
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 356
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B7F:: @ 83504E4
.4byte gMapData_NavelRock_BasePath_B7F @ 0x8349874
.4byte gMapEvents_NavelRock_BasePath_B7F @ 0x83B4AF0
.4byte gMapScripts_NavelRock_BasePath_B7F @ 0x81651FC
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 357
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B8F:: @ 8350500
.4byte gMapData_NavelRock_BasePath_B8F @ 0x83498FC
.4byte gMapEvents_NavelRock_BasePath_B8F @ 0x83B4B14
.4byte gMapScripts_NavelRock_BasePath_B8F @ 0x81651FD
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 358
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B9F:: @ 835051C
.4byte gMapData_NavelRock_BasePath_B9F @ 0x8349984
.4byte gMapEvents_NavelRock_BasePath_B9F @ 0x83B4B38
.4byte gMapScripts_NavelRock_BasePath_B9F @ 0x81651FE
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 359
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B10F:: @ 8350538
.4byte gMapData_NavelRock_BasePath_B10F @ 0x8349A0C
.4byte gMapEvents_NavelRock_BasePath_B10F @ 0x83B4B5C
.4byte gMapScripts_NavelRock_BasePath_B10F @ 0x81651FF
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 360
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_BasePath_B11F:: @ 8350554
.4byte gMapData_NavelRock_BasePath_B11F @ 0x8349A94
.4byte gMapEvents_NavelRock_BasePath_B11F @ 0x83B4B80
.4byte gMapScripts_NavelRock_BasePath_B11F @ 0x8165200
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 361
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_B1F:: @ 8350570
.4byte gMapData_NavelRock_B1F @ 0x834A210
.4byte gMapEvents_NavelRock_B1F @ 0x83B4BA4
.4byte gMapScripts_NavelRock_B1F @ 0x8165201
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 364
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
NavelRock_Fork:: @ 835058C
.4byte gMapData_NavelRock_Fork @ 0x834B9A4
.4byte gMapEvents_NavelRock_Fork @ 0x83B4BD0
.4byte gMapScripts_NavelRock_Fork @ 0x8165202
.4byte NULL
.2byte BGM_FRLG_MT_EMBER
.2byte 365
.byte 0xae, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
BirthIsland_Exterior:: @ 83505A8
.4byte gMapData_BirthIsland_Exterior @ 0x8348380
.4byte gMapEvents_BirthIsland_Exterior @ 0x83B4C1C
.4byte gMapScripts_BirthIsland_Exterior @ 0x8165203
.4byte NULL
.2byte 0xFFFF
.2byte 342
.byte 0xbb, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00
OneIsland_KindleRoad_EmberSpa:: @ 83505C4
.4byte gMapData_OneIsland_KindleRoad_EmberSpa @ 0x834EB70
.4byte gMapEvents_OneIsland_KindleRoad_EmberSpa @ 0x83B4CD8
.4byte gMapScripts_OneIsland_KindleRoad_EmberSpa @ 0x816535B
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 383
.byte 0xc3, 0x00, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00
BirthIsland_Harbor:: @ 83505E0
.4byte gMapData_BirthIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_BirthIsland_Harbor @ 0x83B4D24
.4byte gMapScripts_BirthIsland_Harbor @ 0x81653E6
.4byte NULL
.2byte 0xFFFF
.2byte 315
.byte 0xbb, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
NavelRock_Harbor:: @ 83505FC
.4byte gMapData_NavelRock_Harbor @ 0x8343FB8
.4byte gMapEvents_NavelRock_Harbor @ 0x83B4D70
.4byte gMapScripts_NavelRock_Harbor @ 0x8165420
.4byte NULL
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 315
.byte 0xae, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PalletTown:: @ 8350618
.4byte gMapData_PalletTown @ 0x82DD4C0
.4byte gMapEvents_PalletTown @ 0x83B4E50
.4byte gMapScripts_PalletTown @ 0x816545A
.4byte gMapConnections_PalletTown @ 0x835276C
.2byte BGM_FRLG_PALLET_TOWN
.2byte 78
.byte 0x58, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
ViridianCity:: @ 8350634
.4byte gMapData_ViridianCity @ 0x82DE3E4
.4byte gMapEvents_ViridianCity @ 0x83B4FE0
.4byte gMapScripts_ViridianCity @ 0x81658D3
.4byte gMapConnections_ViridianCity @ 0x8352798
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 79
.byte 0x59, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
PewterCity:: @ 8350650
.4byte gMapData_PewterCity @ 0x82DF308
.4byte gMapEvents_PewterCity @ 0x83B518C
.4byte gMapScripts_PewterCity @ 0x8165B8E
.4byte gMapConnections_PewterCity @ 0x83527B8
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 80
.byte 0x5a, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
CeruleanCity:: @ 835066C
.4byte gMapData_CeruleanCity @ 0x82E022C
.4byte gMapEvents_CeruleanCity @ 0x83B53E0
.4byte gMapScripts_CeruleanCity @ 0x8166471
.4byte gMapConnections_CeruleanCity @ 0x83527F0
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 81
.byte 0x5b, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
LavenderTown:: @ 8350688
.4byte gMapData_LavenderTown @ 0x82E0610
.4byte gMapEvents_LavenderTown @ 0x83B549C
.4byte gMapScripts_LavenderTown @ 0x816686B
.4byte gMapConnections_LavenderTown @ 0x835281C
.2byte BGM_FRLG_LAVENDER_TOWN
.2byte 82
.byte 0x5c, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
VermilionCity:: @ 83506A4
.4byte gMapData_VermilionCity @ 0x82E1534
.4byte gMapEvents_VermilionCity @ 0x83B5648
.4byte gMapScripts_VermilionCity @ 0x81668DC
.4byte gMapConnections_VermilionCity @ 0x835283C
.2byte BGM_FRLG_VERMILION_CITY
.2byte 83
.byte 0x5d, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
CeladonCity:: @ 83506C0
.4byte gMapData_CeladonCity @ 0x82E2818
.4byte gMapEvents_CeladonCity @ 0x83B5898
.4byte gMapScripts_CeladonCity @ 0x8166C8F
.4byte gMapConnections_CeladonCity @ 0x835285C
.2byte BGM_FRLG_CELADON_CITY
.2byte 84
.byte 0x5e, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
FuchsiaCity:: @ 83506DC
.4byte gMapData_FuchsiaCity @ 0x82E373C
.4byte gMapEvents_FuchsiaCity @ 0x83B5B14
.4byte gMapScripts_FuchsiaCity @ 0x8166D75
.4byte gMapConnections_FuchsiaCity @ 0x8352888
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 85
.byte 0x5f, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
CinnabarIsland:: @ 83506F8
.4byte gMapData_CinnabarIsland @ 0x82E3B20
.4byte gMapEvents_CinnabarIsland @ 0x83B5BF0
.4byte gMapScripts_CinnabarIsland @ 0x8166ED6
.4byte gMapConnections_CinnabarIsland @ 0x83528A8
.2byte BGM_FRLG_CINNABAR_ISLAND
.2byte 86
.byte 0x60, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
IndigoPlateau_Exterior:: @ 8350714
.4byte gMapData_IndigoPlateau_Exterior @ 0x82E3F04
.4byte gMapEvents_IndigoPlateau_Exterior @ 0x83B5C3C
.4byte gMapScripts_IndigoPlateau_Exterior @ 0x816723B
.4byte gMapConnections_IndigoPlateau_Exterior @ 0x83528BC
.2byte BGM_FRLG_INDIGO_PLATEAU
.2byte 87
.byte 0x61, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
SaffronCity_Duplicate:: @ 8350730
.4byte gMapData_SaffronCity_Duplicate @ 0x831E8D4
.4byte gMapEvents_SaffronCity_Duplicate @ 0x83B5E9C
.4byte gMapScripts_SaffronCity_Duplicate @ 0x816735F
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 207
.byte 0x62, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
SaffronCity:: @ 835074C
.4byte gMapData_SaffronCity @ 0x82E4E28
.4byte gMapEvents_SaffronCity @ 0x83B5EB0
.4byte gMapScripts_SaffronCity @ 0x8167483
.4byte gMapConnections_SaffronCity @ 0x835292C
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 88
.byte 0x62, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
OneIsland:: @ 8350768
.4byte gMapData_OneIsland @ 0x8321714
.4byte gMapEvents_OneIsland @ 0x83B5F44
.4byte gMapScripts_OneIsland @ 0x8167484
.4byte gMapConnections_OneIsland @ 0x835294C
.2byte BGM_FRLG_ISLAND_ONE
.2byte 230
.byte 0x8f, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
TwoIsland:: @ 8350784
.4byte gMapData_TwoIsland @ 0x8321EB8
.4byte gMapEvents_TwoIsland @ 0x83B6074
.4byte gMapScripts_TwoIsland @ 0x8167564
.4byte gMapConnections_TwoIsland @ 0x8352960
.2byte BGM_FRLG_ISLAND_ONE
.2byte 231
.byte 0x90, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
ThreeIsland:: @ 83507A0
.4byte gMapData_ThreeIsland @ 0x832265C
.4byte gMapEvents_ThreeIsland @ 0x83B62C8
.4byte gMapScripts_ThreeIsland @ 0x81677AD
.4byte gMapConnections_ThreeIsland @ 0x8352980
.2byte BGM_FRLG_ISLAND_ONE
.2byte 232
.byte 0x91, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
FourIsland:: @ 83507BC
.4byte gMapData_FourIsland @ 0x8323580
.4byte gMapEvents_FourIsland @ 0x83B646C
.4byte gMapScripts_FourIsland @ 0x8167CAE
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 233
.byte 0x92, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
FiveIsland:: @ 83507D8
.4byte gMapData_FiveIsland @ 0x8323964
.4byte gMapEvents_FiveIsland @ 0x83B64F4
.4byte gMapScripts_FiveIsland @ 0x8167E8E
.4byte gMapConnections_FiveIsland @ 0x83529A0
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 234
.byte 0x93, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
SevenIsland:: @ 83507F4
.4byte gMapData_SevenIsland @ 0x8323D48
.4byte gMapEvents_SevenIsland @ 0x83B657C
.4byte gMapScripts_SevenIsland @ 0x8167EB3
.4byte gMapConnections_SevenIsland @ 0x83529C0
.2byte BGM_FRLG_ISLAND_SIX
.2byte 235
.byte 0x94, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
SixIsland:: @ 8350810
.4byte gMapData_SixIsland @ 0x832430C
.4byte gMapEvents_SixIsland @ 0x83B65F8
.4byte gMapScripts_SixIsland @ 0x8167ED8
.4byte gMapConnections_SixIsland @ 0x83529D4
.2byte BGM_FRLG_ISLAND_SIX
.2byte 236
.byte 0x95, 0x00, 0x02, 0x01, 0x01, 0x06, 0x00, 0x00
Route1:: @ 835082C
.4byte gMapData_Route1 @ 0x82E55CC
.4byte gMapEvents_Route1 @ 0x83B6648
.4byte gMapScripts_Route1 @ 0x8167EFD
.4byte gMapConnections_Route1 @ 0x83529F4
.2byte BGM_FRLG_ROUTE_1
.2byte 89
.byte 0x65, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route2:: @ 8350848
.4byte gMapData_Route2 @ 0x82E64F0
.4byte gMapEvents_Route2 @ 0x83B676C
.4byte gMapScripts_Route2 @ 0x8167F64
.4byte gMapConnections_Route2 @ 0x8352A14
.2byte BGM_FRLG_ROUTE_1
.2byte 90
.byte 0x66, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route3:: @ 8350864
.4byte gMapData_Route3 @ 0x82E7234
.4byte gMapEvents_Route3 @ 0x83B6870
.4byte gMapScripts_Route3 @ 0x8167F77
.4byte gMapConnections_Route3 @ 0x8352A34
.2byte BGM_FRLG_ROUTE_3
.2byte 91
.byte 0x67, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route4:: @ 8350880
.4byte gMapData_Route4 @ 0x82E8338
.4byte gMapEvents_Route4 @ 0x83B6980
.4byte gMapScripts_Route4 @ 0x8167F8A
.4byte gMapConnections_Route4 @ 0x8352A54
.2byte BGM_FRLG_ROUTE_3
.2byte 92
.byte 0x68, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route5:: @ 835089C
.4byte gMapData_Route5 @ 0x82E925C
.4byte gMapEvents_Route5 @ 0x83B69C0
.4byte gMapScripts_Route5 @ 0x8167FA7
.4byte gMapConnections_Route5 @ 0x8352A74
.2byte BGM_FRLG_ROUTE_3
.2byte 93
.byte 0x69, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route6:: @ 83508B8
.4byte gMapData_Route6 @ 0x82E9A00
.4byte gMapEvents_Route6 @ 0x83B6AA0
.4byte gMapScripts_Route6 @ 0x8167FB1
.4byte gMapConnections_Route6 @ 0x8352A94
.2byte BGM_FRLG_ROUTE_3
.2byte 94
.byte 0x6a, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route7:: @ 83508D4
.4byte gMapData_Route7 @ 0x82E9DE4
.4byte gMapEvents_Route7 @ 0x83B6AF4
.4byte gMapScripts_Route7 @ 0x8167FBB
.4byte gMapConnections_Route7 @ 0x8352AB4
.2byte BGM_FRLG_ROUTE_3
.2byte 95
.byte 0x6b, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route8:: @ 83508F0
.4byte gMapData_Route8 @ 0x82EA948
.4byte gMapEvents_Route8 @ 0x83B6CB0
.4byte gMapScripts_Route8 @ 0x8167FC5
.4byte gMapConnections_Route8 @ 0x8352AD4
.2byte BGM_FRLG_ROUTE_3
.2byte 96
.byte 0x6c, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route9:: @ 835090C
.4byte gMapData_Route9 @ 0x82EB4AC
.4byte gMapEvents_Route9 @ 0x83B6E14
.4byte gMapScripts_Route9 @ 0x8167FCF
.4byte gMapConnections_Route9 @ 0x8352AF4
.2byte BGM_FRLG_ROUTE_3
.2byte 97
.byte 0x6d, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route10:: @ 8350928
.4byte gMapData_Route10 @ 0x82EC3D0
.4byte gMapEvents_Route10 @ 0x83B6FA0
.4byte gMapScripts_Route10 @ 0x8167FD9
.4byte gMapConnections_Route10 @ 0x8352B14
.2byte BGM_FRLG_ROUTE_3
.2byte 98
.byte 0x6e, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route11:: @ 8350944
.4byte gMapData_Route11 @ 0x82ECF34
.4byte gMapEvents_Route11 @ 0x83B711C
.4byte gMapScripts_Route11 @ 0x8167FF6
.4byte gMapConnections_Route11 @ 0x8352B34
.2byte BGM_FRLG_ROUTE_11
.2byte 99
.byte 0x6f, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route12:: @ 8350960
.4byte gMapData_Route12 @ 0x82EE5D8
.4byte gMapEvents_Route12 @ 0x83B72DC
.4byte gMapScripts_Route12 @ 0x8168000
.4byte gMapConnections_Route12 @ 0x8352B60
.2byte BGM_FRLG_ROUTE_11
.2byte 100
.byte 0x70, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route13:: @ 835097C
.4byte gMapData_Route13 @ 0x82EF13C
.4byte gMapEvents_Route13 @ 0x83B7428
.4byte gMapScripts_Route13 @ 0x81680B5
.4byte gMapConnections_Route13 @ 0x8352B80
.2byte BGM_FRLG_ROUTE_11
.2byte 101
.byte 0x71, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route14:: @ 8350998
.4byte gMapData_Route14 @ 0x82EFCA0
.4byte gMapEvents_Route14 @ 0x83B75C8
.4byte gMapScripts_Route14 @ 0x81680D1
.4byte gMapConnections_Route14 @ 0x8352BA0
.2byte BGM_FRLG_ROUTE_11
.2byte 102
.byte 0x72, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route15:: @ 83509B4
.4byte gMapData_Route15 @ 0x82F0804
.4byte gMapEvents_Route15 @ 0x83B7748
.4byte gMapScripts_Route15 @ 0x81680DB
.4byte gMapConnections_Route15 @ 0x8352BC0
.2byte BGM_FRLG_ROUTE_11
.2byte 103
.byte 0x73, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route16:: @ 83509D0
.4byte gMapData_Route16 @ 0x82F0FA8
.4byte gMapEvents_Route16 @ 0x83B7898
.4byte gMapScripts_Route16 @ 0x81680E5
.4byte gMapConnections_Route16 @ 0x8352BE0
.2byte BGM_FRLG_ROUTE_3
.2byte 104
.byte 0x74, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route17:: @ 83509EC
.4byte gMapData_Route17 @ 0x82F2DCC
.4byte gMapEvents_Route17 @ 0x83B7A20
.4byte gMapScripts_Route17 @ 0x81681BF
.4byte gMapConnections_Route17 @ 0x8352C00
.2byte BGM_FRLG_ROUTE_3
.2byte 105
.byte 0x75, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route18:: @ 8350A08
.4byte gMapData_Route18 @ 0x82F3750
.4byte gMapEvents_Route18 @ 0x83B7AA4
.4byte gMapScripts_Route18 @ 0x81681F6
.4byte gMapConnections_Route18 @ 0x8352C20
.2byte BGM_FRLG_ROUTE_3
.2byte 106
.byte 0x76, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route19:: @ 8350A24
.4byte gMapData_Route19 @ 0x82F42B4
.4byte gMapEvents_Route19 @ 0x83B7BE4
.4byte gMapScripts_Route19 @ 0x8168231
.4byte gMapConnections_Route19 @ 0x8352C40
.2byte BGM_FRLG_ROUTE_3
.2byte 107
.byte 0x77, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route20:: @ 8350A40
.4byte gMapData_Route20 @ 0x82F5598
.4byte gMapEvents_Route20 @ 0x83B7D34
.4byte gMapScripts_Route20 @ 0x816823B
.4byte gMapConnections_Route20 @ 0x8352C60
.2byte BGM_FRLG_ROUTE_3
.2byte 108
.byte 0x78, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route21_North:: @ 8350A5C
.4byte gMapData_Route21_North @ 0x82F5F1C
.4byte gMapEvents_Route21_North @ 0x83B7DE4
.4byte gMapScripts_Route21_North @ 0x8168289
.4byte gMapConnections_Route21_North @ 0x8352C80
.2byte BGM_FRLG_ROUTE_3
.2byte 109
.byte 0x79, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route21_South:: @ 8350A78
.4byte gMapData_Route21_South @ 0x83206C0
.4byte gMapEvents_Route21_South @ 0x83B7E70
.4byte gMapScripts_Route21_South @ 0x816828A
.4byte gMapConnections_Route21_South @ 0x8352CA0
.2byte BGM_FRLG_ROUTE_3
.2byte 219
.byte 0x79, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route22:: @ 8350A94
.4byte gMapData_Route22 @ 0x82F6840
.4byte gMapEvents_Route22 @ 0x83B7F18
.4byte gMapScripts_Route22 @ 0x816828B
.4byte gMapConnections_Route22 @ 0x8352CC0
.2byte BGM_FRLG_ROUTE_3
.2byte 110
.byte 0x7a, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route23:: @ 8350AB0
.4byte gMapData_Route23 @ 0x82F8664
.4byte gMapEvents_Route23 @ 0x83B8300
.4byte gMapScripts_Route23 @ 0x81684EB
.4byte gMapConnections_Route23 @ 0x8352CE0
.2byte BGM_FRLG_INDIGO_PLATEAU
.2byte 111
.byte 0x7b, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route24:: @ 8350ACC
.4byte gMapData_Route24 @ 0x82F8E08
.4byte gMapEvents_Route24 @ 0x83B8400
.4byte gMapScripts_Route24 @ 0x816861F
.4byte gMapConnections_Route24 @ 0x8352D00
.2byte BGM_FRLG_ROUTE_24
.2byte 112
.byte 0x7c, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
Route25:: @ 8350AE8
.4byte gMapData_Route25 @ 0x82F996C
.4byte gMapEvents_Route25 @ 0x83B8590
.4byte gMapScripts_Route25 @ 0x8168745
.4byte gMapConnections_Route25 @ 0x8352D14
.2byte BGM_FRLG_ROUTE_24
.2byte 113
.byte 0x7d, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
OneIsland_KindleRoad:: @ 8350B04
.4byte gMapData_OneIsland_KindleRoad @ 0x8325D70
.4byte gMapEvents_OneIsland_KindleRoad @ 0x83B888C
.4byte gMapScripts_OneIsland_KindleRoad @ 0x8168758
.4byte gMapConnections_OneIsland_KindleRoad @ 0x8352D28
.2byte BGM_FRLG_ROUTE_3
.2byte 237
.byte 0x96, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
OneIsland_TreasureBeach:: @ 8350B20
.4byte gMapData_OneIsland_TreasureBeach @ 0x8326514
.4byte gMapEvents_OneIsland_TreasureBeach @ 0x83B8930
.4byte gMapScripts_OneIsland_TreasureBeach @ 0x816876B
.4byte gMapConnections_OneIsland_TreasureBeach @ 0x8352D3C
.2byte BGM_FRLG_ROUTE_3
.2byte 238
.byte 0x97, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
TwoIsland_CapeBrink:: @ 8350B3C
.4byte gMapData_TwoIsland_CapeBrink @ 0x8326CB8
.4byte gMapEvents_TwoIsland_CapeBrink @ 0x83B8964
.4byte gMapScripts_TwoIsland_CapeBrink @ 0x8168775
.4byte gMapConnections_TwoIsland_CapeBrink @ 0x8352D50
.2byte BGM_FRLG_ROUTE_3
.2byte 239
.byte 0x98, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
ThreeIsland_BondBridge:: @ 8350B58
.4byte gMapData_ThreeIsland_BondBridge @ 0x8327BDC
.4byte gMapEvents_ThreeIsland_BondBridge @ 0x83B8A9C
.4byte gMapScripts_ThreeIsland_BondBridge @ 0x8168776
.4byte gMapConnections_ThreeIsland_BondBridge @ 0x8352D64
.2byte BGM_FRLG_ROUTE_3
.2byte 240
.byte 0x99, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
ThreeIsland_Port:: @ 8350B74
.4byte gMapData_ThreeIsland_Port @ 0x8328380
.4byte gMapEvents_ThreeIsland_Port @ 0x83B8B10
.4byte gMapScripts_ThreeIsland_Port @ 0x8168789
.4byte gMapConnections_ThreeIsland_Port @ 0x8352D78
.2byte BGM_FRLG_ROUTE_3
.2byte 241
.byte 0x9a, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
UnknownMap_03_50:: @ 8350B90
.4byte gMapData_UnknownMap_03_50 @ 0x83283A8
.4byte gMapEvents_UnknownMap_03_50 @ 0x83B8B24
.4byte gMapScripts_UnknownMap_03_50 @ 0x81687E0
.4byte gMapConnections_UnknownMap_03_50 @ 0x8352D8C
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 242
.byte 0x9b, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
UnknownMap_03_51:: @ 8350BAC
.4byte gMapData_UnknownMap_03_51 @ 0x83283D0
.4byte gMapEvents_UnknownMap_03_51 @ 0x83B8B38
.4byte gMapScripts_UnknownMap_03_51 @ 0x81687E1
.4byte gMapConnections_UnknownMap_03_51 @ 0x8352DA0
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 243
.byte 0x9c, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
UnknownMap_03_52:: @ 8350BC8
.4byte gMapData_UnknownMap_03_52 @ 0x8329114
.4byte gMapEvents_UnknownMap_03_52 @ 0x83B8B4C
.4byte gMapScripts_UnknownMap_03_52 @ 0x81687E2
.4byte NULL
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 244
.byte 0x9d, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
UnknownMap_03_53:: @ 8350BE4
.4byte gMapData_UnknownMap_03_53 @ 0x8329C78
.4byte gMapEvents_UnknownMap_03_53 @ 0x83B8B60
.4byte gMapScripts_UnknownMap_03_53 @ 0x81687E3
.4byte NULL
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 245
.byte 0x9e, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
FiveIsland_ResortGorgeous:: @ 8350C00
.4byte gMapData_FiveIsland_ResortGorgeous @ 0x832A7DC
.4byte gMapEvents_FiveIsland_ResortGorgeous @ 0x83B8C80
.4byte gMapScripts_FiveIsland_ResortGorgeous @ 0x81687E4
.4byte gMapConnections_FiveIsland_ResortGorgeous @ 0x8352DB4
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 246
.byte 0x9f, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
FiveIsland_WaterLabyrinth:: @ 8350C1C
.4byte gMapData_FiveIsland_WaterLabyrinth @ 0x832B340
.4byte gMapEvents_FiveIsland_WaterLabyrinth @ 0x83B8CC4
.4byte gMapScripts_FiveIsland_WaterLabyrinth @ 0x816884D
.4byte gMapConnections_FiveIsland_WaterLabyrinth @ 0x8352DD4
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 247
.byte 0xa0, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
FiveIsland_Meadow:: @ 8350C38
.4byte gMapData_FiveIsland_Meadow @ 0x832BAE4
.4byte gMapEvents_FiveIsland_Meadow @ 0x83B8D94
.4byte gMapScripts_FiveIsland_Meadow @ 0x8168932
.4byte gMapConnections_FiveIsland_Meadow @ 0x8352DF4
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 248
.byte 0xa1, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
FiveIsland_MemorialPillar:: @ 8350C54
.4byte gMapData_FiveIsland_MemorialPillar @ 0x832C648
.4byte gMapEvents_FiveIsland_MemorialPillar @ 0x83B8E5C
.4byte gMapScripts_FiveIsland_MemorialPillar @ 0x81689D2
.4byte gMapConnections_FiveIsland_MemorialPillar @ 0x8352E08
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 249
.byte 0xa2, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SixIsland_OutcastIsland:: @ 8350C70
.4byte gMapData_SixIsland_OutcastIsland @ 0x832D56C
.4byte gMapEvents_SixIsland_OutcastIsland @ 0x83B8F38
.4byte gMapScripts_SixIsland_OutcastIsland @ 0x8168B15
.4byte gMapConnections_SixIsland_OutcastIsland @ 0x8352E1C
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 250
.byte 0xa3, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SixIsland_GreenPath:: @ 8350C8C
.4byte gMapData_SixIsland_GreenPath @ 0x832E0D0
.4byte gMapEvents_SixIsland_GreenPath @ 0x83B8FA8
.4byte gMapScripts_SixIsland_GreenPath @ 0x8168B2D
.4byte gMapConnections_SixIsland_GreenPath @ 0x8352E3C
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 251
.byte 0xa4, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SixIsland_WaterPath:: @ 8350CA8
.4byte gMapData_SixIsland_WaterPath @ 0x832F3B4
.4byte gMapEvents_SixIsland_WaterPath @ 0x83B90E0
.4byte gMapScripts_SixIsland_WaterPath @ 0x8168B40
.4byte gMapConnections_SixIsland_WaterPath @ 0x8352E68
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 252
.byte 0xa5, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SixIsland_RuinValley:: @ 8350CC4
.4byte gMapData_SixIsland_RuinValley @ 0x83302D8
.4byte gMapEvents_SixIsland_RuinValley @ 0x83B92A0
.4byte gMapScripts_SixIsland_RuinValley @ 0x8168B53
.4byte gMapConnections_SixIsland_RuinValley @ 0x8352E7C
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 253
.byte 0xa6, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SevenIsland_TrainerTower:: @ 8350CE0
.4byte gMapData_SevenIsland_TrainerTower @ 0x833287C
.4byte gMapEvents_SevenIsland_TrainerTower @ 0x83B9328
.4byte gMapScripts_SevenIsland_TrainerTower @ 0x8168BD5
.4byte gMapConnections_SevenIsland_TrainerTower @ 0x8352E90
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 254
.byte 0xa7, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SevenIsland_SevaultCanyon_Entrance:: @ 8350CFC
.4byte gMapData_SevenIsland_SevaultCanyon_Entrance @ 0x8333020
.4byte gMapEvents_SevenIsland_SevaultCanyon_Entrance @ 0x83B93FC
.4byte gMapScripts_SevenIsland_SevaultCanyon_Entrance @ 0x8168BF3
.4byte gMapConnections_SevenIsland_SevaultCanyon_Entrance @ 0x8352EB0
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 255
.byte 0xa8, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SevenIsland_SevaultCanyon:: @ 8350D18
.4byte gMapData_SevenIsland_SevaultCanyon @ 0x8333F44
.4byte gMapEvents_SevenIsland_SevaultCanyon @ 0x83B9618
.4byte gMapScripts_SevenIsland_SevaultCanyon @ 0x8168BFD
.4byte gMapConnections_SevenIsland_SevaultCanyon @ 0x8352ED0
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 256
.byte 0xa9, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
SevenIsland_TanobyRuins:: @ 8350D34
.4byte gMapData_SevenIsland_TanobyRuins @ 0x83355E8
.4byte gMapEvents_SevenIsland_TanobyRuins @ 0x83B96F4
.4byte gMapScripts_SevenIsland_TanobyRuins @ 0x8168C07
.4byte gMapConnections_SevenIsland_TanobyRuins @ 0x8352EE4
.2byte BGM_FRLG_SEVII_ISLANDS
.2byte 257
.byte 0xaa, 0x00, 0x02, 0x03, 0x01, 0x06, 0x00, 0x00
PalletTown_PlayersHouse_1F:: @ 8350D50
.4byte gMapData_PalletTown_PlayersHouse_1F @ 0x82D5200
.4byte gMapEvents_PalletTown_PlayersHouse_1F @ 0x83B974C
.4byte gMapScripts_PalletTown_PlayersHouse_1F @ 0x8168C08
.4byte NULL
.2byte BGM_FRLG_PALLET_TOWN
.2byte 1
.byte 0x58, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PalletTown_PlayersHouse_2F:: @ 8350D6C
.4byte gMapData_PalletTown_PlayersHouse_2F @ 0x82D52FC
.4byte gMapEvents_PalletTown_PlayersHouse_2F @ 0x83B978C
.4byte gMapScripts_PalletTown_PlayersHouse_2F @ 0x8168CA3
.4byte NULL
.2byte BGM_FRLG_PALLET_TOWN
.2byte 2
.byte 0x58, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PalletTown_GarysHouse:: @ 8350D88
.4byte gMapData_PalletTown_GarysHouse @ 0x82D5424
.4byte gMapEvents_PalletTown_GarysHouse @ 0x83B980C
.4byte gMapScripts_PalletTown_GarysHouse @ 0x8168D27
.4byte NULL
.2byte BGM_FRLG_PALLET_TOWN
.2byte 3
.byte 0x58, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PalletTown_ProfessorOaksLab:: @ 8350DA4
.4byte gMapData_PalletTown_ProfessorOaksLab @ 0x82D5668
.4byte gMapEvents_PalletTown_ProfessorOaksLab @ 0x83B99B8
.4byte gMapScripts_PalletTown_ProfessorOaksLab @ 0x8168F7E
.4byte NULL
.2byte BGM_FRLG_OAK_LAB
.2byte 5
.byte 0x58, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ViridianCity_House1:: @ 8350DC0
.4byte gMapData_ViridianCity_House1 @ 0x833AEAC
.4byte gMapEvents_ViridianCity_House1 @ 0x83B9A38
.4byte gMapScripts_ViridianCity_House1 @ 0x8169E9A
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 276
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ViridianCity_Gym:: @ 8350DDC
.4byte gMapData_ViridianCity_Gym @ 0x82D86AC
.4byte gMapEvents_ViridianCity_Gym @ 0x83B9B78
.4byte gMapScripts_ViridianCity_Gym @ 0x8169EC9
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 37
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
ViridianCity_House2:: @ 8350DF8
.4byte gMapData_ViridianCity_House2 @ 0x8338D20
.4byte gMapEvents_ViridianCity_House2 @ 0x83B9C10
.4byte gMapScripts_ViridianCity_House2 @ 0x816A07C
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 266
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ViridianCity_Mart:: @ 8350E14
.4byte gMapData_ViridianCity_Mart @ 0x82D5BCC
.4byte gMapEvents_ViridianCity_Mart @ 0x83B9C84
.4byte gMapScripts_ViridianCity_Mart @ 0x816A1D3
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ViridianCity_PokemonCenter_1F:: @ 8350E30
.4byte gMapData_ViridianCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_ViridianCity_PokemonCenter_1F @ 0x83B9D18
.4byte gMapScripts_ViridianCity_PokemonCenter_1F @ 0x816A2C0
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ViridianCity_PokemonCenter_2F:: @ 8350E4C
.4byte gMapData_ViridianCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_ViridianCity_PokemonCenter_2F @ 0x83B9DA4
.4byte gMapScripts_ViridianCity_PokemonCenter_2F @ 0x816A2F3
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x59, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_Museum_1F:: @ 8350E68
.4byte gMapData_PewterCity_Museum_1F @ 0x831A1FC
.4byte gMapEvents_PewterCity_Museum_1F @ 0x83B9ED8
.4byte gMapScripts_PewterCity_Museum_1F @ 0x816A31A
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 180
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_Museum_2F:: @ 8350E84
.4byte gMapData_PewterCity_Museum_2F @ 0x831A39C
.4byte gMapEvents_PewterCity_Museum_2F @ 0x83B9FCC
.4byte gMapScripts_PewterCity_Museum_2F @ 0x816A552
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 181
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_Gym:: @ 8350EA0
.4byte gMapData_PewterCity_Gym @ 0x82D732C
.4byte gMapEvents_PewterCity_Gym @ 0x83BA058
.4byte gMapScripts_PewterCity_Gym @ 0x816A592
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 28
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
PewterCity_Mart:: @ 8350EBC
.4byte gMapData_PewterCity_Mart @ 0x82D5BCC
.4byte gMapEvents_PewterCity_Mart @ 0x83BA0CC
.4byte gMapScripts_PewterCity_Mart @ 0x816A6CD
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_House1:: @ 8350ED8
.4byte gMapData_PewterCity_House1 @ 0x82D5840
.4byte gMapEvents_PewterCity_House1 @ 0x83BA140
.4byte gMapScripts_PewterCity_House1 @ 0x816A71C
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 7
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_PokemonCenter_1F:: @ 8350EF4
.4byte gMapData_PewterCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_PewterCity_PokemonCenter_1F @ 0x83BA21C
.4byte gMapScripts_PewterCity_PokemonCenter_1F @ 0x816A760
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_PokemonCenter_2F:: @ 8350F10
.4byte gMapData_PewterCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_PewterCity_PokemonCenter_2F @ 0x83BA2A8
.4byte gMapScripts_PewterCity_PokemonCenter_2F @ 0x816A7B5
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
PewterCity_House2:: @ 8350F2C
.4byte gMapData_PewterCity_House2 @ 0x82D5840
.4byte gMapEvents_PewterCity_House2 @ 0x83BA304
.4byte gMapScripts_PewterCity_House2 @ 0x816A7DC
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 7
.byte 0x5a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_House1:: @ 8350F48
.4byte gMapData_CeruleanCity_House1 @ 0x831A560
.4byte gMapEvents_CeruleanCity_House1 @ 0x83BA350
.4byte gMapScripts_CeruleanCity_House1 @ 0x816A7EF
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 183
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_House2:: @ 8350F64
.4byte gMapData_CeruleanCity_House2 @ 0x831A474
.4byte gMapEvents_CeruleanCity_House2 @ 0x83BA3C0
.4byte gMapScripts_CeruleanCity_House2 @ 0x816A975
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 182
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_House3:: @ 8350F80
.4byte gMapData_CeruleanCity_House3 @ 0x82D5754
.4byte gMapEvents_CeruleanCity_House3 @ 0x83BA41C
.4byte gMapScripts_CeruleanCity_House3 @ 0x816A9A7
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 6
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_PokemonCenter_1F:: @ 8350F9C
.4byte gMapData_CeruleanCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_CeruleanCity_PokemonCenter_1F @ 0x83BA4F8
.4byte gMapScripts_CeruleanCity_PokemonCenter_1F @ 0x816AA2D
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_PokemonCenter_2F:: @ 8350FB8
.4byte gMapData_CeruleanCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_CeruleanCity_PokemonCenter_2F @ 0x83BA584
.4byte gMapScripts_CeruleanCity_PokemonCenter_2F @ 0x816AA79
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_Gym:: @ 8350FD4
.4byte gMapData_CeruleanCity_Gym @ 0x82D5F84
.4byte gMapEvents_CeruleanCity_Gym @ 0x83BA628
.4byte gMapScripts_CeruleanCity_Gym @ 0x816AAA0
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 12
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
CeruleanCity_BikeShop:: @ 8350FF0
.4byte gMapData_CeruleanCity_BikeShop @ 0x82D6F28
.4byte gMapEvents_CeruleanCity_BikeShop @ 0x83BA6FC
.4byte gMapScripts_CeruleanCity_BikeShop @ 0x816ABBC
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 26
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_Mart:: @ 835100C
.4byte gMapData_CeruleanCity_Mart @ 0x82D5BCC
.4byte gMapEvents_CeruleanCity_Mart @ 0x83BA770
.4byte gMapScripts_CeruleanCity_Mart @ 0x816AC9D
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_House4:: @ 8351028
.4byte gMapData_CeruleanCity_House4 @ 0x82D5754
.4byte gMapEvents_CeruleanCity_House4 @ 0x83BA7A4
.4byte gMapScripts_CeruleanCity_House4 @ 0x816ACEE
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 6
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeruleanCity_House5:: @ 8351044
.4byte gMapData_CeruleanCity_House5 @ 0x8343540
.4byte gMapEvents_CeruleanCity_House5 @ 0x83BA7E4
.4byte gMapScripts_CeruleanCity_House5 @ 0x816AE4F
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 308
.byte 0x5b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_PokemonCenter_1F:: @ 8351060
.4byte gMapData_LavenderTown_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_LavenderTown_PokemonCenter_1F @ 0x83BA890
.4byte gMapScripts_LavenderTown_PokemonCenter_1F @ 0x816B0EF
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_PokemonCenter_2F:: @ 835107C
.4byte gMapData_LavenderTown_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_LavenderTown_PokemonCenter_2F @ 0x83BA91C
.4byte gMapScripts_LavenderTown_PokemonCenter_2F @ 0x816B122
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_VolunteerPokemonHouse:: @ 8351098
.4byte gMapData_LavenderTown_VolunteerPokemonHouse @ 0x833ACC4
.4byte gMapEvents_LavenderTown_VolunteerPokemonHouse @ 0x83BA9FC
.4byte gMapScripts_LavenderTown_VolunteerPokemonHouse @ 0x816B149
.4byte NULL
.2byte BGM_FRLG_LAVENDER_TOWN
.2byte 274
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_House1:: @ 83510B4
.4byte gMapData_LavenderTown_House1 @ 0x82D6AF0
.4byte gMapEvents_LavenderTown_House1 @ 0x83BAA58
.4byte gMapScripts_LavenderTown_House1 @ 0x816B232
.4byte NULL
.2byte BGM_FRLG_LAVENDER_TOWN
.2byte 21
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_House2:: @ 83510D0
.4byte gMapData_LavenderTown_House2 @ 0x82D6AF0
.4byte gMapEvents_LavenderTown_House2 @ 0x83BAA9C
.4byte gMapScripts_LavenderTown_House2 @ 0x816B265
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 21
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
LavenderTown_Mart:: @ 83510EC
.4byte gMapData_LavenderTown_Mart @ 0x82D5BCC
.4byte gMapEvents_LavenderTown_Mart @ 0x83BAB28
.4byte gMapScripts_LavenderTown_Mart @ 0x816B34F
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x5c, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_House1:: @ 8351108
.4byte gMapData_VermilionCity_House1 @ 0x82D5754
.4byte gMapEvents_VermilionCity_House1 @ 0x83BAB6C
.4byte gMapScripts_VermilionCity_House1 @ 0x816B3A6
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 6
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_PokemonCenter_1F:: @ 8351124
.4byte gMapData_VermilionCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_VermilionCity_PokemonCenter_1F @ 0x83BAC48
.4byte gMapScripts_VermilionCity_PokemonCenter_1F @ 0x816B424
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_PokemonCenter_2F:: @ 8351140
.4byte gMapData_VermilionCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_VermilionCity_PokemonCenter_2F @ 0x83BACD4
.4byte gMapScripts_VermilionCity_PokemonCenter_2F @ 0x816B457
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_PokemonFanClub:: @ 835115C
.4byte gMapData_VermilionCity_PokemonFanClub @ 0x833ABC8
.4byte gMapEvents_VermilionCity_PokemonFanClub @ 0x83BADA8
.4byte gMapScripts_VermilionCity_PokemonFanClub @ 0x816B47E
.4byte NULL
.2byte BGM_FRLG_VERMILION_CITY
.2byte 273
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_House2:: @ 8351178
.4byte gMapData_VermilionCity_House2 @ 0x82D5754
.4byte gMapEvents_VermilionCity_House2 @ 0x83BADEC
.4byte gMapScripts_VermilionCity_House2 @ 0x816B5D6
.4byte NULL
.2byte BGM_FRLG_VERMILION_CITY
.2byte 6
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_Mart:: @ 8351194
.4byte gMapData_VermilionCity_Mart @ 0x82D5BCC
.4byte gMapEvents_VermilionCity_Mart @ 0x83BAE60
.4byte gMapScripts_VermilionCity_Mart @ 0x816B653
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
VermilionCity_Gym:: @ 83511B0
.4byte gMapData_VermilionCity_Gym @ 0x82D6E28
.4byte gMapEvents_VermilionCity_Gym @ 0x83BAFD0
.4byte gMapScripts_VermilionCity_Gym @ 0x816B69E
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 25
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
VermilionCity_House3:: @ 83511CC
.4byte gMapData_VermilionCity_House3 @ 0x82D5754
.4byte gMapEvents_VermilionCity_House3 @ 0x83BB068
.4byte gMapScripts_VermilionCity_House3 @ 0x816BAA9
.4byte NULL
.2byte BGM_FRLG_VERMILION_CITY
.2byte 6
.byte 0x5d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_DepartmentStore_1F:: @ 83511E8
.4byte gMapData_CeladonCity_DepartmentStore_1F @ 0x831B5FC
.4byte gMapEvents_CeladonCity_DepartmentStore_1F @ 0x83BB0EC
.4byte gMapScripts_CeladonCity_DepartmentStore_1F @ 0x816BAD8
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 192
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x01, 0x00
CeladonCity_DepartmentStore_2F:: @ 8351204
.4byte gMapData_CeladonCity_DepartmentStore_2F @ 0x831B7A8
.4byte gMapEvents_CeladonCity_DepartmentStore_2F @ 0x83BB184
.4byte gMapScripts_CeladonCity_DepartmentStore_2F @ 0x816BAF4
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 193
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x02, 0x00
CeladonCity_DepartmentStore_3F:: @ 8351220
.4byte gMapData_CeladonCity_DepartmentStore_3F @ 0x831B954
.4byte gMapEvents_CeladonCity_DepartmentStore_3F @ 0x83BB2AC
.4byte gMapScripts_CeladonCity_DepartmentStore_3F @ 0x816BB84
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 194
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x03, 0x00
CeladonCity_DepartmentStore_4F:: @ 835123C
.4byte gMapData_CeladonCity_DepartmentStore_4F @ 0x831BB00
.4byte gMapEvents_CeladonCity_DepartmentStore_4F @ 0x83BB32C
.4byte gMapScripts_CeladonCity_DepartmentStore_4F @ 0x816BBEE
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 195
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x04, 0x00
CeladonCity_DepartmentStore_5F:: @ 8351258
.4byte gMapData_CeladonCity_DepartmentStore_5F @ 0x831BCAC
.4byte gMapEvents_CeladonCity_DepartmentStore_5F @ 0x83BB3C4
.4byte gMapScripts_CeladonCity_DepartmentStore_5F @ 0x816BC40
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 196
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x05, 0x00
CeladonCity_DepartmentStore_Roof:: @ 8351274
.4byte gMapData_CeladonCity_DepartmentStore_Roof @ 0x831BEE4
.4byte gMapEvents_CeladonCity_DepartmentStore_Roof @ 0x83BB440
.4byte gMapScripts_CeladonCity_DepartmentStore_Roof @ 0x816BCCC
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 197
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x04, 0x7f, 0x00
CeladonCity_DepartmentStore_Elevator:: @ 8351290
.4byte gMapData_CeladonCity_DepartmentStore_Elevator @ 0x8319F70
.4byte gMapEvents_CeladonCity_DepartmentStore_Elevator @ 0x83BB47C
.4byte gMapScripts_CeladonCity_DepartmentStore_Elevator @ 0x816C152
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 179
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Condominiums_1F:: @ 83512AC
.4byte gMapData_CeladonCity_Condominiums_1F @ 0x831A7DC
.4byte gMapEvents_CeladonCity_Condominiums_1F @ 0x83BB538
.4byte gMapScripts_CeladonCity_Condominiums_1F @ 0x816C320
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 184
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Condominiums_2F:: @ 83512C8
.4byte gMapData_CeladonCity_Condominiums_2F @ 0x831AA58
.4byte gMapEvents_CeladonCity_Condominiums_2F @ 0x83BB5B4
.4byte gMapScripts_CeladonCity_Condominiums_2F @ 0x816C3D0
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 185
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Condominiums_3F:: @ 83512E4
.4byte gMapData_CeladonCity_Condominiums_3F @ 0x831ACD4
.4byte gMapEvents_CeladonCity_Condominiums_3F @ 0x83BB6A8
.4byte gMapScripts_CeladonCity_Condominiums_3F @ 0x816C3DA
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 186
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Condominiums_Roof:: @ 8351300
.4byte gMapData_CeladonCity_Condominiums_Roof @ 0x831AF7C
.4byte gMapEvents_CeladonCity_Condominiums_Roof @ 0x83BB6EC
.4byte gMapScripts_CeladonCity_Condominiums_Roof @ 0x816C459
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 187
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Condominiums_RoofRoom:: @ 835131C
.4byte gMapData_CeladonCity_Condominiums_RoofRoom @ 0x831B054
.4byte gMapEvents_CeladonCity_Condominiums_RoofRoom @ 0x83BB76C
.4byte gMapScripts_CeladonCity_Condominiums_RoofRoom @ 0x816C463
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 188
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_PokemonCenter_1F:: @ 8351338
.4byte gMapData_CeladonCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_CeladonCity_PokemonCenter_1F @ 0x83BB800
.4byte gMapScripts_CeladonCity_PokemonCenter_1F @ 0x816C5EC
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_PokemonCenter_2F:: @ 8351354
.4byte gMapData_CeladonCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_CeladonCity_PokemonCenter_2F @ 0x83BB88C
.4byte gMapScripts_CeladonCity_PokemonCenter_2F @ 0x816C61F
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_GameCorner:: @ 8351370
.4byte gMapData_CeladonCity_GameCorner @ 0x82D7168
.4byte gMapEvents_CeladonCity_GameCorner @ 0x83BBB78
.4byte gMapScripts_CeladonCity_GameCorner @ 0x816C646
.4byte NULL
.2byte BGM_FRLG_GAMECORNER
.2byte 27
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_GameCorner_PrizeRoom:: @ 835138C
.4byte gMapData_CeladonCity_GameCorner_PrizeRoom @ 0x831B12C
.4byte gMapEvents_CeladonCity_GameCorner_PrizeRoom @ 0x83BBC1C
.4byte gMapScripts_CeladonCity_GameCorner_PrizeRoom @ 0x816CB75
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 189
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Gym:: @ 83513A8
.4byte gMapData_CeladonCity_Gym @ 0x82D6370
.4byte gMapEvents_CeladonCity_Gym @ 0x83BBD68
.4byte gMapScripts_CeladonCity_Gym @ 0x816D060
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 15
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
CeladonCity_Restaurant:: @ 83513C4
.4byte gMapData_CeladonCity_Restaurant @ 0x831B29C
.4byte gMapEvents_CeladonCity_Restaurant @ 0x83BBE0C
.4byte gMapScripts_CeladonCity_Restaurant @ 0x816D1EA
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 190
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_House1:: @ 83513E0
.4byte gMapData_CeladonCity_House1 @ 0x82D6AF0
.4byte gMapEvents_CeladonCity_House1 @ 0x83BBE80
.4byte gMapScripts_CeladonCity_House1 @ 0x816D267
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 21
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CeladonCity_Hotel:: @ 83513FC
.4byte gMapData_CeladonCity_Hotel @ 0x831B438
.4byte gMapEvents_CeladonCity_Hotel @ 0x83BBF0C
.4byte gMapScripts_CeladonCity_Hotel @ 0x816D283
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 191
.byte 0x5e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_SafariZone_Entrance:: @ 8351418
.4byte gMapData_FuchsiaCity_SafariZone_Entrance @ 0x82D8E80
.4byte gMapEvents_FuchsiaCity_SafariZone_Entrance @ 0x83BBFA0
.4byte gMapScripts_FuchsiaCity_SafariZone_Entrance @ 0x816D2A8
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 51
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_Mart:: @ 8351434
.4byte gMapData_FuchsiaCity_Mart @ 0x82D5BCC
.4byte gMapEvents_FuchsiaCity_Mart @ 0x83BC014
.4byte gMapScripts_FuchsiaCity_Mart @ 0x816D4E0
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_ZooBuilding:: @ 8351450
.4byte gMapData_FuchsiaCity_ZooBuilding @ 0x831C348
.4byte gMapEvents_FuchsiaCity_ZooBuilding @ 0x83BC0A0
.4byte gMapScripts_FuchsiaCity_ZooBuilding @ 0x816D528
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 200
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_Gym:: @ 835146C
.4byte gMapData_FuchsiaCity_Gym @ 0x82D6A04
.4byte gMapEvents_FuchsiaCity_Gym @ 0x83BC1A4
.4byte gMapScripts_FuchsiaCity_Gym @ 0x816D54D
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 20
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
FuchsiaCity_House1:: @ 8351488
.4byte gMapData_FuchsiaCity_House1 @ 0x82D5754
.4byte gMapEvents_FuchsiaCity_House1 @ 0x83BC218
.4byte gMapScripts_FuchsiaCity_House1 @ 0x816D6C5
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 6
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_PokemonCenter_1F:: @ 83514A4
.4byte gMapData_FuchsiaCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_FuchsiaCity_PokemonCenter_1F @ 0x83BC2AC
.4byte gMapScripts_FuchsiaCity_PokemonCenter_1F @ 0x816D6F1
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_PokemonCenter_2F:: @ 83514C0
.4byte gMapData_FuchsiaCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_FuchsiaCity_PokemonCenter_2F @ 0x83BC338
.4byte gMapScripts_FuchsiaCity_PokemonCenter_2F @ 0x816D724
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_Building1:: @ 83514DC
.4byte gMapData_FuchsiaCity_Building1 @ 0x831C48C
.4byte gMapEvents_FuchsiaCity_Building1 @ 0x83BC3F4
.4byte gMapScripts_FuchsiaCity_Building1 @ 0x816D74B
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 201
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_House2:: @ 83514F8
.4byte gMapData_FuchsiaCity_House2 @ 0x831C578
.4byte gMapEvents_FuchsiaCity_House2 @ 0x83BC440
.4byte gMapScripts_FuchsiaCity_House2 @ 0x816D816
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 202
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FuchsiaCity_House3:: @ 8351514
.4byte gMapData_FuchsiaCity_House3 @ 0x82D5754
.4byte gMapEvents_FuchsiaCity_House3 @ 0x83BC474
.4byte gMapScripts_FuchsiaCity_House3 @ 0x816D894
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 6
.byte 0x5f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_Gym:: @ 8351530
.4byte gMapData_CinnabarIsland_Gym @ 0x82D82C8
.4byte gMapEvents_CinnabarIsland_Gym @ 0x83BC62C
.4byte gMapScripts_CinnabarIsland_Gym @ 0x816D94B
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 36
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
CinnabarIsland_PokemonLab_Entrance:: @ 835154C
.4byte gMapData_CinnabarIsland_PokemonLab_Entrance @ 0x831C804
.4byte gMapEvents_CinnabarIsland_PokemonLab_Entrance @ 0x83BC6B8
.4byte gMapScripts_CinnabarIsland_PokemonLab_Entrance @ 0x816E273
.4byte NULL
.2byte BGM_FRLG_CINNABAR_ISLAND
.2byte 203
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_PokemonLab_Lounge:: @ 8351568
.4byte gMapData_CinnabarIsland_PokemonLab_Lounge @ 0x831C974
.4byte gMapEvents_CinnabarIsland_PokemonLab_Lounge @ 0x83BC71C
.4byte gMapScripts_CinnabarIsland_PokemonLab_Lounge @ 0x816E2B8
.4byte NULL
.2byte BGM_FRLG_CINNABAR_ISLAND
.2byte 204
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_PokemonLab_ResearchRoom:: @ 8351584
.4byte gMapData_CinnabarIsland_PokemonLab_ResearchRoom @ 0x831CAE4
.4byte gMapEvents_CinnabarIsland_PokemonLab_ResearchRoom @ 0x83BC780
.4byte gMapScripts_CinnabarIsland_PokemonLab_ResearchRoom @ 0x816E3DE
.4byte NULL
.2byte BGM_FRLG_CINNABAR_ISLAND
.2byte 205
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_PokemonLab_ExperimentRoom:: @ 83515A0
.4byte gMapData_CinnabarIsland_PokemonLab_ExperimentRoom @ 0x831CC54
.4byte gMapEvents_CinnabarIsland_PokemonLab_ExperimentRoom @ 0x83BC7CC
.4byte gMapScripts_CinnabarIsland_PokemonLab_ExperimentRoom @ 0x816E400
.4byte NULL
.2byte BGM_FRLG_CINNABAR_ISLAND
.2byte 206
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_PokemonCenter_1F:: @ 83515BC
.4byte gMapData_CinnabarIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_CinnabarIsland_PokemonCenter_1F @ 0x83BC8A8
.4byte gMapScripts_CinnabarIsland_PokemonCenter_1F @ 0x816E8D7
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_PokemonCenter_2F:: @ 83515D8
.4byte gMapData_CinnabarIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_CinnabarIsland_PokemonCenter_2F @ 0x83BC934
.4byte gMapScripts_CinnabarIsland_PokemonCenter_2F @ 0x816E9E8
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
CinnabarIsland_Mart:: @ 83515F4
.4byte gMapData_CinnabarIsland_Mart @ 0x82D5BCC
.4byte gMapEvents_CinnabarIsland_Mart @ 0x83BC9A8
.4byte gMapScripts_CinnabarIsland_Mart @ 0x816EA0F
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x60, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
IndigoPlateau_PokemonCenter_1F:: @ 8351610
.4byte gMapData_IndigoPlateau_PokemonCenter_1F @ 0x831F000
.4byte gMapEvents_IndigoPlateau_PokemonCenter_1F @ 0x83BCA94
.4byte gMapScripts_IndigoPlateau_PokemonCenter_1F @ 0x816EA5A
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 212
.byte 0x61, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
IndigoPlateau_PokemonCenter_2F:: @ 835162C
.4byte gMapData_IndigoPlateau_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_IndigoPlateau_PokemonCenter_2F @ 0x83BCB20
.4byte gMapScripts_IndigoPlateau_PokemonCenter_2F @ 0x816EB0F
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x61, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
SaffronCity_House1_1F:: @ 8351648
.4byte gMapData_SaffronCity_House1_1F @ 0x8321004
.4byte gMapEvents_SaffronCity_House1_1F @ 0x83BCB9C
.4byte gMapScripts_SaffronCity_House1_1F @ 0x816EB36
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 226
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_House1_2F:: @ 8351664
.4byte gMapData_SaffronCity_House1_2F @ 0x8321100
.4byte gMapEvents_SaffronCity_House1_2F @ 0x83BCC3C
.4byte gMapScripts_SaffronCity_House1_2F @ 0x816EB5C
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 227
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_Dojo:: @ 8351680
.4byte gMapData_SaffronCity_Dojo @ 0x83212C4
.4byte gMapEvents_SaffronCity_Dojo @ 0x83BCD60
.4byte gMapScripts_SaffronCity_Dojo @ 0x816EBDB
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 228
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_Gym:: @ 835169C
.4byte gMapData_SaffronCity_Gym @ 0x82D7C44
.4byte gMapEvents_SaffronCity_Gym @ 0x83BCF6C
.4byte gMapScripts_SaffronCity_Gym @ 0x816EDD7
.4byte NULL
.2byte BGM_FRLG_GYM
.2byte 34
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01
SaffronCity_House2:: @ 83516B8
.4byte gMapData_SaffronCity_House2 @ 0x82D6AF0
.4byte gMapEvents_SaffronCity_House2 @ 0x83BD004
.4byte gMapScripts_SaffronCity_House2 @ 0x816EF73
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 21
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_Mart:: @ 83516D4
.4byte gMapData_SaffronCity_Mart @ 0x82D5BCC
.4byte gMapEvents_SaffronCity_Mart @ 0x83BD078
.4byte gMapScripts_SaffronCity_Mart @ 0x816EFA2
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_PokemonCenter_1F:: @ 83516F0
.4byte gMapData_SaffronCity_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_SaffronCity_PokemonCenter_1F @ 0x83BD13C
.4byte gMapScripts_SaffronCity_PokemonCenter_1F @ 0x816EFEC
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_PokemonCenter_2F:: @ 835170C
.4byte gMapData_SaffronCity_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_SaffronCity_PokemonCenter_2F @ 0x83BD1C8
.4byte gMapScripts_SaffronCity_PokemonCenter_2F @ 0x816F037
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_House3:: @ 8351728
.4byte gMapData_SaffronCity_House3 @ 0x82D6AF0
.4byte gMapEvents_SaffronCity_House3 @ 0x83BD20C
.4byte gMapScripts_SaffronCity_House3 @ 0x816F05E
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 21
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SaffronCity_PokemonTrainerFanClub:: @ 8351744
.4byte gMapData_SaffronCity_PokemonTrainerFanClub @ 0x8338A60
.4byte gMapEvents_SaffronCity_PokemonTrainerFanClub @ 0x83BD318
.4byte gMapScripts_SaffronCity_PokemonTrainerFanClub @ 0x816F0BF
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 263
.byte 0x62, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route2_ViridianForest_SouthEntrance:: @ 8351760
.4byte gMapData_Route2_ViridianForest_SouthEntrance @ 0x8320990
.4byte gMapEvents_Route2_ViridianForest_SouthEntrance @ 0x83BD37C
.4byte gMapScripts_Route2_ViridianForest_SouthEntrance @ 0x816F5E5
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 221
.byte 0x66, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route2_House:: @ 835177C
.4byte gMapData_Route2_House @ 0x82D5840
.4byte gMapEvents_Route2_House @ 0x83BD3D8
.4byte gMapScripts_Route2_House @ 0x816F5F8
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 7
.byte 0x66, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route2_EastBuilding:: @ 8351798
.4byte gMapData_Route2_EastBuilding @ 0x8320990
.4byte gMapEvents_Route2_EastBuilding @ 0x83BD43C
.4byte gMapScripts_Route2_EastBuilding @ 0x816F67E
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 221
.byte 0x66, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route2_ViridianForest_NorthEntrance:: @ 83517B4
.4byte gMapData_Route2_ViridianForest_NorthEntrance @ 0x8320990
.4byte gMapEvents_Route2_ViridianForest_NorthEntrance @ 0x83BD4B8
.4byte gMapScripts_Route2_ViridianForest_NorthEntrance @ 0x816F71D
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 221
.byte 0x66, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route4_PokemonCenter_1F:: @ 83517D0
.4byte gMapData_Route4_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_Route4_PokemonCenter_1F @ 0x83BD57C
.4byte gMapScripts_Route4_PokemonCenter_1F @ 0x816F739
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x68, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route4_PokemonCenter_2F:: @ 83517EC
.4byte gMapData_Route4_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_Route4_PokemonCenter_2F @ 0x83BD608
.4byte gMapScripts_Route4_PokemonCenter_2F @ 0x816F8D8
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x68, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route5_PokemonDayCare:: @ 8351808
.4byte gMapData_Route5_PokemonDayCare @ 0x833ADC0
.4byte gMapEvents_Route5_PokemonDayCare @ 0x83BD64C
.4byte gMapScripts_Route5_PokemonDayCare @ 0x816F8FF
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 275
.byte 0x69, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route5_SouthEntrance:: @ 8351824
.4byte gMapData_Route5_SouthEntrance @ 0x831E9C0
.4byte gMapEvents_Route5_SouthEntrance @ 0x83BD6C8
.4byte gMapScripts_Route5_SouthEntrance @ 0x816F900
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 208
.byte 0x69, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route6_NorthEntrance:: @ 8351840
.4byte gMapData_Route6_NorthEntrance @ 0x831E9C0
.4byte gMapEvents_Route6_NorthEntrance @ 0x83BD744
.4byte gMapScripts_Route6_NorthEntrance @ 0x816F9C6
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 208
.byte 0x6a, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
UnknownMap_18_01:: @ 835185C
.4byte gMapData_UnknownMap_18_01 @ 0x82D5840
.4byte gMapEvents_UnknownMap_18_01 @ 0x83BD758
.4byte gMapScripts_UnknownMap_18_01 @ 0x816FA8C
.4byte NULL
.2byte BGM_FRLG_ROUTE_3
.2byte 7
.byte 0x6a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route7_EastEntrance:: @ 8351878
.4byte gMapData_Route7_EastEntrance @ 0x831EAD0
.4byte gMapEvents_Route7_EastEntrance @ 0x83BD7D4
.4byte gMapScripts_Route7_EastEntrance @ 0x816FA8D
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 209
.byte 0x6b, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route8_WestEntrance:: @ 8351894
.4byte gMapData_Route8_WestEntrance @ 0x831EAD0
.4byte gMapEvents_Route8_WestEntrance @ 0x83BD850
.4byte gMapScripts_Route8_WestEntrance @ 0x816FB53
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 209
.byte 0x6c, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route10_PokemonCenter_1F:: @ 83518B0
.4byte gMapData_Route10_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_Route10_PokemonCenter_1F @ 0x83BD8FC
.4byte gMapScripts_Route10_PokemonCenter_1F @ 0x816FC2F
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x6e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route10_PokemonCenter_2F:: @ 83518CC
.4byte gMapData_Route10_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_Route10_PokemonCenter_2F @ 0x83BD988
.4byte gMapScripts_Route10_PokemonCenter_2F @ 0x816FCFA
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x6e, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route11_EastEntrance_1F:: @ 83518E8
.4byte gMapData_Route11_EastEntrance_1F @ 0x8320E70
.4byte gMapEvents_Route11_EastEntrance_1F @ 0x83BD9F4
.4byte gMapScripts_Route11_EastEntrance_1F @ 0x816FD21
.4byte NULL
.2byte BGM_FRLG_VERMILION_CITY
.2byte 224
.byte 0x6f, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route11_EastEntrance_2F:: @ 8351904
.4byte gMapData_Route11_EastEntrance_2F @ 0x8320804
.4byte gMapEvents_Route11_EastEntrance_2F @ 0x83BDA58
.4byte gMapScripts_Route11_EastEntrance_2F @ 0x816FD34
.4byte NULL
.2byte BGM_FRLG_VERMILION_CITY
.2byte 220
.byte 0x6f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route12_NorthEntrance_1F:: @ 8351920
.4byte gMapData_Route12_NorthEntrance_1F @ 0x8319DF0
.4byte gMapEvents_Route12_NorthEntrance_1F @ 0x83BDAAC
.4byte gMapScripts_Route12_NorthEntrance_1F @ 0x816FE6D
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 176
.byte 0x70, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route12_NorthEntrance_2F:: @ 835193C
.4byte gMapData_Route12_NorthEntrance_2F @ 0x8320804
.4byte gMapEvents_Route12_NorthEntrance_2F @ 0x83BDAF8
.4byte gMapScripts_Route12_NorthEntrance_2F @ 0x816FE77
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 220
.byte 0x70, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route12_FishingHouse:: @ 8351958
.4byte gMapData_Route12_FishingHouse @ 0x82D6070
.4byte gMapEvents_Route12_FishingHouse @ 0x83BDB48
.4byte gMapScripts_Route12_FishingHouse @ 0x816FF0B
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 13
.byte 0x70, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route15_WestEntrance_1F:: @ 8351974
.4byte gMapData_Route15_WestEntrance_1F @ 0x8320E70
.4byte gMapEvents_Route15_WestEntrance_1F @ 0x83BDB9C
.4byte gMapScripts_Route15_WestEntrance_1F @ 0x8170088
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 224
.byte 0x73, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route15_WestEntrance_2F:: @ 8351990
.4byte gMapData_Route15_WestEntrance_2F @ 0x8320804
.4byte gMapEvents_Route15_WestEntrance_2F @ 0x83BDBE8
.4byte gMapScripts_Route15_WestEntrance_2F @ 0x8170092
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 220
.byte 0x73, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route16_House:: @ 83519AC
.4byte gMapData_Route16_House @ 0x82D5754
.4byte gMapEvents_Route16_House @ 0x83BDC44
.4byte gMapScripts_Route16_House @ 0x817014E
.4byte NULL
.2byte BGM_FRLG_CELADON_CITY
.2byte 6
.byte 0x74, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route16_NorthEntrance_1F:: @ 83519C8
.4byte gMapData_Route16_NorthEntrance_1F @ 0x8320D14
.4byte gMapEvents_Route16_NorthEntrance_1F @ 0x83BDD60
.4byte gMapScripts_Route16_NorthEntrance_1F @ 0x81701C2
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 223
.byte 0x74, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route16_NorthEntrance_2F:: @ 83519E4
.4byte gMapData_Route16_NorthEntrance_2F @ 0x8320804
.4byte gMapEvents_Route16_NorthEntrance_2F @ 0x83BDDDC
.4byte gMapScripts_Route16_NorthEntrance_2F @ 0x81702BE
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 220
.byte 0x74, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route18_EastEntrance_1F:: @ 8351A00
.4byte gMapData_Route18_EastEntrance_1F @ 0x8320E70
.4byte gMapEvents_Route18_EastEntrance_1F @ 0x83BDED0
.4byte gMapScripts_Route18_EastEntrance_1F @ 0x8170378
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 224
.byte 0x76, 0x00, 0x00, 0x08, 0x01, 0x02, 0x00, 0x00
Route18_EastEntrance_2F:: @ 8351A1C
.4byte gMapData_Route18_EastEntrance_2F @ 0x8320804
.4byte gMapEvents_Route18_EastEntrance_2F @ 0x83BDF1C
.4byte gMapScripts_Route18_EastEntrance_2F @ 0x817046B
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_CITY
.2byte 220
.byte 0x76, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
UnusedHouse_27_00:: @ 8351A38
.4byte gMapData_UnusedHouse_27_00 @ 0x82D5840
.4byte gMapEvents_UnusedHouse_27_00 @ 0x83BDF30
.4byte gMapScripts_UnusedHouse_27_00 @ 0x81704FA
.4byte NULL
.2byte BGM_FRLG_ROUTE_3
.2byte 7
.byte 0x77, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route22_NorthEntrance:: @ 8351A54
.4byte gMapData_Route22_NorthEntrance @ 0x8320B1C
.4byte gMapEvents_Route22_NorthEntrance @ 0x83BDF8C
.4byte gMapScripts_Route22_NorthEntrance @ 0x81704FB
.4byte NULL
.2byte BGM_FRLG_VIRIDIAN_FOREST
.2byte 222
.byte 0x7a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
UnusedHouse_29_00:: @ 8351A70
.4byte gMapData_UnusedHouse_29_00 @ 0x82D5840
.4byte gMapEvents_UnusedHouse_29_00 @ 0x83BDFA0
.4byte gMapScripts_UnusedHouse_29_00 @ 0x8170522
.4byte NULL
.2byte BGM_FRLG_INDIGO_PLATEAU
.2byte 7
.byte 0x7b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
Route25_SeaCottage:: @ 8351A8C
.4byte gMapData_Route25_SeaCottage @ 0x8319030
.4byte gMapEvents_Route25_SeaCottage @ 0x83BE008
.4byte gMapScripts_Route25_SeaCottage @ 0x8170523
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 169
.byte 0x7d, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SevenIsland_House_Room1:: @ 8351AA8
.4byte gMapData_SevenIsland_House_Room1 @ 0x834E310
.4byte gMapEvents_SevenIsland_House_Room1 @ 0x83BE050
.4byte gMapScripts_SevenIsland_House_Room1 @ 0x817088A
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 382
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
SevenIsland_House_Room2:: @ 8351AC4
.4byte gMapData_SevenIsland_House_Room2 @ 0x8338C48
.4byte gMapEvents_SevenIsland_House_Room2 @ 0x83BE084
.4byte gMapScripts_SevenIsland_House_Room2 @ 0x8170A7E
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 265
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01
SevenIsland_Mart:: @ 8351AE0
.4byte gMapData_SevenIsland_Mart @ 0x82D5BCC
.4byte gMapEvents_SevenIsland_Mart @ 0x83BE100
.4byte gMapScripts_SevenIsland_Mart @ 0x8170B30
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SevenIsland_PokemonCenter_1F:: @ 8351AFC
.4byte gMapData_SevenIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_SevenIsland_PokemonCenter_1F @ 0x83BE1B4
.4byte gMapScripts_SevenIsland_PokemonCenter_1F @ 0x8170B89
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SevenIsland_PokemonCenter_2F:: @ 8351B18
.4byte gMapData_SevenIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_SevenIsland_PokemonCenter_2F @ 0x83BE240
.4byte gMapScripts_SevenIsland_PokemonCenter_2F @ 0x8170BBC
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
UnusedHouse_31_05:: @ 8351B34
.4byte gMapData_UnusedHouse_31_05 @ 0x82D6070
.4byte gMapEvents_UnusedHouse_31_05 @ 0x83BE254
.4byte gMapScripts_UnusedHouse_31_05 @ 0x8170BE3
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 13
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SevenIsland_Harbor:: @ 8351B50
.4byte gMapData_SevenIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_SevenIsland_Harbor @ 0x83BE2A0
.4byte gMapScripts_SevenIsland_Harbor @ 0x8170BE4
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 315
.byte 0x94, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
OneIsland_PokemonCenter_1F:: @ 8351B6C
.4byte gMapData_OneIsland_PokemonCenter_1F @ 0x833A970
.4byte gMapEvents_OneIsland_PokemonCenter_1F @ 0x83BE400
.4byte gMapScripts_OneIsland_PokemonCenter_1F @ 0x8170BF8
.4byte NULL
.2byte BGM_FRLG_POKEMON_NETWORK_CENTER
.2byte 271
.byte 0x8f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
OneIsland_PokemonCenter_2F:: @ 8351B88
.4byte gMapData_OneIsland_PokemonCenter_2F @ 0x8344108
.4byte gMapEvents_OneIsland_PokemonCenter_2F @ 0x83BE48C
.4byte gMapScripts_OneIsland_PokemonCenter_2F @ 0x8171334
.4byte NULL
.2byte BGM_FRLG_POKEMON_NETWORK_CENTER
.2byte 316
.byte 0x8f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
OneIsland_House1:: @ 8351BA4
.4byte gMapData_OneIsland_House1 @ 0x82D5CB8
.4byte gMapEvents_OneIsland_House1 @ 0x83BE4D8
.4byte gMapScripts_OneIsland_House1 @ 0x817135B
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x8f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
OneIsland_House2:: @ 8351BC0
.4byte gMapData_OneIsland_House2 @ 0x82D5CB8
.4byte gMapEvents_OneIsland_House2 @ 0x83BE50C
.4byte gMapScripts_OneIsland_House2 @ 0x817136E
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x8f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
OneIsland_Harbor:: @ 8351BDC
.4byte gMapData_OneIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_OneIsland_Harbor @ 0x83BE558
.4byte gMapScripts_OneIsland_Harbor @ 0x8171378
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 315
.byte 0x8f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_JoyfulGameCorner:: @ 8351BF8
.4byte gMapData_TwoIsland_JoyfulGameCorner @ 0x833AA84
.4byte gMapEvents_TwoIsland_JoyfulGameCorner @ 0x83BE5EC
.4byte gMapScripts_TwoIsland_JoyfulGameCorner @ 0x81713D0
.4byte NULL
.2byte BGM_FRLG_GAMECORNER
.2byte 272
.byte 0x90, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_House:: @ 8351C14
.4byte gMapData_TwoIsland_House @ 0x82D5CB8
.4byte gMapEvents_TwoIsland_House @ 0x83BE620
.4byte gMapScripts_TwoIsland_House @ 0x8171618
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x90, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_PokemonCenter_1F:: @ 8351C30
.4byte gMapData_TwoIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_TwoIsland_PokemonCenter_1F @ 0x83BE68C
.4byte gMapScripts_TwoIsland_PokemonCenter_1F @ 0x81717B4
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x90, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_PokemonCenter_2F:: @ 8351C4C
.4byte gMapData_TwoIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_TwoIsland_PokemonCenter_2F @ 0x83BE718
.4byte gMapScripts_TwoIsland_PokemonCenter_2F @ 0x81717DE
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x90, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_Harbor:: @ 8351C68
.4byte gMapData_TwoIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_TwoIsland_Harbor @ 0x83BE764
.4byte gMapScripts_TwoIsland_Harbor @ 0x8171805
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 315
.byte 0x90, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_House1:: @ 8351C84
.4byte gMapData_ThreeIsland_House1 @ 0x82D7504
.4byte gMapEvents_ThreeIsland_House1 @ 0x83BE7A4
.4byte gMapScripts_ThreeIsland_House1 @ 0x8171819
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 31
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_PokemonCenter_1F:: @ 8351CA0
.4byte gMapData_ThreeIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_ThreeIsland_PokemonCenter_1F @ 0x83BE828
.4byte gMapScripts_ThreeIsland_PokemonCenter_1F @ 0x8171832
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_PokemonCenter_2F:: @ 8351CBC
.4byte gMapData_ThreeIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_ThreeIsland_PokemonCenter_2F @ 0x83BE8B4
.4byte gMapScripts_ThreeIsland_PokemonCenter_2F @ 0x8171865
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_Mart:: @ 8351CD8
.4byte gMapData_ThreeIsland_Mart @ 0x82D5BCC
.4byte gMapEvents_ThreeIsland_Mart @ 0x83BE930
.4byte gMapScripts_ThreeIsland_Mart @ 0x817188C
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_House2:: @ 8351CF4
.4byte gMapData_ThreeIsland_House2 @ 0x82D5CB8
.4byte gMapEvents_ThreeIsland_House2 @ 0x83BE97C
.4byte gMapScripts_ThreeIsland_House2 @ 0x81718DF
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_House3:: @ 8351D10
.4byte gMapData_ThreeIsland_House3 @ 0x82D5CB8
.4byte gMapEvents_ThreeIsland_House3 @ 0x83BE9B0
.4byte gMapScripts_ThreeIsland_House3 @ 0x8171902
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_House4:: @ 8351D2C
.4byte gMapData_ThreeIsland_House4 @ 0x82D5CB8
.4byte gMapEvents_ThreeIsland_House4 @ 0x83BE9FC
.4byte gMapScripts_ThreeIsland_House4 @ 0x817190C
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_House5:: @ 8351D48
.4byte gMapData_ThreeIsland_House5 @ 0x82D5CB8
.4byte gMapEvents_ThreeIsland_House5 @ 0x83BEA30
.4byte gMapScripts_ThreeIsland_House5 @ 0x817191F
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x91, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_PokemonDayCare:: @ 8351D64
.4byte gMapData_FourIsland_PokemonDayCare @ 0x833AFA8
.4byte gMapEvents_FourIsland_PokemonDayCare @ 0x83BEA64
.4byte gMapScripts_FourIsland_PokemonDayCare @ 0x817193F
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 277
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_PokemonCenter_1F:: @ 8351D80
.4byte gMapData_FourIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_FourIsland_PokemonCenter_1F @ 0x83BEB00
.4byte gMapScripts_FourIsland_PokemonCenter_1F @ 0x8171BEA
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_PokemonCenter_2F:: @ 8351D9C
.4byte gMapData_FourIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_FourIsland_PokemonCenter_2F @ 0x83BEB8C
.4byte gMapScripts_FourIsland_PokemonCenter_2F @ 0x8171C1D
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_House1:: @ 8351DB8
.4byte gMapData_FourIsland_House1 @ 0x82D5CB8
.4byte gMapEvents_FourIsland_House1 @ 0x83BEBD8
.4byte gMapScripts_FourIsland_House1 @ 0x8171C44
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 11
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_LoreleisHouse:: @ 8351DD4
.4byte gMapData_FourIsland_LoreleisHouse @ 0x82D7418
.4byte gMapEvents_FourIsland_LoreleisHouse @ 0x83BED5C
.4byte gMapScripts_FourIsland_LoreleisHouse @ 0x8171C4E
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 30
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_Harbor:: @ 8351DF0
.4byte gMapData_FourIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_FourIsland_Harbor @ 0x83BEDA8
.4byte gMapScripts_FourIsland_Harbor @ 0x8171C98
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 315
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_House2:: @ 8351E0C
.4byte gMapData_FourIsland_House2 @ 0x82D5CB8
.4byte gMapEvents_FourIsland_House2 @ 0x83BEDDC
.4byte gMapScripts_FourIsland_House2 @ 0x8171CAC
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 11
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FourIsland_Mart:: @ 8351E28
.4byte gMapData_FourIsland_Mart @ 0x82D5BCC
.4byte gMapEvents_FourIsland_Mart @ 0x83BEE40
.4byte gMapScripts_FourIsland_Mart @ 0x8171CAD
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x92, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_PokemonCenter_1F:: @ 8351E44
.4byte gMapData_FiveIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_FiveIsland_PokemonCenter_1F @ 0x83BEEDC
.4byte gMapScripts_FiveIsland_PokemonCenter_1F @ 0x8171CF1
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x93, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_PokemonCenter_2F:: @ 8351E60
.4byte gMapData_FiveIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_FiveIsland_PokemonCenter_2F @ 0x83BEF68
.4byte gMapScripts_FiveIsland_PokemonCenter_2F @ 0x8171D1B
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x93, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_Harbor:: @ 8351E7C
.4byte gMapData_FiveIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_FiveIsland_Harbor @ 0x83BEFB4
.4byte gMapScripts_FiveIsland_Harbor @ 0x8171D42
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 315
.byte 0x93, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_House1:: @ 8351E98
.4byte gMapData_FiveIsland_House1 @ 0x82D5CB8
.4byte gMapEvents_FiveIsland_House1 @ 0x83BEFE8
.4byte gMapScripts_FiveIsland_House1 @ 0x8171D56
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 11
.byte 0x93, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_House2:: @ 8351EB4
.4byte gMapData_FiveIsland_House2 @ 0x82D5CB8
.4byte gMapEvents_FiveIsland_House2 @ 0x83BF01C
.4byte gMapScripts_FiveIsland_House2 @ 0x8171D60
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 11
.byte 0x93, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_PokemonCenter_1F:: @ 8351ED0
.4byte gMapData_SixIsland_PokemonCenter_1F @ 0x82D5990
.4byte gMapEvents_SixIsland_PokemonCenter_1F @ 0x83BF0A0
.4byte gMapScripts_SixIsland_PokemonCenter_1F @ 0x8171D6A
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 8
.byte 0x95, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_PokemonCenter_2F:: @ 8351EEC
.4byte gMapData_SixIsland_PokemonCenter_2F @ 0x82D5AE0
.4byte gMapEvents_SixIsland_PokemonCenter_2F @ 0x83BF12C
.4byte gMapScripts_SixIsland_PokemonCenter_2F @ 0x8171E20
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 9
.byte 0x95, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_Harbor:: @ 8351F08
.4byte gMapData_SixIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_SixIsland_Harbor @ 0x83BF178
.4byte gMapScripts_SixIsland_Harbor @ 0x8171E47
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 315
.byte 0x95, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_House:: @ 8351F24
.4byte gMapData_SixIsland_House @ 0x82D5CB8
.4byte gMapEvents_SixIsland_House @ 0x83BF1AC
.4byte gMapScripts_SixIsland_House @ 0x8171E5B
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 11
.byte 0x95, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_Mart:: @ 8351F40
.4byte gMapData_SixIsland_Mart @ 0x82D5BCC
.4byte gMapEvents_SixIsland_Mart @ 0x83BF210
.4byte gMapScripts_SixIsland_Mart @ 0x8171E65
.4byte NULL
.2byte BGM_FRLG_POKEMON_CENTER
.2byte 10
.byte 0x95, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
ThreeIsland_Harbor:: @ 8351F5C
.4byte gMapData_ThreeIsland_Harbor @ 0x8343FB8
.4byte gMapEvents_ThreeIsland_Harbor @ 0x83BF25C
.4byte gMapScripts_ThreeIsland_Harbor @ 0x8171EA9
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 315
.byte 0x9a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
FiveIsland_ResortGorgeous_House:: @ 8351F78
.4byte gMapData_FiveIsland_ResortGorgeous_House @ 0x82D657C
.4byte gMapEvents_FiveIsland_ResortGorgeous_House @ 0x83BF2C0
.4byte gMapScripts_FiveIsland_ResortGorgeous_House @ 0x8171EBD
.4byte NULL
.2byte BGM_FRLG_ISLAND_FOUR
.2byte 17
.byte 0x9f, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
TwoIsland_CapeBrink_House:: @ 8351F94
.4byte gMapData_TwoIsland_CapeBrink_House @ 0x82D5CB8
.4byte gMapEvents_TwoIsland_CapeBrink_House @ 0x83BF2F4
.4byte gMapScripts_TwoIsland_CapeBrink_House @ 0x817206B
.4byte NULL
.2byte BGM_FRLG_ISLAND_ONE
.2byte 11
.byte 0x98, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_WaterPath_House1:: @ 8351FB0
.4byte gMapData_SixIsland_WaterPath_House1 @ 0x82D6070
.4byte gMapEvents_SixIsland_WaterPath_House1 @ 0x83BF334
.4byte gMapScripts_SixIsland_WaterPath_House1 @ 0x817206C
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 13
.byte 0xa5, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SixIsland_WaterPath_House2:: @ 8351FCC
.4byte gMapData_SixIsland_WaterPath_House2 @ 0x82D5CB8
.4byte gMapEvents_SixIsland_WaterPath_House2 @ 0x83BF368
.4byte gMapScripts_SixIsland_WaterPath_House2 @ 0x8172178
.4byte NULL
.2byte BGM_FRLG_CERULEAN_CITY
.2byte 11
.byte 0xa5, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
SevenIsland_SevaultCanyon_House:: @ 8351FE8
.4byte gMapData_SevenIsland_SevaultCanyon_House @ 0x82D5CB8
.4byte gMapEvents_SevenIsland_SevaultCanyon_House @ 0x83BF3CC
.4byte gMapScripts_SevenIsland_SevaultCanyon_House @ 0x8172182
.4byte NULL
.2byte BGM_FRLG_ISLAND_SIX
.2byte 11
.byte 0xa9, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
gMapGroup_00:: @ 8352004
.4byte UnknownMap_00_00
.4byte UnknownMap_00_01
.4byte UnknownMap_00_02
.4byte UnknownMap_00_03
.4byte UnknownMap_00_04
gMapGroup_01:: @ 8352018
.4byte ViridianForest
.4byte MtMoon_1F
.4byte MtMoon_B1F
.4byte MtMoon_B2F
.4byte SSAnne_Exterior
.4byte SSAnne_1F_Corridor
.4byte SSAnne_2F_Corridor
.4byte SSAnne_3F_Corridor
.4byte SSAnne_B1F_Corridor
.4byte SSAnne_Deck
.4byte SSAnne_Kitchen
.4byte SSAnne_CaptainsOffice
.4byte SSAnne_1F_Room1
.4byte SSAnne_1F_Room2
.4byte SSAnne_1F_Room3
.4byte SSAnne_1F_Room4
.4byte SSAnne_1F_Room5
.4byte SSAnne_1F_Room7
.4byte SSAnne_2F_Room1
.4byte SSAnne_2F_Room2
.4byte SSAnne_2F_Room3
.4byte SSAnne_2F_Room4
.4byte SSAnne_2F_Room5
.4byte SSAnne_2F_Room6
.4byte SSAnne_B1F_Room1
.4byte SSAnne_B1F_Room2
.4byte SSAnne_B1F_Room3
.4byte SSAnne_B1F_Room4
.4byte SSAnne_B1F_Room5
.4byte SSAnne_1F_Room6
.4byte UndergroundPath_NorthEntrance
.4byte UndergroundPath_NorthSouthTunnel
.4byte UndergroundPath_SouthEntrance
.4byte UndergroundPath_WestEntrance
.4byte UndergroundPath_EastWestTunnel
.4byte UndergroundPath_EastEntrance
.4byte DiglettsCave_NorthEntrance
.4byte DiglettsCave_B1F
.4byte DiglettsCave_SouthEntrance
.4byte VictoryRoad_1F
.4byte VictoryRoad_2F
.4byte VictoryRoad_3F
.4byte RocketHideout_B1F
.4byte RocketHideout_B2F
.4byte RocketHideout_B3F
.4byte RocketHideout_B4F
.4byte RocketHideout_Elevator
.4byte SilphCo_1F
.4byte SilphCo_2F
.4byte SilphCo_3F
.4byte SilphCo_4F
.4byte SilphCo_5F
.4byte SilphCo_6F
.4byte SilphCo_7F
.4byte SilphCo_8F
.4byte SilphCo_9F
.4byte SilphCo_10F
.4byte SilphCo_11F
.4byte SilphCo_Elevator
.4byte PokemonMansion_1F
.4byte PokemonMansion_2F
.4byte PokemonMansion_3F
.4byte PokemonMansion_B1F
.4byte SafariZone_Center
.4byte SafariZone_East
.4byte SafariZone_North
.4byte SafariZone_West
.4byte SafariZone_Building1
.4byte SafariZone_Building2
.4byte SafariZone_Building3
.4byte SafariZone_Building4
.4byte SafariZone_SecretHouse
.4byte CeruleanCave_1F
.4byte CeruleanCave_2F
.4byte CeruleanCave_B1F
.4byte PokemonLeague_LoreleisRoom
.4byte PokemonLeague_BrunosRoom
.4byte PokemonLeague_AgathasRoom
.4byte PokemonLeague_LancesRoom
.4byte PokemonLeague_ChampionsRoom
.4byte PokemonLeague_HallOfFame
.4byte RockTunnel_1F
.4byte RockTunnel_B1F
.4byte SeafoamIslands_1F
.4byte SeafoamIslands_B1F
.4byte SeafoamIslands_B2F
.4byte SeafoamIslands_B3F
.4byte SeafoamIslands_B4F
.4byte PokemonTower_1F
.4byte PokemonTower_2F
.4byte PokemonTower_3F
.4byte PokemonTower_4F
.4byte PokemonTower_5F
.4byte PokemonTower_6F
.4byte PokemonTower_7F
.4byte PowerPlant
.4byte MtEmber_RubyPath_B4F
.4byte MtEmber_Exterior
.4byte MtEmber_SummitPath_1F
.4byte MtEmber_SummitPath_2F
.4byte MtEmber_SummitPath_3F
.4byte MtEmber_Summit
.4byte MtEmber_RubyPath_B5F
.4byte SSAnne_Kitchen3
.4byte MtEmber_RubyPath_B1F
.4byte MtEmber_RubyPath_B2F
.4byte MtEmber_RubyPath_B3F
.4byte MtEmber_RubyPath_B1F_Stairs
.4byte MtEmber_RubyPath_B2F_Stairs
.4byte ThreeIsland_BerryForest
.4byte FourIsland_IcefallCave_Entrance
.4byte FourIsland_IcefallCave_1F
.4byte SSAnne_CaptainsOffice2
.4byte SSAnne_CaptainsOffice3
.4byte SSAnne_CaptainsOffice4
.4byte SSAnne_CaptainsOffice5
.4byte SixIsland_DottedHole_B1F
.4byte SixIsland_DottedHole_B2F
.4byte SixIsland_DottedHole_B3F
.4byte SSAnne_CaptainsOffice9
.4byte SixIsland_DottedHole_SapphireRoom
.4byte SSAnne_1F_Room11
.4byte SSAnne_1F_Room12
gMapGroup_02:: @ 8352204
.4byte NavelRock_Exterior
.4byte SevenIsland_TrainerTower_1F
.4byte SevenIsland_TrainerTower_2F
.4byte SevenIsland_TrainerTower_3F
.4byte SevenIsland_TrainerTower_4F
.4byte SevenIsland_TrainerTower_5F
.4byte SevenIsland_TrainerTower_6F
.4byte SevenIsland_TrainerTower_7F
.4byte SevenIsland_TrainerTower_8F
.4byte SevenIsland_TrainerTower_Roof
.4byte SevenIsland_TrainerTower_Lobby
.4byte SevenIsland_TrainerTower_Elevator
.4byte FiveIsland_LostCave_Entrance
.4byte FiveIsland_LostCave_Room1
.4byte FiveIsland_LostCave_Room2
.4byte FiveIsland_LostCave_Room3
.4byte FiveIsland_LostCave_Room4
.4byte FiveIsland_LostCave_Room5
.4byte FiveIsland_LostCave_Room6
.4byte FiveIsland_LostCave_Room7
.4byte FiveIsland_LostCave_Room8
.4byte FiveIsland_LostCave_Room9
.4byte FiveIsland_LostCave_Room10
.4byte FiveIsland_LostCave_Room11
.4byte FiveIsland_LostCave_Room12
.4byte FiveIsland_LostCave_Room13
.4byte FiveIsland_LostCave_Room14
.4byte SevenIsland_TanobyRuins_MoneanChamber
.4byte SevenIsland_TanobyRuins_LiptooChamber
.4byte SevenIsland_TanobyRuins_WeepthChamber
.4byte SevenIsland_TanobyRuins_DilfordChamber
.4byte SevenIsland_TanobyRuins_ScufibChamber
.4byte SevenIsland_TanobyRuins_RixyChamber
.4byte SevenIsland_TanobyRuins_ViapoisChamber
.4byte ThreeIsland_DunsparceTunnel
.4byte SevenIsland_SeavaultCanyon_TanobyKey
.4byte NavelRock_1F
.4byte NavelRock_Summit
.4byte NavelRock_Base
.4byte NavelRock_SummitPath_2F
.4byte NavelRock_SummitPath_3F
.4byte NavelRock_SummitPath_4F
.4byte NavelRock_SummitPath_5F
.4byte NavelRock_BasePath_B1F
.4byte NavelRock_BasePath_B2F
.4byte NavelRock_BasePath_B3F
.4byte NavelRock_BasePath_B4F
.4byte NavelRock_BasePath_B5F
.4byte NavelRock_BasePath_B6F
.4byte NavelRock_BasePath_B7F
.4byte NavelRock_BasePath_B8F
.4byte NavelRock_BasePath_B9F
.4byte NavelRock_BasePath_B10F
.4byte NavelRock_BasePath_B11F
.4byte NavelRock_B1F
.4byte NavelRock_Fork
.4byte BirthIsland_Exterior
.4byte OneIsland_KindleRoad_EmberSpa
.4byte BirthIsland_Harbor
.4byte NavelRock_Harbor
gMapGroup_03:: @ 83522F4
.4byte PalletTown
.4byte ViridianCity
.4byte PewterCity
.4byte CeruleanCity
.4byte LavenderTown
.4byte VermilionCity
.4byte CeladonCity
.4byte FuchsiaCity
.4byte CinnabarIsland
.4byte IndigoPlateau_Exterior
.4byte SaffronCity_Duplicate
.4byte SaffronCity
.4byte OneIsland
.4byte TwoIsland
.4byte ThreeIsland
.4byte FourIsland
.4byte FiveIsland
.4byte SevenIsland
.4byte SixIsland
.4byte Route1
.4byte Route2
.4byte Route3
.4byte Route4
.4byte Route5
.4byte Route6
.4byte Route7
.4byte Route8
.4byte Route9
.4byte Route10
.4byte Route11
.4byte Route12
.4byte Route13
.4byte Route14
.4byte Route15
.4byte Route16
.4byte Route17
.4byte Route18
.4byte Route19
.4byte Route20
.4byte Route21_North
.4byte Route21_South
.4byte Route22
.4byte Route23
.4byte Route24
.4byte Route25
.4byte OneIsland_KindleRoad
.4byte OneIsland_TreasureBeach
.4byte TwoIsland_CapeBrink
.4byte ThreeIsland_BondBridge
.4byte ThreeIsland_Port
.4byte UnknownMap_03_50
.4byte UnknownMap_03_51
.4byte UnknownMap_03_52
.4byte UnknownMap_03_53
.4byte FiveIsland_ResortGorgeous
.4byte FiveIsland_WaterLabyrinth
.4byte FiveIsland_Meadow
.4byte FiveIsland_MemorialPillar
.4byte SixIsland_OutcastIsland
.4byte SixIsland_GreenPath
.4byte SixIsland_WaterPath
.4byte SixIsland_RuinValley
.4byte SevenIsland_TrainerTower
.4byte SevenIsland_SevaultCanyon_Entrance
.4byte SevenIsland_SevaultCanyon
.4byte SevenIsland_TanobyRuins
gMapGroup_04:: @ 83523FC
.4byte PalletTown_PlayersHouse_1F
.4byte PalletTown_PlayersHouse_2F
.4byte PalletTown_GarysHouse
.4byte PalletTown_ProfessorOaksLab
gMapGroup_05:: @ 835240C
.4byte ViridianCity_House1
.4byte ViridianCity_Gym
.4byte ViridianCity_House2
.4byte ViridianCity_Mart
.4byte ViridianCity_PokemonCenter_1F
.4byte ViridianCity_PokemonCenter_2F
gMapGroup_06:: @ 8352424
.4byte PewterCity_Museum_1F
.4byte PewterCity_Museum_2F
.4byte PewterCity_Gym
.4byte PewterCity_Mart
.4byte PewterCity_House1
.4byte PewterCity_PokemonCenter_1F
.4byte PewterCity_PokemonCenter_2F
.4byte PewterCity_House2
gMapGroup_07:: @ 8352444
.4byte CeruleanCity_House1
.4byte CeruleanCity_House2
.4byte CeruleanCity_House3
.4byte CeruleanCity_PokemonCenter_1F
.4byte CeruleanCity_PokemonCenter_2F
.4byte CeruleanCity_Gym
.4byte CeruleanCity_BikeShop
.4byte CeruleanCity_Mart
.4byte CeruleanCity_House4
.4byte CeruleanCity_House5
gMapGroup_08:: @ 835246C
.4byte LavenderTown_PokemonCenter_1F
.4byte LavenderTown_PokemonCenter_2F
.4byte LavenderTown_VolunteerPokemonHouse
.4byte LavenderTown_House1
.4byte LavenderTown_House2
.4byte LavenderTown_Mart
gMapGroup_09:: @ 8352484
.4byte VermilionCity_House1
.4byte VermilionCity_PokemonCenter_1F
.4byte VermilionCity_PokemonCenter_2F
.4byte VermilionCity_PokemonFanClub
.4byte VermilionCity_House2
.4byte VermilionCity_Mart
.4byte VermilionCity_Gym
.4byte VermilionCity_House3
gMapGroup_10:: @ 83524A4
.4byte CeladonCity_DepartmentStore_1F
.4byte CeladonCity_DepartmentStore_2F
.4byte CeladonCity_DepartmentStore_3F
.4byte CeladonCity_DepartmentStore_4F
.4byte CeladonCity_DepartmentStore_5F
.4byte CeladonCity_DepartmentStore_Roof
.4byte CeladonCity_DepartmentStore_Elevator
.4byte CeladonCity_Condominiums_1F
.4byte CeladonCity_Condominiums_2F
.4byte CeladonCity_Condominiums_3F
.4byte CeladonCity_Condominiums_Roof
.4byte CeladonCity_Condominiums_RoofRoom
.4byte CeladonCity_PokemonCenter_1F
.4byte CeladonCity_PokemonCenter_2F
.4byte CeladonCity_GameCorner
.4byte CeladonCity_GameCorner_PrizeRoom
.4byte CeladonCity_Gym
.4byte CeladonCity_Restaurant
.4byte CeladonCity_House1
.4byte CeladonCity_Hotel
gMapGroup_11:: @ 83524F4
.4byte FuchsiaCity_SafariZone_Entrance
.4byte FuchsiaCity_Mart
.4byte FuchsiaCity_ZooBuilding
.4byte FuchsiaCity_Gym
.4byte FuchsiaCity_House1
.4byte FuchsiaCity_PokemonCenter_1F
.4byte FuchsiaCity_PokemonCenter_2F
.4byte FuchsiaCity_Building1
.4byte FuchsiaCity_House2
.4byte FuchsiaCity_House3
gMapGroup_12:: @ 835251C
.4byte CinnabarIsland_Gym
.4byte CinnabarIsland_PokemonLab_Entrance
.4byte CinnabarIsland_PokemonLab_Lounge
.4byte CinnabarIsland_PokemonLab_ResearchRoom
.4byte CinnabarIsland_PokemonLab_ExperimentRoom
.4byte CinnabarIsland_PokemonCenter_1F
.4byte CinnabarIsland_PokemonCenter_2F
.4byte CinnabarIsland_Mart
gMapGroup_13:: @ 835253C
.4byte IndigoPlateau_PokemonCenter_1F
.4byte IndigoPlateau_PokemonCenter_2F
gMapGroup_14:: @ 8352544
.4byte SaffronCity_House1_1F
.4byte SaffronCity_House1_2F
.4byte SaffronCity_Dojo
.4byte SaffronCity_Gym
.4byte SaffronCity_House2
.4byte SaffronCity_Mart
.4byte SaffronCity_PokemonCenter_1F
.4byte SaffronCity_PokemonCenter_2F
.4byte SaffronCity_House3
.4byte SaffronCity_PokemonTrainerFanClub
gMapGroup_15:: @ 835256C
.4byte Route2_ViridianForest_SouthEntrance
.4byte Route2_House
.4byte Route2_EastBuilding
.4byte Route2_ViridianForest_NorthEntrance
gMapGroup_16:: @ 835257C
.4byte Route4_PokemonCenter_1F
.4byte Route4_PokemonCenter_2F
gMapGroup_17:: @ 8352584
.4byte Route5_PokemonDayCare
.4byte Route5_SouthEntrance
gMapGroup_18:: @ 835258C
.4byte Route6_NorthEntrance
.4byte UnknownMap_18_01
gMapGroup_19:: @ 8352594
.4byte Route7_EastEntrance
gMapGroup_20:: @ 8352598
.4byte Route8_WestEntrance
gMapGroup_21:: @ 835259C
.4byte Route10_PokemonCenter_1F
.4byte Route10_PokemonCenter_2F
gMapGroup_22:: @ 83525A4
.4byte Route11_EastEntrance_1F
.4byte Route11_EastEntrance_2F
gMapGroup_23:: @ 83525AC
.4byte Route12_NorthEntrance_1F
.4byte Route12_NorthEntrance_2F
.4byte Route12_FishingHouse
gMapGroup_24:: @ 83525B8
.4byte Route15_WestEntrance_1F
.4byte Route15_WestEntrance_2F
gMapGroup_25:: @ 83525C0
.4byte Route16_House
.4byte Route16_NorthEntrance_1F
.4byte Route16_NorthEntrance_2F
gMapGroup_26:: @ 83525CC
.4byte Route18_EastEntrance_1F
.4byte Route18_EastEntrance_2F
gMapGroup_27:: @ 83525D4
.4byte UnusedHouse_27_00
gMapGroup_28:: @ 83525D8
.4byte Route22_NorthEntrance
gMapGroup_29:: @ 83525DC
.4byte UnusedHouse_29_00
gMapGroup_30:: @ 83525E0
.4byte Route25_SeaCottage
gMapGroup_31:: @ 83525E4
.4byte SevenIsland_House_Room1
.4byte SevenIsland_House_Room2
.4byte SevenIsland_Mart
.4byte SevenIsland_PokemonCenter_1F
.4byte SevenIsland_PokemonCenter_2F
.4byte UnusedHouse_31_05
.4byte SevenIsland_Harbor
gMapGroup_32:: @ 8352600
.4byte OneIsland_PokemonCenter_1F
.4byte OneIsland_PokemonCenter_2F
.4byte OneIsland_House1
.4byte OneIsland_House2
.4byte OneIsland_Harbor
gMapGroup_33:: @ 8352614
.4byte TwoIsland_JoyfulGameCorner
.4byte TwoIsland_House
.4byte TwoIsland_PokemonCenter_1F
.4byte TwoIsland_PokemonCenter_2F
.4byte TwoIsland_Harbor
gMapGroup_34:: @ 8352628
.4byte ThreeIsland_House1
.4byte ThreeIsland_PokemonCenter_1F
.4byte ThreeIsland_PokemonCenter_2F
.4byte ThreeIsland_Mart
.4byte ThreeIsland_House2
.4byte ThreeIsland_House3
.4byte ThreeIsland_House4
.4byte ThreeIsland_House5
gMapGroup_35:: @ 8352648
.4byte FourIsland_PokemonDayCare
.4byte FourIsland_PokemonCenter_1F
.4byte FourIsland_PokemonCenter_2F
.4byte FourIsland_House1
.4byte FourIsland_LoreleisHouse
.4byte FourIsland_Harbor
.4byte FourIsland_House2
.4byte FourIsland_Mart
gMapGroup_36:: @ 8352668
.4byte FiveIsland_PokemonCenter_1F
.4byte FiveIsland_PokemonCenter_2F
.4byte FiveIsland_Harbor
.4byte FiveIsland_House1
.4byte FiveIsland_House2
gMapGroup_37:: @ 835267C
.4byte SixIsland_PokemonCenter_1F
.4byte SixIsland_PokemonCenter_2F
.4byte SixIsland_Harbor
.4byte SixIsland_House
.4byte SixIsland_Mart
gMapGroup_38:: @ 8352690
.4byte ThreeIsland_Harbor
gMapGroup_39:: @ 8352694
.4byte FiveIsland_ResortGorgeous_House
gMapGroup_40:: @ 8352698
.4byte TwoIsland_CapeBrink_House
gMapGroup_41:: @ 835269C
.4byte SixIsland_WaterPath_House1
.4byte SixIsland_WaterPath_House2
gMapGroup_42:: @ 83526A4
.4byte SevenIsland_SevaultCanyon_House
gMapGroups:: @ 0x83526A8
.4byte gMapGroup_00
.4byte gMapGroup_01
.4byte gMapGroup_02
.4byte gMapGroup_03
.4byte gMapGroup_04
.4byte gMapGroup_05
.4byte gMapGroup_06
.4byte gMapGroup_07
.4byte gMapGroup_08
.4byte gMapGroup_09
.4byte gMapGroup_10
.4byte gMapGroup_11
.4byte gMapGroup_12
.4byte gMapGroup_13
.4byte gMapGroup_14
.4byte gMapGroup_15
.4byte gMapGroup_16
.4byte gMapGroup_17
.4byte gMapGroup_18
.4byte gMapGroup_19
.4byte gMapGroup_20
.4byte gMapGroup_21
.4byte gMapGroup_22
.4byte gMapGroup_23
.4byte gMapGroup_24
.4byte gMapGroup_25
.4byte gMapGroup_26
.4byte gMapGroup_27
.4byte gMapGroup_28
.4byte gMapGroup_29
.4byte gMapGroup_30
.4byte gMapGroup_31
.4byte gMapGroup_32
.4byte gMapGroup_33
.4byte gMapGroup_34
.4byte gMapGroup_35
.4byte gMapGroup_36
.4byte gMapGroup_37
.4byte gMapGroup_38
.4byte gMapGroup_39
.4byte gMapGroup_40
.4byte gMapGroup_41
.4byte gMapGroup_42
|