ff9mapkit 1.0.0b3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. ff9mapkit/__init__.py +18 -0
  2. ff9mapkit/__main__.py +36 -0
  3. ff9mapkit/_animdb.py +2994 -0
  4. ff9mapkit/_animdb_all.py +14125 -0
  5. ff9mapkit/_fieldtable.py +1516 -0
  6. ff9mapkit/_fieldtext.py +845 -0
  7. ff9mapkit/_held_poses.py +44 -0
  8. ff9mapkit/_itemdb.py +65 -0
  9. ff9mapkit/_modeldb.py +725 -0
  10. ff9mapkit/_narrowmap_data.py +10 -0
  11. ff9mapkit/_npcparams.py +634 -0
  12. ff9mapkit/_regen_animdb.py +72 -0
  13. ff9mapkit/_regen_animdb_all.py +66 -0
  14. ff9mapkit/_regen_fieldtable.py +95 -0
  15. ff9mapkit/_regen_fieldtext.py +66 -0
  16. ff9mapkit/_regen_modeldb.py +67 -0
  17. ff9mapkit/_regen_npcparams.py +123 -0
  18. ff9mapkit/_regen_scenedb.py +57 -0
  19. ff9mapkit/_scenedb.py +869 -0
  20. ff9mapkit/abilities.py +225 -0
  21. ff9mapkit/animations.py +120 -0
  22. ff9mapkit/archetypes.py +218 -0
  23. ff9mapkit/areatitle.py +76 -0
  24. ff9mapkit/battle/__init__.py +21 -0
  25. ff9mapkit/battle/abilityfeatures.py +294 -0
  26. ff9mapkit/battle/actiondelta.py +441 -0
  27. ff9mapkit/battle/aiauthor.py +305 -0
  28. ff9mapkit/battle/ailint.py +140 -0
  29. ff9mapkit/battle/aipatch.py +175 -0
  30. ff9mapkit/battle/battleai.py +148 -0
  31. ff9mapkit/battle/battlecsv.py +390 -0
  32. ff9mapkit/battle/battlepatch.py +395 -0
  33. ff9mapkit/battle/build.py +558 -0
  34. ff9mapkit/battle/camera_codec.py +332 -0
  35. ff9mapkit/battle/camera_data.py +128 -0
  36. ff9mapkit/battle/characterdelta.py +789 -0
  37. ff9mapkit/battle/event_data.py +72 -0
  38. ff9mapkit/battle/extract.py +540 -0
  39. ff9mapkit/battle/fbx.py +223 -0
  40. ff9mapkit/battle/reskin.py +149 -0
  41. ff9mapkit/battle/scene_codec.py +314 -0
  42. ff9mapkit/battle/scene_data.py +369 -0
  43. ff9mapkit/battle/scenelint.py +125 -0
  44. ff9mapkit/battle/seqasm.py +131 -0
  45. ff9mapkit/battle/seqauthor.py +220 -0
  46. ff9mapkit/battle/seqcodec.py +300 -0
  47. ff9mapkit/battle/seqdis.py +106 -0
  48. ff9mapkit/battle/seqpatch.py +137 -0
  49. ff9mapkit/battle_bgm.py +133 -0
  50. ff9mapkit/binutils.py +60 -0
  51. ff9mapkit/build.py +5445 -0
  52. ff9mapkit/campaign.py +1276 -0
  53. ff9mapkit/catalog.py +316 -0
  54. ff9mapkit/chain.py +358 -0
  55. ff9mapkit/cli.py +3114 -0
  56. ff9mapkit/config.py +360 -0
  57. ff9mapkit/content/__init__.py +13 -0
  58. ff9mapkit/content/areatitle.py +36 -0
  59. ff9mapkit/content/ate.py +118 -0
  60. ff9mapkit/content/camera.py +123 -0
  61. ff9mapkit/content/chest.py +186 -0
  62. ff9mapkit/content/choice.py +163 -0
  63. ff9mapkit/content/conductor.py +217 -0
  64. ff9mapkit/content/cutscene.py +290 -0
  65. ff9mapkit/content/encounter.py +41 -0
  66. ff9mapkit/content/entry_settle.py +50 -0
  67. ff9mapkit/content/equipment.py +93 -0
  68. ff9mapkit/content/event.py +191 -0
  69. ff9mapkit/content/gateway.py +101 -0
  70. ff9mapkit/content/inventory.py +59 -0
  71. ff9mapkit/content/itemdata.py +644 -0
  72. ff9mapkit/content/itemtext.py +168 -0
  73. ff9mapkit/content/jump.py +114 -0
  74. ff9mapkit/content/ladder.py +633 -0
  75. ff9mapkit/content/movement.py +53 -0
  76. ff9mapkit/content/music.py +97 -0
  77. ff9mapkit/content/npc.py +348 -0
  78. ff9mapkit/content/object.py +340 -0
  79. ff9mapkit/content/onentry.py +135 -0
  80. ff9mapkit/content/party.py +111 -0
  81. ff9mapkit/content/pathfind.py +138 -0
  82. ff9mapkit/content/platform.py +314 -0
  83. ff9mapkit/content/player.py +168 -0
  84. ff9mapkit/content/prop.py +75 -0
  85. ff9mapkit/content/region.py +340 -0
  86. ff9mapkit/content/reinit.py +59 -0
  87. ff9mapkit/content/savepoint.py +90 -0
  88. ff9mapkit/content/shop.py +178 -0
  89. ff9mapkit/content/sps_trigger.py +66 -0
  90. ff9mapkit/content/startup.py +71 -0
  91. ff9mapkit/content/synthesis.py +106 -0
  92. ff9mapkit/content/text.py +183 -0
  93. ff9mapkit/content/textcarry.py +290 -0
  94. ff9mapkit/content/verbatim.py +86 -0
  95. ff9mapkit/content/walkmesh_hotfix.py +38 -0
  96. ff9mapkit/data/__init__.py +48 -0
  97. ff9mapkit/data/_regen_provenance.py +142 -0
  98. ff9mapkit/data/provenance/blank.es.patch +1 -0
  99. ff9mapkit/data/provenance/blank.fr.patch +1 -0
  100. ff9mapkit/data/provenance/blank.gr.patch +1 -0
  101. ff9mapkit/data/provenance/blank.it.patch +1 -0
  102. ff9mapkit/data/provenance/blank.jp.patch +1 -0
  103. ff9mapkit/data/provenance/blank.uk.patch +1 -0
  104. ff9mapkit/data/provenance/blank.us.patch +1 -0
  105. ff9mapkit/data/provenance/manifest.json +65 -0
  106. ff9mapkit/data/provenance/region_template.patch +1 -0
  107. ff9mapkit/data/reference_arcs.toml +89 -0
  108. ff9mapkit/data/region_catalog.toml +593 -0
  109. ff9mapkit/deploystack.py +358 -0
  110. ff9mapkit/dialogue.py +803 -0
  111. ff9mapkit/eb/__init__.py +12 -0
  112. ff9mapkit/eb/_exprtable.py +59 -0
  113. ff9mapkit/eb/_membertable.py +38 -0
  114. ff9mapkit/eb/_optables.py +537 -0
  115. ff9mapkit/eb/_regen_optables.py +76 -0
  116. ff9mapkit/eb/cmdasm.py +323 -0
  117. ff9mapkit/eb/disasm.py +332 -0
  118. ff9mapkit/eb/edit.py +439 -0
  119. ff9mapkit/eb/exprasm.py +158 -0
  120. ff9mapkit/eb/model.py +178 -0
  121. ff9mapkit/eb/opcodes.py +463 -0
  122. ff9mapkit/eblint.py +177 -0
  123. ff9mapkit/editor/__init__.py +20 -0
  124. ff9mapkit/editor/app.py +950 -0
  125. ff9mapkit/editor/battle_forms.py +240 -0
  126. ff9mapkit/editor/breadcrumb.py +89 -0
  127. ff9mapkit/editor/dialogs.py +116 -0
  128. ff9mapkit/editor/feedback.py +208 -0
  129. ff9mapkit/editor/forms.py +632 -0
  130. ff9mapkit/editor/graphview.py +350 -0
  131. ff9mapkit/editor/jobs.py +342 -0
  132. ff9mapkit/editor/model.py +243 -0
  133. ff9mapkit/editor/picker.py +120 -0
  134. ff9mapkit/editor/theme.py +212 -0
  135. ff9mapkit/eventscan.py +1441 -0
  136. ff9mapkit/extract.py +2279 -0
  137. ff9mapkit/flags.py +693 -0
  138. ff9mapkit/forkreport.py +1383 -0
  139. ff9mapkit/hub.py +477 -0
  140. ff9mapkit/idgated.py +101 -0
  141. ff9mapkit/infohub.py +580 -0
  142. ff9mapkit/items.py +63 -0
  143. ff9mapkit/itemstats.py +346 -0
  144. ff9mapkit/journey.py +1902 -0
  145. ff9mapkit/keyitems.py +93 -0
  146. ff9mapkit/logic_add.py +632 -0
  147. ff9mapkit/logic_edit.py +728 -0
  148. ff9mapkit/logic_map.py +526 -0
  149. ff9mapkit/pack.py +175 -0
  150. ff9mapkit/playerswap.py +231 -0
  151. ff9mapkit/prop_archetypes.py +228 -0
  152. ff9mapkit/provision.py +282 -0
  153. ff9mapkit/refarc.py +825 -0
  154. ff9mapkit/save.py +337 -0
  155. ff9mapkit/save_items.py +1673 -0
  156. ff9mapkit/scene/__init__.py +11 -0
  157. ff9mapkit/scene/arena.py +63 -0
  158. ff9mapkit/scene/bgart.py +140 -0
  159. ff9mapkit/scene/bgi.py +732 -0
  160. ff9mapkit/scene/bgs.py +174 -0
  161. ff9mapkit/scene/bgx.py +185 -0
  162. ff9mapkit/scene/cam.py +345 -0
  163. ff9mapkit/scene/guide.py +311 -0
  164. ff9mapkit/scene/paint.py +506 -0
  165. ff9mapkit/scene/placeholder.py +107 -0
  166. ff9mapkit/sjbinary.py +285 -0
  167. ff9mapkit/sps/__init__.py +17 -0
  168. ff9mapkit/sps/author.py +294 -0
  169. ff9mapkit/sps/catalog.py +88 -0
  170. ff9mapkit/sps/codec.py +264 -0
  171. ff9mapkit/sps/edit.py +184 -0
  172. ff9mapkit/sps/lint.py +58 -0
  173. ff9mapkit/sps/render.py +116 -0
  174. ff9mapkit/sps/templates.py +47 -0
  175. ff9mapkit/sps/texture.py +131 -0
  176. ff9mapkit/walkmesh_hotfixes.py +163 -0
  177. ff9mapkit/workspace/__init__.py +18 -0
  178. ff9mapkit/workspace/battledoc.py +985 -0
  179. ff9mapkit/workspace/builddoc.py +607 -0
  180. ff9mapkit/workspace/forms_qt.py +586 -0
  181. ff9mapkit/workspace/importdoc.py +665 -0
  182. ff9mapkit/workspace/mapview.py +131 -0
  183. ff9mapkit/workspace/palette.py +85 -0
  184. ff9mapkit/workspace/savedoc.py +664 -0
  185. ff9mapkit/workspace/shell.py +6907 -0
  186. ff9mapkit/workspace/style.py +105 -0
  187. ff9mapkit/workspace/tuningdialog.py +223 -0
  188. ff9mapkit-1.0.0b3.dist-info/METADATA +155 -0
  189. ff9mapkit-1.0.0b3.dist-info/RECORD +193 -0
  190. ff9mapkit-1.0.0b3.dist-info/WHEEL +5 -0
  191. ff9mapkit-1.0.0b3.dist-info/entry_points.txt +5 -0
  192. ff9mapkit-1.0.0b3.dist-info/licenses/LICENSE +31 -0
  193. ff9mapkit-1.0.0b3.dist-info/top_level.txt +1 -0
ff9mapkit/_modeldb.py ADDED
@@ -0,0 +1,725 @@
1
+ """Auto-generated FF9 model registry: actor/field model id -> GEO resource name.
2
+
3
+ DO NOT EDIT BY HAND. Regenerate with: python -m ff9mapkit._regen_modeldb --memoria <path>
4
+ Source: Memoria Assembly-CSharp/Global/ff9/Battle/FF9BattleDB.GEO.cs (GEO, open-source) --
5
+ the same id<->name table Memoria publishes; NOT extracted game data (see docs/PROVENANCE.md).
6
+
7
+ MODELS[id] = 'GEO_<group>_<form>_<token>'. group: MAIN playable / NPC townsfolk / MON
8
+ monster / ACC prop / SUB sub-character / WEP weapon. form: F* field, B* battle, W* world.
9
+ The token links a model to its animations (ANH_<group>_*_<token>_<action>); see
10
+ ff9mapkit.catalog.animations_for_model. The model id is the value SetModel() takes.
11
+ """
12
+
13
+
14
+ MODELS = {
15
+ 240: 'GEO_ACC_F0_BBT',
16
+ 238: 'GEO_ACC_F0_BBX',
17
+ 227: 'GEO_ACC_F0_BIN',
18
+ 437: 'GEO_ACC_F0_BLK',
19
+ 226: 'GEO_ACC_F0_BLL',
20
+ 411: 'GEO_ACC_F0_BON',
21
+ 232: 'GEO_ACC_F0_BOT',
22
+ 16: 'GEO_ACC_F0_BTN',
23
+ 262: 'GEO_ACC_F0_CBH',
24
+ 395: 'GEO_ACC_F0_CER',
25
+ 365: 'GEO_ACC_F0_CRS',
26
+ 241: 'GEO_ACC_F0_CSK',
27
+ 234: 'GEO_ACC_F0_CUP',
28
+ 433: 'GEO_ACC_F0_DAG',
29
+ 35: 'GEO_ACC_F0_DBR',
30
+ 31: 'GEO_ACC_F0_DGR',
31
+ 622: 'GEO_ACC_F0_DLB',
32
+ 414: 'GEO_ACC_F0_DLF',
33
+ 536: 'GEO_ACC_F0_EGG',
34
+ 596: 'GEO_ACC_F0_ELE',
35
+ 242: 'GEO_ACC_F0_ELV',
36
+ 637: 'GEO_ACC_F0_EYE',
37
+ 3: 'GEO_ACC_F0_FEL',
38
+ 279: 'GEO_ACC_F0_FIS',
39
+ 6: 'GEO_ACC_F0_FLR',
40
+ 590: 'GEO_ACC_F0_FS1',
41
+ 589: 'GEO_ACC_F0_FS2',
42
+ 588: 'GEO_ACC_F0_FS3',
43
+ 406: 'GEO_ACC_F0_GAB',
44
+ 537: 'GEO_ACC_F0_GAS',
45
+ 638: 'GEO_ACC_F0_GNT',
46
+ 294: 'GEO_ACC_F0_GRG',
47
+ 223: 'GEO_ACC_F0_GRS',
48
+ 275: 'GEO_ACC_F0_HDB',
49
+ 434: 'GEO_ACC_F0_HKG',
50
+ 257: 'GEO_ACC_F0_HOD',
51
+ 641: 'GEO_ACC_F0_HSK',
52
+ 15: 'GEO_ACC_F0_IFE',
53
+ 636: 'GEO_ACC_F0_IRF',
54
+ 586: 'GEO_ACC_F0_ISB',
55
+ 276: 'GEO_ACC_F0_ISI',
56
+ 538: 'GEO_ACC_F0_KGG',
57
+ 439: 'GEO_ACC_F0_KOM',
58
+ 435: 'GEO_ACC_F0_KOR',
59
+ 438: 'GEO_ACC_F0_KOS',
60
+ 22: 'GEO_ACC_F0_LDD',
61
+ 408: 'GEO_ACC_F0_LEV',
62
+ 628: 'GEO_ACC_F0_LG1',
63
+ 627: 'GEO_ACC_F0_LG2',
64
+ 407: 'GEO_ACC_F0_LIF',
65
+ 377: 'GEO_ACC_F0_LNW',
66
+ 258: 'GEO_ACC_F0_LTT',
67
+ 409: 'GEO_ACC_F0_MAK',
68
+ 228: 'GEO_ACC_F0_MAP',
69
+ 134: 'GEO_ACC_F0_MGP',
70
+ 133: 'GEO_ACC_F0_MGR',
71
+ 415: 'GEO_ACC_F0_NEP',
72
+ 233: 'GEO_ACC_F0_OPB',
73
+ 487: 'GEO_ACC_F0_ORD',
74
+ 642: 'GEO_ACC_F0_RBN',
75
+ 224: 'GEO_ACC_F0_ROP',
76
+ 239: 'GEO_ACC_F0_SSH',
77
+ 555: 'GEO_ACC_F0_STQ',
78
+ 235: 'GEO_ACC_F0_SUP',
79
+ 243: 'GEO_ACC_F0_SWD',
80
+ 75: 'GEO_ACC_F0_TBX',
81
+ 609: 'GEO_ACC_F0_TKE',
82
+ 222: 'GEO_ACC_F0_TKT',
83
+ 625: 'GEO_ACC_F0_TNB',
84
+ 225: 'GEO_ACC_F0_TNT',
85
+ 436: 'GEO_ACC_F0_TRK',
86
+ 23: 'GEO_ACC_F0_TSM',
87
+ 277: 'GEO_ACC_F0_TUR',
88
+ 231: 'GEO_ACC_F0_V01',
89
+ 230: 'GEO_ACC_F0_V02',
90
+ 229: 'GEO_ACC_F0_V03',
91
+ 200: 'GEO_ACC_F0_V10',
92
+ 488: 'GEO_ACC_F0_V11',
93
+ 508: 'GEO_ACC_F0_WEA',
94
+ 489: 'GEO_ACC_F0_WRE',
95
+ 626: 'GEO_ACC_F0_WT0',
96
+ 632: 'GEO_ACC_F0_WT1',
97
+ 631: 'GEO_ACC_F0_WT2',
98
+ 630: 'GEO_ACC_F0_WT3',
99
+ 523: 'GEO_ACC_F0_YIB',
100
+ 640: 'GEO_ACC_F0_YRI',
101
+ 490: 'GEO_ACC_F0_ZBR',
102
+ 577: 'GEO_ACC_F1_BLL',
103
+ 393: 'GEO_ACC_F1_BTN',
104
+ 306: 'GEO_ACC_F1_GRG',
105
+ 525: 'GEO_ACC_F1_HDB',
106
+ 633: 'GEO_ACC_F1_HKG',
107
+ 587: 'GEO_ACC_F1_ISB',
108
+ 396: 'GEO_ACC_F1_LTT',
109
+ 679: 'GEO_ACC_F1_MGP',
110
+ 236: 'GEO_ACC_F1_SUP',
111
+ 681: 'GEO_ACC_F1_SWD',
112
+ 91: 'GEO_ACC_F1_TBX',
113
+ 397: 'GEO_ACC_F1_TKT',
114
+ 578: 'GEO_ACC_F2_BLL',
115
+ 394: 'GEO_ACC_F2_BTN',
116
+ 634: 'GEO_ACC_F2_HKG',
117
+ 680: 'GEO_ACC_F2_LTT',
118
+ 237: 'GEO_ACC_F2_SUP',
119
+ 701: 'GEO_ACC_F2_TBX',
120
+ 579: 'GEO_ACC_F3_BLL',
121
+ 635: 'GEO_ACC_F3_HKG',
122
+ 702: 'GEO_ACC_F3_TBX',
123
+ 5414: 'GEO_MAIN_B0_000',
124
+ 285: 'GEO_MAIN_B0_001',
125
+ 281: 'GEO_MAIN_B0_002',
126
+ 283: 'GEO_MAIN_B0_003',
127
+ 288: 'GEO_MAIN_B0_004',
128
+ 287: 'GEO_MAIN_B0_005',
129
+ 5415: 'GEO_MAIN_B0_006',
130
+ 286: 'GEO_MAIN_B0_007',
131
+ 289: 'GEO_MAIN_B0_008',
132
+ 284: 'GEO_MAIN_B0_009',
133
+ 291: 'GEO_MAIN_B0_010',
134
+ 290: 'GEO_MAIN_B0_011',
135
+ 444: 'GEO_MAIN_B0_012',
136
+ 39: 'GEO_MAIN_B0_013',
137
+ 45: 'GEO_MAIN_B0_014',
138
+ 42: 'GEO_MAIN_B0_015',
139
+ 608: 'GEO_MAIN_B0_016',
140
+ 358: 'GEO_MAIN_B0_017',
141
+ 655: 'GEO_MAIN_B0_018',
142
+ 581: 'GEO_MAIN_B0_022',
143
+ 580: 'GEO_MAIN_B0_023',
144
+ 583: 'GEO_MAIN_B0_024',
145
+ 602: 'GEO_MAIN_B0_025',
146
+ 582: 'GEO_MAIN_B0_026',
147
+ 601: 'GEO_MAIN_B0_027',
148
+ 584: 'GEO_MAIN_B0_028',
149
+ 606: 'GEO_MAIN_B0_029',
150
+ 607: 'GEO_MAIN_B0_030',
151
+ 645: 'GEO_MAIN_B0_031',
152
+ 644: 'GEO_MAIN_B0_032',
153
+ 585: 'GEO_MAIN_B0_033',
154
+ 648: 'GEO_MAIN_B0_034',
155
+ 29: 'GEO_MAIN_B2_001',
156
+ 568: 'GEO_MAIN_B2_002',
157
+ 513: 'GEO_MAIN_B2_003',
158
+ 30: 'GEO_MAIN_B2_005',
159
+ 554: 'GEO_MAIN_B2_007',
160
+ 293: 'GEO_MAIN_B2_009',
161
+ 565: 'GEO_MAIN_B2_011',
162
+ 448: 'GEO_MAIN_B2_012',
163
+ 510: 'GEO_MAIN_B2_014',
164
+ 449: 'GEO_MAIN_B2_016',
165
+ 280: 'GEO_MAIN_B2_017',
166
+ 263: 'GEO_MAIN_B2_018',
167
+ 292: 'GEO_MAIN_B2_019',
168
+ 562: 'GEO_MAIN_B2_020',
169
+ 561: 'GEO_MAIN_B2_021',
170
+ 560: 'GEO_MAIN_B2_022',
171
+ 695: 'GEO_MAIN_B2_023',
172
+ 696: 'GEO_MAIN_B2_024',
173
+ 650: 'GEO_MAIN_B2_026',
174
+ 511: 'GEO_MAIN_B2_027',
175
+ 563: 'GEO_MAIN_B2_028',
176
+ 649: 'GEO_MAIN_B2_CAM',
177
+ 652: 'GEO_MAIN_B4_002',
178
+ 651: 'GEO_MAIN_B4_003',
179
+ 653: 'GEO_MAIN_B4_004',
180
+ 654: 'GEO_MAIN_B4_005',
181
+ 656: 'GEO_MAIN_B4_006',
182
+ 657: 'GEO_MAIN_B4_007',
183
+ 443: 'GEO_MAIN_F0_EIK',
184
+ 192: 'GEO_MAIN_F0_FRJ',
185
+ 185: 'GEO_MAIN_F0_GRN',
186
+ 273: 'GEO_MAIN_F0_KUI',
187
+ 509: 'GEO_MAIN_F0_SLM',
188
+ 526: 'GEO_MAIN_F0_STD',
189
+ 5489: 'GEO_MAIN_F0_STN',
190
+ 8: 'GEO_MAIN_F0_VIV',
191
+ 532: 'GEO_MAIN_F0_ZDD',
192
+ 98: 'GEO_MAIN_F0_ZDN',
193
+ 76: 'GEO_MAIN_F1_GRN',
194
+ 658: 'GEO_MAIN_F1_STN',
195
+ 203: 'GEO_MAIN_F1_ZDN',
196
+ 432: 'GEO_MAIN_F2_ZDN',
197
+ 202: 'GEO_MAIN_F3_GRN',
198
+ 668: 'GEO_MAIN_F3_ZDN',
199
+ 205: 'GEO_MAIN_F4_GRN',
200
+ 669: 'GEO_MAIN_F4_ZDN',
201
+ 419: 'GEO_MAIN_F5_GRN',
202
+ 670: 'GEO_MAIN_F5_ZDN',
203
+ 662: 'GEO_MAIN_F7_VIV',
204
+ 666: 'GEO_MAIN_F8_GRN',
205
+ 381: 'GEO_MAIN_F9_GRN',
206
+ 7: 'GEO_MON_B3_000',
207
+ 152: 'GEO_MON_B3_001',
208
+ 151: 'GEO_MON_B3_002',
209
+ 58: 'GEO_MON_B3_003',
210
+ 9: 'GEO_MON_B3_004',
211
+ 155: 'GEO_MON_B3_005',
212
+ 154: 'GEO_MON_B3_006',
213
+ 153: 'GEO_MON_B3_007',
214
+ 157: 'GEO_MON_B3_008',
215
+ 156: 'GEO_MON_B3_009',
216
+ 159: 'GEO_MON_B3_010',
217
+ 5458: 'GEO_MON_B3_011',
218
+ 158: 'GEO_MON_B3_012',
219
+ 59: 'GEO_MON_B3_013',
220
+ 60: 'GEO_MON_B3_014',
221
+ 162: 'GEO_MON_B3_015',
222
+ 161: 'GEO_MON_B3_016',
223
+ 160: 'GEO_MON_B3_017',
224
+ 163: 'GEO_MON_B3_018',
225
+ 5459: 'GEO_MON_B3_019',
226
+ 28: 'GEO_MON_B3_020',
227
+ 5460: 'GEO_MON_B3_021',
228
+ 135: 'GEO_MON_B3_022',
229
+ 105: 'GEO_MON_B3_023',
230
+ 139: 'GEO_MON_B3_024',
231
+ 138: 'GEO_MON_B3_025',
232
+ 137: 'GEO_MON_B3_026',
233
+ 136: 'GEO_MON_B3_027',
234
+ 141: 'GEO_MON_B3_028',
235
+ 140: 'GEO_MON_B3_029',
236
+ 145: 'GEO_MON_B3_030',
237
+ 144: 'GEO_MON_B3_031',
238
+ 143: 'GEO_MON_B3_032',
239
+ 142: 'GEO_MON_B3_033',
240
+ 149: 'GEO_MON_B3_034',
241
+ 148: 'GEO_MON_B3_035',
242
+ 147: 'GEO_MON_B3_036',
243
+ 146: 'GEO_MON_B3_037',
244
+ 57: 'GEO_MON_B3_038',
245
+ 150: 'GEO_MON_B3_039',
246
+ 86: 'GEO_MON_B3_040',
247
+ 85: 'GEO_MON_B3_041',
248
+ 84: 'GEO_MON_B3_042',
249
+ 46: 'GEO_MON_B3_043',
250
+ 90: 'GEO_MON_B3_044',
251
+ 89: 'GEO_MON_B3_045',
252
+ 88: 'GEO_MON_B3_046',
253
+ 87: 'GEO_MON_B3_047',
254
+ 93: 'GEO_MON_B3_048',
255
+ 92: 'GEO_MON_B3_049',
256
+ 96: 'GEO_MON_B3_050',
257
+ 47: 'GEO_MON_B3_051',
258
+ 95: 'GEO_MON_B3_052',
259
+ 94: 'GEO_MON_B3_053',
260
+ 184: 'GEO_MON_B3_054',
261
+ 261: 'GEO_MON_B3_055',
262
+ 97: 'GEO_MON_B3_056',
263
+ 221: 'GEO_MON_B3_057',
264
+ 266: 'GEO_MON_B3_058',
265
+ 265: 'GEO_MON_B3_059',
266
+ 79: 'GEO_MON_B3_060',
267
+ 244: 'GEO_MON_B3_061',
268
+ 78: 'GEO_MON_B3_062',
269
+ 77: 'GEO_MON_B3_063',
270
+ 82: 'GEO_MON_B3_064',
271
+ 323: 'GEO_MON_B3_065',
272
+ 81: 'GEO_MON_B3_066',
273
+ 80: 'GEO_MON_B3_067',
274
+ 324: 'GEO_MON_B3_068',
275
+ 325: 'GEO_MON_B3_069',
276
+ 328: 'GEO_MON_B3_070',
277
+ 327: 'GEO_MON_B3_071',
278
+ 83: 'GEO_MON_B3_072',
279
+ 326: 'GEO_MON_B3_073',
280
+ 329: 'GEO_MON_B3_074',
281
+ 332: 'GEO_MON_B3_075',
282
+ 331: 'GEO_MON_B3_076',
283
+ 330: 'GEO_MON_B3_077',
284
+ 334: 'GEO_MON_B3_078',
285
+ 333: 'GEO_MON_B3_079',
286
+ 335: 'GEO_MON_B3_080',
287
+ 337: 'GEO_MON_B3_081',
288
+ 164: 'GEO_MON_B3_082',
289
+ 336: 'GEO_MON_B3_083',
290
+ 339: 'GEO_MON_B3_084',
291
+ 338: 'GEO_MON_B3_085',
292
+ 165: 'GEO_MON_B3_086',
293
+ 340: 'GEO_MON_B3_087',
294
+ 341: 'GEO_MON_B3_088',
295
+ 166: 'GEO_MON_B3_092',
296
+ 342: 'GEO_MON_B3_093',
297
+ 343: 'GEO_MON_B3_094',
298
+ 379: 'GEO_MON_B3_102',
299
+ 344: 'GEO_MON_B3_103',
300
+ 301: 'GEO_MON_B3_105',
301
+ 359: 'GEO_MON_B3_106',
302
+ 428: 'GEO_MON_B3_107',
303
+ 345: 'GEO_MON_B3_108',
304
+ 450: 'GEO_MON_B3_111',
305
+ 346: 'GEO_MON_B3_112',
306
+ 125: 'GEO_MON_B3_113',
307
+ 349: 'GEO_MON_B3_114',
308
+ 278: 'GEO_MON_B3_115',
309
+ 593: 'GEO_MON_B3_116',
310
+ 348: 'GEO_MON_B3_117',
311
+ 350: 'GEO_MON_B3_118',
312
+ 302: 'GEO_MON_B3_119',
313
+ 300: 'GEO_MON_B3_120',
314
+ 352: 'GEO_MON_B3_121',
315
+ 410: 'GEO_MON_B3_122',
316
+ 362: 'GEO_MON_B3_123',
317
+ 363: 'GEO_MON_B3_124',
318
+ 5: 'GEO_MON_B3_125',
319
+ 353: 'GEO_MON_B3_126',
320
+ 556: 'GEO_MON_B3_127',
321
+ 512: 'GEO_MON_B3_128',
322
+ 354: 'GEO_MON_B3_130',
323
+ 371: 'GEO_MON_B3_131',
324
+ 364: 'GEO_MON_B3_132',
325
+ 36: 'GEO_MON_B3_136',
326
+ 416: 'GEO_MON_B3_137',
327
+ 545: 'GEO_MON_B3_138',
328
+ 351: 'GEO_MON_B3_140',
329
+ 38: 'GEO_MON_B3_141',
330
+ 378: 'GEO_MON_B3_142',
331
+ 370: 'GEO_MON_B3_143',
332
+ 567: 'GEO_MON_B3_144',
333
+ 566: 'GEO_MON_B3_145',
334
+ 576: 'GEO_MON_B3_146',
335
+ 0: 'GEO_MON_B3_147',
336
+ 298: 'GEO_MON_B3_148',
337
+ 557: 'GEO_MON_B3_149',
338
+ 558: 'GEO_MON_B3_151',
339
+ 299: 'GEO_MON_B3_152',
340
+ 592: 'GEO_MON_B3_154',
341
+ 427: 'GEO_MON_B3_155',
342
+ 399: 'GEO_MON_B3_156',
343
+ 398: 'GEO_MON_B3_157',
344
+ 400: 'GEO_MON_B3_158',
345
+ 405: 'GEO_MON_B3_159',
346
+ 402: 'GEO_MON_B3_160',
347
+ 548: 'GEO_MON_B3_161',
348
+ 401: 'GEO_MON_B3_162',
349
+ 553: 'GEO_MON_B3_163',
350
+ 404: 'GEO_MON_B3_164',
351
+ 403: 'GEO_MON_B3_165',
352
+ 355: 'GEO_MON_B3_166',
353
+ 369: 'GEO_MON_B3_167',
354
+ 569: 'GEO_MON_B3_168',
355
+ 671: 'GEO_MON_B3_169',
356
+ 571: 'GEO_MON_B3_170',
357
+ 296: 'GEO_MON_B3_171',
358
+ 295: 'GEO_MON_B3_172',
359
+ 570: 'GEO_MON_B3_173',
360
+ 297: 'GEO_MON_B3_174',
361
+ 572: 'GEO_MON_B3_175',
362
+ 610: 'GEO_MON_B3_176',
363
+ 591: 'GEO_MON_B3_177',
364
+ 304: 'GEO_MON_B3_178',
365
+ 303: 'GEO_MON_B3_179',
366
+ 305: 'GEO_MON_B3_180',
367
+ 445: 'GEO_MON_B3_181',
368
+ 573: 'GEO_MON_B3_182',
369
+ 429: 'GEO_MON_B3_183',
370
+ 430: 'GEO_MON_B3_184',
371
+ 446: 'GEO_MON_B3_185',
372
+ 1: 'GEO_MON_B3_186',
373
+ 356: 'GEO_MON_B3_187',
374
+ 357: 'GEO_MON_B3_188',
375
+ 546: 'GEO_MON_B3_189',
376
+ 451: 'GEO_MON_B3_190',
377
+ 620: 'GEO_MON_B3_191',
378
+ 619: 'GEO_MON_B3_192',
379
+ 618: 'GEO_MON_B3_193',
380
+ 621: 'GEO_MON_B3_194',
381
+ 639: 'GEO_MON_B3_195',
382
+ 14: 'GEO_MON_B3_196',
383
+ 663: 'GEO_MON_B3_197',
384
+ 664: 'GEO_MON_B3_198',
385
+ 672: 'GEO_MON_B3_199',
386
+ 673: 'GEO_MON_B3_200',
387
+ 697: 'GEO_MON_B3_201',
388
+ 698: 'GEO_MON_B3_202',
389
+ 699: 'GEO_MON_B3_203',
390
+ 700: 'GEO_MON_B3_204',
391
+ 676: 'GEO_MON_B3_205',
392
+ 252: 'GEO_MON_F0_AMD',
393
+ 617: 'GEO_MON_F0_AMS',
394
+ 246: 'GEO_MON_F0_BAN',
395
+ 245: 'GEO_MON_F0_BFF',
396
+ 616: 'GEO_MON_F0_CDR',
397
+ 442: 'GEO_MON_F0_CLB',
398
+ 533: 'GEO_MON_F0_DAH',
399
+ 271: 'GEO_MON_F0_DDD',
400
+ 528: 'GEO_MON_F0_DRA',
401
+ 529: 'GEO_MON_F0_EEE',
402
+ 33: 'GEO_MON_F0_EFM',
403
+ 5461: 'GEO_MON_F0_EFM',
404
+ 530: 'GEO_MON_F0_FFF',
405
+ 247: 'GEO_MON_F0_FFG',
406
+ 254: 'GEO_MON_F0_GRI',
407
+ 575: 'GEO_MON_F0_HHP',
408
+ 255: 'GEO_MON_F0_KAT',
409
+ 574: 'GEO_MON_F0_MKM',
410
+ 256: 'GEO_MON_F0_MOS',
411
+ 248: 'GEO_MON_F0_MUU',
412
+ 534: 'GEO_MON_F0_RAM',
413
+ 4: 'GEO_MON_F0_SDR',
414
+ 249: 'GEO_MON_F0_TBL',
415
+ 250: 'GEO_MON_F0_TOM',
416
+ 535: 'GEO_MON_F0_WWW',
417
+ 2: 'GEO_MON_F0_ZZZ',
418
+ 524: 'GEO_MON_F1_EFM',
419
+ 251: 'GEO_MON_F1_TOM',
420
+ 201: 'GEO_MON_F2_EFM',
421
+ 347: 'GEO_MON_F2_EFM',
422
+ 24: 'GEO_NPC_F0_APF',
423
+ 111: 'GEO_NPC_F0_APM',
424
+ 173: 'GEO_NPC_F0_BAR',
425
+ 112: 'GEO_NPC_F0_BBA',
426
+ 5468: 'GEO_NPC_F0_BMG',
427
+ 113: 'GEO_NPC_F0_BND',
428
+ 114: 'GEO_NPC_F0_BRI',
429
+ 206: 'GEO_NPC_F0_BUC',
430
+ 216: 'GEO_NPC_F0_BUF',
431
+ 115: 'GEO_NPC_F0_CAT',
432
+ 63: 'GEO_NPC_F0_CCB',
433
+ 260: 'GEO_NPC_F0_CHC',
434
+ 542: 'GEO_NPC_F0_CHD',
435
+ 623: 'GEO_NPC_F0_CHE',
436
+ 259: 'GEO_NPC_F0_CHO',
437
+ 272: 'GEO_NPC_F0_CLD',
438
+ 447: 'GEO_NPC_F0_CLM',
439
+ 5474: 'GEO_NPC_F0_COK',
440
+ 194: 'GEO_NPC_F0_CSA',
441
+ 208: 'GEO_NPC_F0_CSM',
442
+ 217: 'GEO_NPC_F0_CSO',
443
+ 49: 'GEO_NPC_F0_DAC',
444
+ 55: 'GEO_NPC_F0_DAF',
445
+ 50: 'GEO_NPC_F0_DAL',
446
+ 64: 'GEO_NPC_F0_DAW',
447
+ 420: 'GEO_NPC_F0_DOC',
448
+ 421: 'GEO_NPC_F0_DOF',
449
+ 193: 'GEO_NPC_F0_DOG',
450
+ 268: 'GEO_NPC_F0_DOK',
451
+ 422: 'GEO_NPC_F0_DOM',
452
+ 269: 'GEO_NPC_F0_FLS',
453
+ 174: 'GEO_NPC_F0_FRC',
454
+ 175: 'GEO_NPC_F0_FRF',
455
+ 176: 'GEO_NPC_F0_FRM',
456
+ 209: 'GEO_NPC_F0_FUK',
457
+ 177: 'GEO_NPC_F0_G16',
458
+ 56: 'GEO_NPC_F0_G17',
459
+ 5476: 'GEO_NPC_F0_G18',
460
+ 417: 'GEO_NPC_F0_G19',
461
+ 213: 'GEO_NPC_F0_G20',
462
+ 195: 'GEO_NPC_F0_GUD',
463
+ 116: 'GEO_NPC_F0_HEK',
464
+ 412: 'GEO_NPC_F0_HTH',
465
+ 51: 'GEO_NPC_F0_HUF',
466
+ 5478: 'GEO_NPC_F0_HUM',
467
+ 117: 'GEO_NPC_F0_JJY',
468
+ 52: 'GEO_NPC_F0_KAC',
469
+ 220: 'GEO_NPC_F0_MOG',
470
+ 431: 'GEO_NPC_F0_NAN',
471
+ 118: 'GEO_NPC_F0_OFF',
472
+ 65: 'GEO_NPC_F0_ORC',
473
+ 187: 'GEO_NPC_F0_OSC',
474
+ 66: 'GEO_NPC_F0_RAS',
475
+ 119: 'GEO_NPC_F0_RMF',
476
+ 120: 'GEO_NPC_F0_RMM',
477
+ 121: 'GEO_NPC_F0_RTC',
478
+ 210: 'GEO_NPC_F0_STR',
479
+ 178: 'GEO_NPC_F0_TAD',
480
+ 32: 'GEO_NPC_F0_TBY',
481
+ 122: 'GEO_NPC_F0_TCK',
482
+ 5492: 'GEO_NPC_F0_TGR',
483
+ 123: 'GEO_NPC_F0_TMF',
484
+ 124: 'GEO_NPC_F0_TMM',
485
+ 67: 'GEO_NPC_F0_TRF',
486
+ 126: 'GEO_NPC_F0_WRK',
487
+ 646: 'GEO_NPC_F1_APF',
488
+ 559: 'GEO_NPC_F1_APM',
489
+ 68: 'GEO_NPC_F1_BAR',
490
+ 10: 'GEO_NPC_F1_BBA',
491
+ 53: 'GEO_NPC_F1_BMG',
492
+ 127: 'GEO_NPC_F1_BND',
493
+ 128: 'GEO_NPC_F1_BRI',
494
+ 624: 'GEO_NPC_F1_CAT',
495
+ 69: 'GEO_NPC_F1_CCB',
496
+ 100: 'GEO_NPC_F1_CHO',
497
+ 70: 'GEO_NPC_F1_CSA',
498
+ 188: 'GEO_NPC_F1_CSM',
499
+ 71: 'GEO_NPC_F1_CSO',
500
+ 180: 'GEO_NPC_F1_DAC',
501
+ 604: 'GEO_NPC_F1_DAF',
502
+ 179: 'GEO_NPC_F1_DAL',
503
+ 549: 'GEO_NPC_F1_DOC',
504
+ 550: 'GEO_NPC_F1_DOF',
505
+ 611: 'GEO_NPC_F1_DOG',
506
+ 564: 'GEO_NPC_F1_DOK',
507
+ 551: 'GEO_NPC_F1_DOM',
508
+ 423: 'GEO_NPC_F1_FRM',
509
+ 543: 'GEO_NPC_F1_G17',
510
+ 612: 'GEO_NPC_F1_G20',
511
+ 598: 'GEO_NPC_F1_GUD',
512
+ 547: 'GEO_NPC_F1_HTH',
513
+ 99: 'GEO_NPC_F1_HUF',
514
+ 110: 'GEO_NPC_F1_HUM',
515
+ 647: 'GEO_NPC_F1_JJY',
516
+ 677: 'GEO_NPC_F1_KAC',
517
+ 129: 'GEO_NPC_F1_MOG',
518
+ 20: 'GEO_NPC_F1_OFF',
519
+ 544: 'GEO_NPC_F1_OSC',
520
+ 181: 'GEO_NPC_F1_RAS',
521
+ 424: 'GEO_NPC_F1_TBY',
522
+ 11: 'GEO_NPC_F1_TCK',
523
+ 418: 'GEO_NPC_F1_TGR',
524
+ 19: 'GEO_NPC_F1_TMF',
525
+ 18: 'GEO_NPC_F1_TMM',
526
+ 103: 'GEO_NPC_F1_WRK',
527
+ 253: 'GEO_NPC_F2_APF',
528
+ 17: 'GEO_NPC_F2_APM',
529
+ 12: 'GEO_NPC_F2_BBA',
530
+ 54: 'GEO_NPC_F2_BMG',
531
+ 130: 'GEO_NPC_F2_BND',
532
+ 613: 'GEO_NPC_F2_CHO',
533
+ 211: 'GEO_NPC_F2_CSA',
534
+ 189: 'GEO_NPC_F2_CSM',
535
+ 218: 'GEO_NPC_F2_CSO',
536
+ 643: 'GEO_NPC_F2_DAC',
537
+ 603: 'GEO_NPC_F2_DAL',
538
+ 552: 'GEO_NPC_F2_DOM',
539
+ 25: 'GEO_NPC_F2_G17',
540
+ 26: 'GEO_NPC_F2_G20',
541
+ 104: 'GEO_NPC_F2_HTH',
542
+ 72: 'GEO_NPC_F2_HUF',
543
+ 108: 'GEO_NPC_F2_HUM',
544
+ 376: 'GEO_NPC_F2_JJY',
545
+ 678: 'GEO_NPC_F2_KAC',
546
+ 196: 'GEO_NPC_F2_MOG',
547
+ 21: 'GEO_NPC_F2_OSC',
548
+ 27: 'GEO_NPC_F2_TBY',
549
+ 40: 'GEO_NPC_F2_TGR',
550
+ 101: 'GEO_NPC_F3_APM',
551
+ 13: 'GEO_NPC_F3_BBA',
552
+ 131: 'GEO_NPC_F3_BND',
553
+ 614: 'GEO_NPC_F3_CHO',
554
+ 73: 'GEO_NPC_F3_CSA',
555
+ 197: 'GEO_NPC_F3_CSM',
556
+ 219: 'GEO_NPC_F3_CSO',
557
+ 597: 'GEO_NPC_F3_HUF',
558
+ 599: 'GEO_NPC_F3_JJY',
559
+ 212: 'GEO_NPC_F3_MOG',
560
+ 34: 'GEO_NPC_F3_TBY',
561
+ 61: 'GEO_NPC_F3_TGR',
562
+ 183: 'GEO_NPC_F4_APM',
563
+ 132: 'GEO_NPC_F4_BND',
564
+ 615: 'GEO_NPC_F4_CHO',
565
+ 74: 'GEO_NPC_F4_CSA',
566
+ 282: 'GEO_NPC_F4_CSM',
567
+ 182: 'GEO_NPC_F4_CSO',
568
+ 102: 'GEO_NPC_F4_JJY',
569
+ 198: 'GEO_NPC_F4_MOG',
570
+ 674: 'GEO_NPC_F5_CSA',
571
+ 360: 'GEO_NPC_F5_CSM',
572
+ 199: 'GEO_NPC_F5_MOG',
573
+ 675: 'GEO_NPC_F6_CSA',
574
+ 361: 'GEO_NPC_F6_CSM',
575
+ 600: 'GEO_NPC_F7_CSM',
576
+ 5464: 'GEO_SUB_F0_BAK',
577
+ 5467: 'GEO_SUB_F0_BLN',
578
+ 106: 'GEO_SUB_F0_BRN',
579
+ 204: 'GEO_SUB_F0_BTX',
580
+ 169: 'GEO_SUB_F0_BW1',
581
+ 168: 'GEO_SUB_F0_BW2',
582
+ 167: 'GEO_SUB_F0_BW3',
583
+ 170: 'GEO_SUB_F0_CDW',
584
+ 270: 'GEO_SUB_F0_CID',
585
+ 107: 'GEO_SUB_F0_CNA',
586
+ 380: 'GEO_SUB_F0_FLT',
587
+ 382: 'GEO_SUB_F0_GRL',
588
+ 267: 'GEO_SUB_F0_KJA',
589
+ 531: 'GEO_SUB_F0_KJG',
590
+ 215: 'GEO_SUB_F0_KUT',
591
+ 214: 'GEO_SUB_F0_KUW',
592
+ 665: 'GEO_SUB_F0_MOM',
593
+ 109: 'GEO_SUB_F0_MRC',
594
+ 62: 'GEO_SUB_F0_NTA',
595
+ 540: 'GEO_SUB_F0_NTB',
596
+ 539: 'GEO_SUB_F0_NTC',
597
+ 541: 'GEO_SUB_F0_NTD',
598
+ 48: 'GEO_SUB_F0_RBY',
599
+ 368: 'GEO_SUB_F0_SBW',
600
+ 5488: 'GEO_SUB_F0_SSB',
601
+ 171: 'GEO_SUB_F0_TOT',
602
+ 5500: 'GEO_SUB_F0_ZNR',
603
+ 172: 'GEO_SUB_F0_ZON',
604
+ 5501: 'GEO_SUB_F1_BAK',
605
+ 190: 'GEO_SUB_F1_BLN',
606
+ 207: 'GEO_SUB_F1_BW3',
607
+ 425: 'GEO_SUB_F1_CID',
608
+ 5505: 'GEO_SUB_F1_SSB',
609
+ 274: 'GEO_SUB_F1_ZON',
610
+ 186: 'GEO_SUB_F2_BAK',
611
+ 191: 'GEO_SUB_F2_CID',
612
+ 5509: 'GEO_SUB_F2_SSB',
613
+ 667: 'GEO_SUB_F3_KJA',
614
+ 5511: 'GEO_SUB_F3_SSB',
615
+ 426: 'GEO_SUB_F4_SSB',
616
+ 659: 'GEO_SUB_F7_BLN',
617
+ 661: 'GEO_SUB_F7_CNA',
618
+ 660: 'GEO_SUB_F7_MRC',
619
+ 310: 'GEO_SUB_W0_001',
620
+ 309: 'GEO_SUB_W0_002',
621
+ 308: 'GEO_SUB_W0_003',
622
+ 375: 'GEO_SUB_W0_004',
623
+ 374: 'GEO_SUB_W0_005',
624
+ 373: 'GEO_SUB_W0_006',
625
+ 372: 'GEO_SUB_W0_007',
626
+ 321: 'GEO_SUB_W0_008',
627
+ 320: 'GEO_SUB_W0_009',
628
+ 317: 'GEO_SUB_W0_010',
629
+ 307: 'GEO_SUB_W0_011',
630
+ 41: 'GEO_SUB_W0_012',
631
+ 316: 'GEO_SUB_W0_013',
632
+ 319: 'GEO_SUB_W0_015',
633
+ 318: 'GEO_SUB_W0_016',
634
+ 315: 'GEO_SUB_W0_018',
635
+ 314: 'GEO_SUB_W0_019',
636
+ 313: 'GEO_SUB_W0_021',
637
+ 312: 'GEO_SUB_W0_022',
638
+ 311: 'GEO_SUB_W0_023',
639
+ 452: 'GEO_SUB_W0_025',
640
+ 37: 'GEO_WEP_B1_011',
641
+ 476: 'GEO_WEP_B1_012',
642
+ 475: 'GEO_WEP_B1_013',
643
+ 501: 'GEO_WEP_B1_014',
644
+ 477: 'GEO_WEP_B1_015',
645
+ 441: 'GEO_WEP_B1_016',
646
+ 527: 'GEO_WEP_B1_017',
647
+ 522: 'GEO_WEP_B1_018',
648
+ 521: 'GEO_WEP_B1_019',
649
+ 517: 'GEO_WEP_B1_020',
650
+ 516: 'GEO_WEP_B1_021',
651
+ 515: 'GEO_WEP_B1_022',
652
+ 514: 'GEO_WEP_B1_023',
653
+ 520: 'GEO_WEP_B1_024',
654
+ 519: 'GEO_WEP_B1_025',
655
+ 518: 'GEO_WEP_B1_026',
656
+ 366: 'GEO_WEP_B1_027',
657
+ 385: 'GEO_WEP_B1_028',
658
+ 384: 'GEO_WEP_B1_029',
659
+ 389: 'GEO_WEP_B1_030',
660
+ 388: 'GEO_WEP_B1_031',
661
+ 387: 'GEO_WEP_B1_032',
662
+ 386: 'GEO_WEP_B1_033',
663
+ 392: 'GEO_WEP_B1_034',
664
+ 391: 'GEO_WEP_B1_035',
665
+ 629: 'GEO_WEP_B1_036',
666
+ 390: 'GEO_WEP_B1_037',
667
+ 367: 'GEO_WEP_B1_038',
668
+ 595: 'GEO_WEP_B1_039',
669
+ 383: 'GEO_WEP_B1_040',
670
+ 594: 'GEO_WEP_B1_041',
671
+ 465: 'GEO_WEP_B1_042',
672
+ 496: 'GEO_WEP_B1_043',
673
+ 468: 'GEO_WEP_B1_044',
674
+ 497: 'GEO_WEP_B1_045',
675
+ 467: 'GEO_WEP_B1_046',
676
+ 466: 'GEO_WEP_B1_047',
677
+ 470: 'GEO_WEP_B1_048',
678
+ 469: 'GEO_WEP_B1_049',
679
+ 605: 'GEO_WEP_B1_050',
680
+ 413: 'GEO_WEP_B1_051',
681
+ 471: 'GEO_WEP_B1_052',
682
+ 498: 'GEO_WEP_B1_053',
683
+ 500: 'GEO_WEP_B1_054',
684
+ 472: 'GEO_WEP_B1_055',
685
+ 440: 'GEO_WEP_B1_056',
686
+ 499: 'GEO_WEP_B1_057',
687
+ 474: 'GEO_WEP_B1_058',
688
+ 473: 'GEO_WEP_B1_059',
689
+ 456: 'GEO_WEP_B1_060',
690
+ 455: 'GEO_WEP_B1_061',
691
+ 454: 'GEO_WEP_B1_062',
692
+ 453: 'GEO_WEP_B1_063',
693
+ 460: 'GEO_WEP_B1_064',
694
+ 459: 'GEO_WEP_B1_065',
695
+ 458: 'GEO_WEP_B1_066',
696
+ 457: 'GEO_WEP_B1_067',
697
+ 461: 'GEO_WEP_B1_068',
698
+ 491: 'GEO_WEP_B1_069',
699
+ 493: 'GEO_WEP_B1_070',
700
+ 492: 'GEO_WEP_B1_071',
701
+ 463: 'GEO_WEP_B1_072',
702
+ 462: 'GEO_WEP_B1_073',
703
+ 464: 'GEO_WEP_B1_074',
704
+ 44: 'GEO_WEP_B1_075',
705
+ 494: 'GEO_WEP_B1_076',
706
+ 43: 'GEO_WEP_B1_077',
707
+ 264: 'GEO_WEP_B1_078',
708
+ 495: 'GEO_WEP_B1_079',
709
+ 322: 'GEO_WEP_B1_080',
710
+ 478: 'GEO_WEP_B1_081',
711
+ 503: 'GEO_WEP_B1_082',
712
+ 502: 'GEO_WEP_B1_083',
713
+ 504: 'GEO_WEP_B1_084',
714
+ 481: 'GEO_WEP_B1_085',
715
+ 480: 'GEO_WEP_B1_086',
716
+ 479: 'GEO_WEP_B1_087',
717
+ 483: 'GEO_WEP_B1_088',
718
+ 482: 'GEO_WEP_B1_089',
719
+ 484: 'GEO_WEP_B1_090',
720
+ 507: 'GEO_WEP_B1_091',
721
+ 506: 'GEO_WEP_B1_092',
722
+ 505: 'GEO_WEP_B1_093',
723
+ 486: 'GEO_WEP_B1_094',
724
+ 485: 'GEO_WEP_B1_095',
725
+ }