-
Notifications
You must be signed in to change notification settings - Fork 97
/
Map.dbd
1234 lines (1187 loc) · 36.7 KB
/
Map.dbd
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
COLUMNS
int ID
string Directory // reference to World\Map\ [...] \
int PVP
int IsInMap
locstring MapName_lang
int InstanceType // Integer 0: none, 1: party, 2: raid, 3: pvp, 4: arena, >=5: none (official from "IsInInstance()")
int MapType
int MinLevel
int MaxLevel
int MaxPlayers
int Unk0?
int Unk1?
int Unk2?
int<Map::ID> ParentMapID
locstring MapDescription0_lang // Horde
locstring MapDescription1_lang // Alliance
int<LoadingScreens::ID> LoadingScreenID
int RaidOffset
int Continentname?
int Unk3?
int<AreaTable::ID> AreaTableID
float MinimapIconScale
int Unk4?
int TimeOfDayOverride // Set to -1 for everything but Orgrimmar and Dalaran arena. For those, the time of day will change to this.
int ExpansionID // Vanilla: 0, BC: 1, WotLK: 2 # todo enum
int Flags? // &0x100: CanChangeDifficulty
int<Map::ID> CorpseMapID
float Corpse // Array of CorpsePosX/CorpsePosY
int<Map::ID> CosmeticParentMapID
int TimeOffset
int<WindSettings::ID> WindSettingsID
locstring PvpShortDescription_lang
locstring PvpLongDescription_lang
float CorpseX
float CorpseY
int<FileData::ID> ZmpFileDataID
int<FileData::ID> WdtFileDataID?
string InternalName
float Field_0_7_0_3694_007?
float Field_0_7_0_3694_008?
int Field_2_0_3_6299_023?
int Field_2_0_3_6299_024?
int Field_2_0_3_6299_025?
int Field_0_8_0_3734_004?
int Field_0_8_0_3734_005?
int Field_0_7_0_3694_006?
int Field_3_0_2_9056_013?
locstring Field_2_0_0_5610_018_lang?
locstring Field_2_0_0_5610_019_lang?
locstring Field_2_0_0_5610_020_lang?
int Field_1_5_0_4442_014?
int Field_3_0_2_9056_021?
int Field_1_7_0_4671_015?
int NavigationMaxDistance? // default/if <= 0: 999, max ingame navigation pin distance
int<FileData::ID> PreloadFileDataID?
int Field_1_15_4_56400_021?
BUILD 0.6.0.3592
BUILD 0.5.3.3368, 0.5.3.3494
BUILD 0.5.3.3368-0.6.0.3592
$id$ID<32>
Directory
PVP<32>
IsInMap<32>
MapName_lang
BUILD 0.7.6.3712
BUILD 0.7.1.3702
BUILD 0.7.0.3694
BUILD 0.7.0.3694-0.7.6.3712
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
Unk0<32>
Unk1<u32>
Unk2<u32>
MapDescription0_lang
MapDescription1_lang
BUILD 0.8.0.3734
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
BUILD 0.9.1.3810
BUILD 1.0.0.3980-1.4.2.4375
BUILD 0.9.0.3807-0.12.0.3988
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
Unk0<32>
Unk1<u32>
Unk2<u32>
Unk3<32>
MapDescription0_lang
MapDescription1_lang
Unk4<32>
BUILD 1.5.0.4442-1.6.1.4544
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
BUILD 1.7.0.4671-1.8.0.4714
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
BUILD 1.12.1.5875
BUILD 1.12.1.5875-1.12.2.6005
BUILD 1.11.0.5344-1.12.0.5595
$id$ID<32>
Directory
InstanceType<32>
MapType<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Unk0<32>
Unk1<u32>
Unk2<u32>
ParentMapID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
RaidOffset<32>
Continentname<32>
Unk4<u32>
LAYOUT 0E84A21C
BUILD 1.13.7.37279, 1.13.7.37429, 1.13.7.37892, 1.13.7.38178, 1.13.7.38296, 1.13.7.38363, 1.13.7.38386, 1.13.7.38475, 1.13.7.38631, 1.13.7.38704, 1.13.7.39605, 1.13.7.39692
BUILD 1.13.6.36231, 1.13.6.36310, 1.13.6.36324, 1.13.6.36497, 1.13.6.36524, 1.13.6.36611, 1.13.6.36670, 1.13.6.36714, 1.13.6.36935, 1.13.6.37497
BUILD 1.13.5.34000, 1.13.5.34097, 1.13.5.34138, 1.13.5.34713, 1.13.5.34911, 1.13.5.35000, 1.13.5.35186, 1.13.5.35395, 1.13.5.35663, 1.13.5.35705, 1.13.5.35753, 1.13.5.36035, 1.13.5.36307, 1.13.5.36325
BUILD 1.13.4.33491, 1.13.4.33598, 1.13.4.33645, 1.13.4.33728, 1.13.4.33920, 1.13.4.34219, 1.13.4.34266, 1.13.4.34600, 1.13.4.34835
BUILD 1.13.3.32790, 1.13.3.32836, 1.13.3.32887, 1.13.3.33155, 1.13.3.33302, 1.13.3.33485, 1.13.3.33526
BUILD 1.13.2.30073, 1.13.2.30112, 1.13.2.30113, 1.13.2.30128, 1.13.2.30172, 1.13.2.30232, 1.13.2.30265, 1.13.2.30287, 1.13.2.30406, 1.13.2.30550, 1.13.2.30682, 1.13.2.30786, 1.13.2.30862, 1.13.2.30901, 1.13.2.30979, 1.13.2.31043, 1.13.2.31118, 1.13.2.31209, 1.13.2.31402, 1.13.2.31407, 1.13.2.31446, 1.13.2.31650, 1.13.2.31687, 1.13.2.31727, 1.13.2.31830, 1.13.2.31882, 1.13.2.32089, 1.13.2.32421, 1.13.2.32600
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[2]
LAYOUT DAD9F758
BUILD 1.15.3.55112, 1.15.3.55244, 1.15.3.55348, 1.15.3.55391, 1.15.3.55515, 1.15.3.55563, 1.15.3.55646, 1.15.3.55917, 1.15.3.56488, 1.15.3.56626
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
RaidOffset<32>
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[3]
BUILD 2.0.0.5610-2.0.0.5666
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
BUILD 2.0.0.5991
BUILD 1.8.0.4735-1.10.2.5302
$id$ID<32>
Directory
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
BUILD 2.0.0.6080
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
BUILD 2.0.3.6299-2.3.3.7799
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
Field_2_0_3_6299_023<32>
Field_2_0_3_6299_024<32>
Field_2_0_3_6299_025<32>
LAYOUT 67680F17
BUILD 2.5.1.38043, 2.5.1.38061, 2.5.1.38093, 2.5.1.38118, 2.5.1.38119, 2.5.1.38169, 2.5.1.38225, 2.5.1.38285, 2.5.1.38339, 2.5.1.38364, 2.5.1.38401, 2.5.1.38453, 2.5.1.38502, 2.5.1.38521, 2.5.1.38537, 2.5.1.38548, 2.5.1.38561, 2.5.1.38598, 2.5.1.38644, 2.5.1.38677, 2.5.1.38692, 2.5.1.38707, 2.5.1.38739, 2.5.1.38741, 2.5.1.38757, 2.5.1.38835, 2.5.1.38892, 2.5.1.38921, 2.5.1.38988, 2.5.1.39170, 2.5.1.39399, 2.5.1.39475, 2.5.1.39603, 2.5.1.39640
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[2]
LAYOUT C08A6797
BUILD 2.5.3.41402, 2.5.3.41531, 2.5.3.41750, 2.5.3.41812, 2.5.3.42083, 2.5.3.42328, 2.5.3.42598
BUILD 2.5.2.39570, 2.5.2.39618, 2.5.2.39658, 2.5.2.39688, 2.5.2.39757, 2.5.2.39801, 2.5.2.39832, 2.5.2.39926, 2.5.2.40011, 2.5.2.40045, 2.5.2.40203, 2.5.2.40260, 2.5.2.40422, 2.5.2.40488, 2.5.2.40617, 2.5.2.40892, 2.5.2.41446, 2.5.2.41510
BUILD 1.14.2.41858, 1.14.2.41959, 1.14.2.42065, 1.14.2.42082, 1.14.2.42214, 1.14.2.42597
BUILD 1.14.1.40487, 1.14.1.40594, 1.14.1.40666, 1.14.1.40688, 1.14.1.40800, 1.14.1.40818, 1.14.1.40926, 1.14.1.40962, 1.14.1.41009, 1.14.1.41030, 1.14.1.41077, 1.14.1.41137, 1.14.1.41243, 1.14.1.41511, 1.14.1.41794, 1.14.1.42032
BUILD 1.14.0.39802, 1.14.0.39958, 1.14.0.40140, 1.14.0.40179, 1.14.0.40237, 1.14.0.40347, 1.14.0.40441, 1.14.0.40618
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[2]
LAYOUT 705E2886
BUILD 2.5.4.42581, 2.5.4.42695, 2.5.4.42757, 2.5.4.42800, 2.5.4.42869, 2.5.4.42870, 2.5.4.42873, 2.5.4.42917, 2.5.4.42940, 2.5.4.43400, 2.5.4.43638, 2.5.4.43861, 2.5.4.44036, 2.5.4.44171, 2.5.4.44400, 2.5.4.44833
BUILD 1.14.3.42770, 1.14.3.42926, 1.14.3.43037, 1.14.3.43086, 1.14.3.43154, 1.14.3.43401, 1.14.3.43639, 1.14.3.44016, 1.14.3.44170, 1.14.3.44403, 1.14.3.44834, 1.14.3.45437, 1.14.3.46575, 1.14.3.47658, 1.14.3.48611, 1.14.3.49229, 1.14.3.49821
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[3]
BUILD 3.0.1.8303-3.0.1.8770
BUILD 2.4.0.8089-2.4.3.8606
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
Field_2_0_3_6299_023<32>
Field_2_0_3_6299_024<32>
Field_2_0_3_6299_025<32>
TimeOfDayOverride<32>
ExpansionID<32>
BUILD 3.0.1.8788, 3.0.1.8820, 3.0.1.8874, 3.0.1.8885
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
Field_0_7_0_3694_006<32>
Field_0_7_0_3694_007
Field_0_7_0_3694_008
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_1_5_0_4442_014<32>
Field_1_7_0_4671_015<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
Field_2_0_3_6299_023<32>
Field_2_0_3_6299_024<32>
Field_2_0_3_6299_025<32>
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
BUILD 3.0.2.9056
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
MinLevel<32>
MaxLevel<32>
MaxPlayers<32>
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
Field_0_7_0_3694_006<32>
Field_3_0_2_9056_013<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
Field_1_5_0_4442_014<32>
Field_3_0_2_9056_021<32>
Field_1_7_0_4671_015<32>
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
BUILD 3.0.3.9183-3.1.3.9947
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
Field_2_0_0_5610_018_lang
Field_2_0_0_5610_019_lang
Field_2_0_0_5610_020_lang
CorpseMapID<32>
Corpse[2]
Field_1_5_0_4442_014<32>
Field_0_8_0_3734_004<32>
Field_0_8_0_3734_005<32>
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
BUILD 3.2.0.10192-3.2.2.10505
$id$ID<32>
Directory
InstanceType<32>
PVP<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
BUILD 3.3.0.10958-3.3.5.12340
$id$ID<32>
Directory
InstanceType<32>
Flags<32>
PVP<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
LAYOUT A81BAFA6
BUILD 3.4.0.43659, 3.4.0.43682, 3.4.0.43746, 3.4.0.43788, 3.4.0.43866, 3.4.0.43881, 3.4.0.43929, 3.4.0.43955, 3.4.0.44064, 3.4.0.44184, 3.4.0.44250, 3.4.0.44301, 3.4.0.44369, 3.4.0.44463, 3.4.0.44547
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[3]
LAYOUT BFC078A9
BUILD 3.4.3.51126, 3.4.3.51278, 3.4.3.51384, 3.4.3.51397, 3.4.3.51470, 3.4.3.51505, 3.4.3.51572, 3.4.3.51666, 3.4.3.51739, 3.4.3.51831, 3.4.3.51943, 3.4.3.52237, 3.4.3.53622, 3.4.3.53788, 3.4.3.54261, 3.4.3.54948, 3.4.3.54987, 3.4.3.55085, 3.4.3.55095, 3.4.3.55115, 3.4.3.55136, 3.4.3.55161, 3.4.3.55221, 3.4.3.55286, 3.4.3.55325, 3.4.3.55326, 3.4.3.55392, 3.4.3.55417, 3.4.3.55541, 3.4.3.55586, 3.4.3.55758, 3.4.3.56011, 3.4.3.56030, 3.4.3.56262, 3.4.3.57027, 3.4.3.57082, 3.4.3.57135, 3.4.3.57242, 3.4.3.57269, 3.4.3.57316, 3.4.3.57364, 3.4.3.57635, 3.4.3.57978
BUILD 3.4.2.49311, 3.4.2.49442, 3.4.2.49563, 3.4.2.49584, 3.4.2.49658, 3.4.2.49684, 3.4.2.49705, 3.4.2.49752, 3.4.2.49794, 3.4.2.49871, 3.4.2.49979, 3.4.2.50058, 3.4.2.50063, 3.4.2.50129, 3.4.2.50172, 3.4.2.50250, 3.4.2.50375, 3.4.2.50664
BUILD 3.4.1.46722, 3.4.1.46917, 3.4.1.46973, 3.4.1.47014, 3.4.1.47110, 3.4.1.47245, 3.4.1.47496, 3.4.1.47585, 3.4.1.47612, 3.4.1.47720, 3.4.1.47800, 3.4.1.47925, 3.4.1.47966, 3.4.1.48019, 3.4.1.48120, 3.4.1.48340, 3.4.1.48503, 3.4.1.48632, 3.4.1.49345, 3.4.1.49822, 3.4.1.49936
BUILD 3.4.0.44644, 3.4.0.44701, 3.4.0.44729, 3.4.0.44832, 3.4.0.44925, 3.4.0.44930, 3.4.0.44996, 3.4.0.45043, 3.4.0.45064, 3.4.0.45102, 3.4.0.45166, 3.4.0.45189, 3.4.0.45264, 3.4.0.45327, 3.4.0.45435, 3.4.0.45506, 3.4.0.45572, 3.4.0.45613, 3.4.0.45704, 3.4.0.45770, 3.4.0.45772, 3.4.0.45854, 3.4.0.45942, 3.4.0.46158, 3.4.0.46182, 3.4.0.46248, 3.4.0.46269, 3.4.0.46368, 3.4.0.46779, 3.4.0.46902, 3.4.0.47168, 3.4.0.47659
BUILD 1.14.4.50252, 1.14.4.50304, 1.14.4.50337, 1.14.4.50461, 1.14.4.50547, 1.14.4.50643, 1.14.4.50753, 1.14.4.50849, 1.14.4.50960, 1.14.4.51001, 1.14.4.51056, 1.14.4.51146, 1.14.4.51311, 1.14.4.51395, 1.14.4.51535, 1.14.4.51829
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
RaidOffset<32>
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[3]
BUILD 4.0.1.12911
BUILD 4.0.0.11792
BUILD 4.0.0.11927-4.0.6.13596
$id$ID<32>
Directory
InstanceType<32>
Flags<32>
PVP<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
CorpseX
CorpseY
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
ParentMapID<32>
LAYOUT EE526FA5
BUILD 4.4.0.53627, 4.4.0.53750, 4.4.0.53863, 4.4.0.53973, 4.4.0.54027, 4.4.0.54137, 4.4.0.54217, 4.4.0.54339, 4.4.0.54377, 4.4.0.54427, 4.4.0.54481, 4.4.0.54500, 4.4.0.54501, 4.4.0.54525, 4.4.0.54558, 4.4.0.54647, 4.4.0.54670, 4.4.0.54737, 4.4.0.54851, 4.4.0.54901, 4.4.0.54986, 4.4.0.55006, 4.4.0.55056, 4.4.0.55141, 4.4.0.55262, 4.4.0.55460, 4.4.0.55613, 4.4.0.55639, 4.4.0.56014, 4.4.0.56420, 4.4.0.56489, 4.4.0.56713, 4.4.0.57244
BUILD 1.15.2.53941, 1.15.2.54029, 1.15.2.54067, 1.15.2.54092, 1.15.2.54262, 1.15.2.54332, 1.15.2.54649, 1.15.2.54902, 1.15.2.55002, 1.15.2.55140
BUILD 1.15.1.53009, 1.15.1.53181, 1.15.1.53247, 1.15.1.53495, 1.15.1.53623
BUILD 1.15.0.52124, 1.15.0.52146, 1.15.0.52186, 1.15.0.52212, 1.15.0.52302, 1.15.0.52409, 1.15.0.52610
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
RaidOffset<32>
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[3]
LAYOUT 32401DC5
BUILD 4.4.1.56464, 4.4.1.56574, 4.4.1.56859, 4.4.1.56961, 4.4.1.57103, 4.4.1.57141, 4.4.1.57294, 4.4.1.57359, 4.4.1.57564, 4.4.1.57916
BUILD 1.15.5.57537, 1.15.5.57611, 1.15.5.57638, 1.15.5.57716, 1.15.5.57807, 1.15.5.57917, 1.15.5.57979
BUILD 1.15.4.56400, 1.15.4.56419, 1.15.4.56493, 1.15.4.56573, 1.15.4.56708, 1.15.4.56718, 1.15.4.56738, 1.15.4.56760, 1.15.4.56817, 1.15.4.56857, 1.15.4.57134
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
RaidOffset<32>
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Field_1_15_4_56400_021<32>
Flags<32>[3]
BUILD 5.0.1.15464-5.0.1.15544
BUILD 4.0.6.13623-4.3.4.15595
$id$ID<32>
Directory
InstanceType<32>
Flags<32>
MapType<32>
PVP<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
ParentMapID<32>
BUILD 5.0.1.15589-5.4.8.18414
$id$ID<32>
Directory
InstanceType<32>
Flags<32>
MapType<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
ParentMapID<32>
BUILD 6.0.1.18125-6.0.2.18833
$id$ID<32>
Directory
InstanceType<32>
Flags<32>
MapType<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
ParentMapID<32>
CosmeticParentMapID<32>
TimeOffset<32>
BUILD 7.0.1.20740-7.0.1.20914
BUILD 6.0.2.18837-6.2.4.21742
$id$ID<32>
Directory
InstanceType<32>
Flags<32>[2]
MapType<32>
MapName_lang
AreaTableID<32>
MapDescription0_lang
MapDescription1_lang
LoadingScreenID<32>
MinimapIconScale
CorpseMapID<32>
Corpse[2]
TimeOfDayOverride<32>
ExpansionID<32>
RaidOffset<32>
MaxPlayers<32>
ParentMapID<32>
CosmeticParentMapID<32>
TimeOffset<32>
LAYOUT 27D77AEF
BUILD 7.0.3.21473-7.0.3.21737
$noninline,id$ID<32>
Directory
Flags<32>[2]
MinimapIconScale
Corpse[2]
MapName_lang
MapDescription0_lang
MapDescription1_lang
AreaTableID<16>
LoadingScreenID<16>
CorpseMapID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
InstanceType<8>
MapType<8>
ExpansionID<8>
MaxPlayers<8>
TimeOffset<8>
LAYOUT B32E648C, F7CF2DA2, BDBE8188, 98BE9895
BUILD 7.2.0.23436-7.2.0.23514
BUILD 7.1.5.23038-7.1.5.23420
BUILD 7.1.0.22578-7.1.0.22996
BUILD 7.0.3.21796-7.0.3.22747
$noninline,id$ID<32>
Directory
Flags<32>[2]
MinimapIconScale
Corpse[2]
MapName_lang
MapDescription0_lang
MapDescription1_lang
AreaTableID<16>
LoadingScreenID<16>
CorpseMapID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
WindSettingsID<16>
InstanceType<8>
MapType<8>
ExpansionID<8>
MaxPlayers<8>
TimeOffset<8>
LAYOUT C34CD39B, AFAFB470, A37A2830
BUILD 7.3.2.25079, 7.3.2.25163, 7.3.2.25196, 7.3.2.25208, 7.3.2.25255, 7.3.2.25326, 7.3.2.25383, 7.3.2.25442, 7.3.2.25455, 7.3.2.25477, 7.3.2.25480, 7.3.2.25497, 7.3.2.25516, 7.3.2.25549
BUILD 7.3.0.24473, 7.3.0.24484, 7.3.0.24492, 7.3.0.24500, 7.3.0.24539, 7.3.0.24563, 7.3.0.24608, 7.3.0.24651, 7.3.0.24681, 7.3.0.24692, 7.3.0.24700, 7.3.0.24715, 7.3.0.24727, 7.3.0.24730, 7.3.0.24738, 7.3.0.24744, 7.3.0.24758, 7.3.0.24759, 7.3.0.24781, 7.3.0.24793, 7.3.0.24829, 7.3.0.24834, 7.3.0.24843, 7.3.0.24845, 7.3.0.24852, 7.3.0.24853, 7.3.0.24864, 7.3.0.24878, 7.3.0.24887, 7.3.0.24896, 7.3.0.24904, 7.3.0.24920, 7.3.0.24931, 7.3.0.24956, 7.3.0.24970, 7.3.0.24974, 7.3.0.25021, 7.3.0.25195
BUILD 7.3.2.25135-7.3.2.25549
BUILD 7.3.0.24473-7.3.0.25195
BUILD 7.2.5.23910-7.2.5.24393
BUILD 7.2.0.23530-7.2.0.23937
$noninline,id$ID<32>
Directory
Flags<32>[2]
MinimapIconScale
Corpse[2]
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
AreaTableID<u16>
LoadingScreenID<16>
CorpseMapID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
WindSettingsID<16>
InstanceType<u8>
MapType<u8>
ExpansionID<u8>
MaxPlayers<u8>
TimeOffset<u8>
LAYOUT F568DF12
BUILD 8.0.1.25902, 8.0.1.25976, 8.0.1.26010, 8.0.1.26032, 8.0.1.26095, 8.0.1.26131, 8.0.1.26141, 8.0.1.26175, 8.0.1.26231
BUILD 7.3.5.25928, 7.3.5.25937, 7.3.5.25944, 7.3.5.25946, 7.3.5.25950, 7.3.5.25961, 7.3.5.25996, 7.3.5.26124, 7.3.5.26365, 7.3.5.26654, 7.3.5.26755, 7.3.5.26822, 7.3.5.26899, 7.3.5.26972
BUILD 1.13.0.28211
BUILD 8.0.1.25902-8.0.1.26095
BUILD 7.3.5.25600-7.3.5.25928
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
Flags<32>[2]
MinimapIconScale
Corpse[2]
AreaTableID<u16>
LoadingScreenID<16>
CorpseMapID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
WindSettingsID<16>
InstanceType<u8>
MapType<u8>
ExpansionID<u8>
MaxPlayers<u8>
TimeOffset<u8>
LAYOUT 72DD596B
BUILD 8.0.1.26287, 8.0.1.26297
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
Flags<32>[2]
MinimapIconScale
Corpse[2]
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
CorpseMapID<16>
WindSettingsID<16>
MapType<u8>
InstanceType<u8>
ExpansionID<u8>
TimeOffset<u8>
MaxPlayers<u8>
LAYOUT 1CFE0E06
BUILD 8.0.1.26310, 8.0.1.26321, 8.0.1.26367, 8.0.1.26433, 8.0.1.26476, 8.0.1.26491, 8.0.1.26522, 8.0.1.26530, 8.0.1.26557, 8.0.1.26567, 8.0.1.26585, 8.0.1.26604, 8.0.1.26610, 8.0.1.26624, 8.0.1.26629, 8.0.1.26637, 8.0.1.26640, 8.0.1.26683, 8.0.1.26707, 8.0.1.26714, 8.0.1.26715, 8.0.1.26734, 8.0.1.26766
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
Flags<32>[2]
MinimapIconScale
Corpse[2]
ZmpFileDataID<32>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
CorpseMapID<16>
WindSettingsID<16>
MapType<u8>
InstanceType<u8>
ExpansionID<u8>
TimeOffset<u8>
MaxPlayers<u8>
LAYOUT 503A3E58
BUILD 8.1.0.27826, 8.1.0.27934, 8.1.0.27985, 8.1.0.28048, 8.1.0.28085, 8.1.0.28151, 8.1.0.28186, 8.1.0.28202, 8.1.0.28294, 8.1.0.28366, 8.1.0.28440, 8.1.0.28485, 8.1.0.28616, 8.1.0.28657, 8.1.0.28710, 8.1.0.28724, 8.1.0.28768, 8.1.0.28807, 8.1.0.28822, 8.1.0.28833, 8.1.0.29088, 8.1.0.29139, 8.1.0.29235, 8.1.0.29285, 8.1.0.29297, 8.1.0.29482, 8.1.0.29600, 8.1.0.29621
BUILD 8.0.1.26788, 8.0.1.26806, 8.0.1.26812, 8.0.1.26838, 8.0.1.26871, 8.0.1.26877, 8.0.1.26892, 8.0.1.26903, 8.0.1.26918, 8.0.1.26926, 8.0.1.26936, 8.0.1.26949, 8.0.1.26970, 8.0.1.26999, 8.0.1.27004, 8.0.1.27009, 8.0.1.27019, 8.0.1.27026, 8.0.1.27075, 8.0.1.27089, 8.0.1.27101, 8.0.1.27138, 8.0.1.27144, 8.0.1.27165, 8.0.1.27178, 8.0.1.27219, 8.0.1.27291, 8.0.1.27326, 8.0.1.27353, 8.0.1.27355, 8.0.1.27356, 8.0.1.27366, 8.0.1.27377, 8.0.1.27404, 8.0.1.27481, 8.0.1.27547, 8.0.1.27602, 8.0.1.27791, 8.0.1.27843, 8.0.1.27980, 8.0.1.28153
$noninline,id$ID<32>
Directory
MapName_lang
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
Corpse[2]
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
Flags<32>[2]
LAYOUT 793F4E8E
BUILD 9.1.0.38312
BUILD 9.0.5.37503, 9.0.5.37623, 9.0.5.37705, 9.0.5.37774, 9.0.5.37844, 9.0.5.37862, 9.0.5.37864, 9.0.5.37893, 9.0.5.37899, 9.0.5.37988, 9.0.5.38134, 9.0.5.38556
BUILD 9.0.2.35854, 9.0.2.35938, 9.0.2.35978, 9.0.2.36037, 9.0.2.36086, 9.0.2.36165, 9.0.2.36206, 9.0.2.36267, 9.0.2.36294, 9.0.2.36401, 9.0.2.36512, 9.0.2.36532, 9.0.2.36599, 9.0.2.36639, 9.0.2.36665, 9.0.2.36671, 9.0.2.36710, 9.0.2.36734, 9.0.2.36751, 9.0.2.36753, 9.0.2.36839, 9.0.2.36949, 9.0.2.37106, 9.0.2.37130, 9.0.2.37142, 9.0.2.37176, 9.0.2.37415, 9.0.2.37474
BUILD 9.0.1.33978, 9.0.1.34003, 9.0.1.34081, 9.0.1.34098, 9.0.1.34137, 9.0.1.34199, 9.0.1.34278, 9.0.1.34324, 9.0.1.34365, 9.0.1.34392, 9.0.1.34490, 9.0.1.34615, 9.0.1.34714, 9.0.1.34821, 9.0.1.34902, 9.0.1.34972, 9.0.1.35078, 9.0.1.35167, 9.0.1.35213, 9.0.1.35256, 9.0.1.35282, 9.0.1.35360, 9.0.1.35432, 9.0.1.35482, 9.0.1.35522, 9.0.1.35598, 9.0.1.35679, 9.0.1.35707, 9.0.1.35755, 9.0.1.35789, 9.0.1.35828, 9.0.1.35853, 9.0.1.35897, 9.0.1.35917, 9.0.1.35944, 9.0.1.35989, 9.0.1.36021, 9.0.1.36036, 9.0.1.36074, 9.0.1.36131, 9.0.1.36163, 9.0.1.36200, 9.0.1.36216, 9.0.1.36228, 9.0.1.36230, 9.0.1.36247, 9.0.1.36272, 9.0.1.36286, 9.0.1.36322, 9.0.1.36372, 9.0.1.36492, 9.0.1.36577
$noninline,id$ID<32>
Directory
MapName_lang
InternalName
MapDescription0_lang
MapDescription1_lang
PvpShortDescription_lang
PvpLongDescription_lang
Corpse[2]
MapType<u8>
InstanceType<8>
ExpansionID<u8>
AreaTableID<u16>
LoadingScreenID<16>
TimeOfDayOverride<16>
ParentMapID<16>
CosmeticParentMapID<16>
TimeOffset<u8>
MinimapIconScale
CorpseMapID<16>
MaxPlayers<u8>
WindSettingsID<16>
ZmpFileDataID<32>
WdtFileDataID<32>
Flags<32>[2]
LAYOUT B290D217, DA9493AF
BUILD 9.1.0.38394, 9.1.0.38511, 9.1.0.38524, 9.1.0.38549, 9.1.0.38600, 9.1.0.38627, 9.1.0.38709, 9.1.0.38783, 9.1.0.38802, 9.1.0.38872, 9.1.0.38950, 9.1.0.39015, 9.1.0.39069, 9.1.0.39121, 9.1.0.39136, 9.1.0.39172, 9.1.0.39185, 9.1.0.39226, 9.1.0.39229, 9.1.0.39262, 9.1.0.39282, 9.1.0.39289, 9.1.0.39291, 9.1.0.39318, 9.1.0.39335, 9.1.0.39413, 9.1.0.39427, 9.1.0.39497, 9.1.0.39498, 9.1.0.39584, 9.1.0.39617, 9.1.0.39653, 9.1.0.39804, 9.1.0.40000, 9.1.0.40120, 9.1.0.40443, 9.1.0.40593, 9.1.0.40725
BUILD 8.3.7.34872, 8.3.7.35114, 8.3.7.35249, 8.3.7.35284, 8.3.7.35435, 8.3.7.35662
BUILD 8.3.0.32044, 8.3.0.32151, 8.3.0.32203, 8.3.0.32218, 8.3.0.32272, 8.3.0.32414, 8.3.0.32489, 8.3.0.32593, 8.3.0.32712, 8.3.0.32805, 8.3.0.32846, 8.3.0.32861, 8.3.0.32976, 8.3.0.33010, 8.3.0.33051, 8.3.0.33062, 8.3.0.33073, 8.3.0.33084, 8.3.0.33095, 8.3.0.33115, 8.3.0.33169, 8.3.0.33183, 8.3.0.33237, 8.3.0.33369, 8.3.0.33528, 8.3.0.33724, 8.3.0.33775, 8.3.0.33941, 8.3.0.34220, 8.3.0.34601, 8.3.0.34769, 8.3.0.34963
BUILD 8.2.5.31337, 8.2.5.31401, 8.2.5.31521, 8.2.5.31599, 8.2.5.31812, 8.2.5.31884, 8.2.5.31919, 8.2.5.31921, 8.2.5.31958, 8.2.5.31960, 8.2.5.31961, 8.2.5.31984, 8.2.5.32028, 8.2.5.32079, 8.2.5.32144, 8.2.5.32185, 8.2.5.32265, 8.2.5.32294, 8.2.5.32305, 8.2.5.32494, 8.2.5.32580, 8.2.5.32638, 8.2.5.32722, 8.2.5.32750, 8.2.5.32978
BUILD 8.2.0.30080, 8.2.0.30093, 8.2.0.30096, 8.2.0.30108, 8.2.0.30123, 8.2.0.30168, 8.2.0.30170, 8.2.0.30203, 8.2.0.30262, 8.2.0.30329, 8.2.0.30430, 8.2.0.30495, 8.2.0.30613, 8.2.0.30634, 8.2.0.30669, 8.2.0.30774, 8.2.0.30827, 8.2.0.30888, 8.2.0.30898, 8.2.0.30918, 8.2.0.30920, 8.2.0.30948, 8.2.0.30993, 8.2.0.31229, 8.2.0.31429, 8.2.0.31478
BUILD 8.1.5.28938, 8.1.5.29141, 8.1.5.29220, 8.1.5.29281, 8.1.5.29310, 8.1.5.29352, 8.1.5.29385, 8.1.5.29418, 8.1.5.29484, 8.1.5.29495, 8.1.5.29558, 8.1.5.29599, 8.1.5.29620, 8.1.5.29634, 8.1.5.29664, 8.1.5.29683, 8.1.5.29701, 8.1.5.29704, 8.1.5.29705, 8.1.5.29718, 8.1.5.29732, 8.1.5.29737, 8.1.5.29814, 8.1.5.29869, 8.1.5.29896, 8.1.5.29981, 8.1.5.30477, 8.1.5.30706
$noninline,id$ID<32>