-
Notifications
You must be signed in to change notification settings - Fork 1
/
missing-source-info.ts
3248 lines (3247 loc) · 117 KB
/
missing-source-info.ts
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
const missingSources: { [key: string]: number[] } = {
'30th': [
286271818, // Twisting Echo Cloak
399065241, // Descending Echo Greaves
587312237, // Twisting Echo Grips
833653807, // Twisting Echo Strides
1756483796, // Twisting Echo Mask
1951355667, // Twisting Echo Vest
2244604734, // Corrupting Echo Gloves
2663987096, // Corrupting Echo Boots
2885497847, // Descending Echo Gauntlets
3048458482, // Corrupting Echo Robes
3171090615, // Corrupting Echo Cover
3267969345, // Descending Echo Cage
3685276035, // Corrupting Echo Bond
3871537958, // Descending Echo Helm
4050474396, // Descending Echo Mark
],
ada: [
2533990645, // Blast Furnace
],
adventure: [
11686457, // Unethical Experiments Cloak
11686458, // Orobas Vectura Cloak
320310249, // Orobas Vectura Bond
320310250, // Unethical Experiments Bond
886128573, // Mindbreaker Boots
1096417434, // Shieldbreaker Robes
1286488743, // Shieldbreaker Plate
1355771621, // Shieldbreaker Vest
1701005142, // Songbreaker Gloves
1701005143, // Gearhead Gloves
2317191363, // Mindbreaker Boots
2426340788, // Orobas Vectura Mark
2426340791, // Unethical Experiments Mark
2486041712, // Gearhead Gauntlets
2486041713, // Songbreaker Gauntlets
2913284400, // Mindbreaker Boots
3706457514, // Gearhead Grips
3706457515, // Songbreaker Grips
],
blackarmory: [
2533990645, // Blast Furnace
],
brave: [
211732170, // Hammerhead
243425374, // Falling Guillotine
570866107, // Succession
2228325504, // Edge Transit
2499720827, // Midnight Coup
3757612024, // Luna's Howl
3851176026, // Elsie's Rifle
],
campaign: [
423789, // Mythos Hack 4.1
644105, // Heavy Ammo Finder
11686456, // Dreamer's Cloak
13719069, // Atgeir Mark
40512774, // Farseeker's Casque
56663992, // Solar Scavenger
59990642, // Refugee Plate
67798808, // Atonement Tau
76554114, // Cry Defiance
83898430, // Scavenger Suit
91289429, // Atonement Tau
95934356, // Strand Loader
96682422, // Arc Targeting
124410141, // Shadow Specter
126602378, // Primal Siege Type 1
137713267, // Refugee Vest
174910288, // Mark of Inquisition
177215556, // Shadow Specter
182285650, // Kit Fox 1.5
201644247, // Hardcase Battleplate
202783988, // Black Shield Mark
203317967, // Fieldplate Type 10
226227391, // Fortress Field
246765359, // Mythos Hack 4.1
255520209, // Cloak of Retelling
280187206, // Hardcase Battleplate
288815409, // Renegade Greaves
293178904, // Unflinching Harmonic Aim
320174990, // Bond of Chiron
320310251, // Dreamer's Bond
331268185, // Solar Targeting
341343759, // Prophet Snow
341468857, // Bond of Insight
366418892, // The Outlander's Grip
387708030, // Prophet Snow
392489920, // Primal Siege Type 1
397654099, // Wastelander Vest
402937789, // Shadow Specter
406995961, // Stagnatious Rebuke
411014648, // Solar Reserves
417821705, // Primal Siege Type 1
418611312, // Shadow Specter
420937712, // War Mantis Cloak
422994787, // Emergency Reinforcement
452060094, // Refugee Gloves
457297858, // Atgeir 2T1
459778797, // Refugee Mask
461025654, // Primal Siege Type 1
463563656, // Primal Siege Type 1
467612864, // Chiron's Cure
474150341, // RPC Valiant
482091581, // Hardcase Stompers
484126150, // Chiron's Cure
516502270, // Firebreak Field
531665167, // Solar Dexterity
539726822, // Refugee Boots
550258943, // Chiron's Cure
558125905, // Frumious Mask
579997810, // Kinetic Scavenger
598178607, // Mark of Confrontation
600059642, // The Outlander's Cloak
610837228, // Raven Shard
612495088, // Homeward
622291842, // Farseeker's March
625602056, // Memory of Cayde Cloak
627055961, // Fortress Field
634608391, // Solar Loader
643145875, // Legion-Bane
648022469, // Makeshift Suit
648638907, // Kit Fox 2.1
657773637, // Sniper Damage Resistance
674335586, // Chiron's Cure
696808195, // Refugee Mark
703683040, // Atgeir 2T1
703902595, // Stasis Loader
720723122, // At Least It's a Cape
721208609, // Farseeker's Intuition
732520437, // Baseline Mark
733635242, // RPC Valiant
735669834, // Shadow Specter
739196403, // RPC Valiant
739406993, // Atgeir 2T1
747210772, // Mythos Hack 4.1
777818225, // Fieldplate Type 10
789384557, // Atonement Tau
792400107, // Unflinching Arc Aim
795389673, // The Outlander's Cloak
803939997, // War Mantis
830369300, // Lucent Blades
833626649, // Chiron's Cure
844823562, // Mechanik 1.1
846463017, // Fieldplate Type 10
856745412, // War Mantis
857264972, // Scavenger Suit
863007481, // Farseeker's March
867963905, // Hardcase Brawlers
868799838, // Renegade Helm
871442456, // Refugee Boots
877723168, // Harmonic Scavenger
881194063, // Prophet Snow
897275209, // The Outlander's Heart
897335593, // Kinetic Siphon
905249529, // Shadow Specter
911039437, // Refugee Gloves
930759851, // Concussive Dampener
933345182, // Fieldplate Type 10
965934024, // Firepower
995248967, // Makeshift Suit
1012254326, // The Outlander's Steps
1014677029, // Memory of Cayde
1017385934, // Void Dexterity
1019574576, // Unflinching Solar Aim
1022126988, // Baseline Mark
1036557198, // Hands-On
1044888195, // Utility Kickstart
1045948748, // Mythos Hack 4.1
1048498953, // Bond of the Raven Shard
1070180272, // Hardcase Helm
1086997255, // Solar Siphon
1103878128, // Harmonic Reserves
1118428792, // Unflinching Stasis Aim
1118437892, // War Mantis
1124184622, // Minor Recovery Mod
1139671158, // Melee Kickstart
1153260021, // Impact Induction
1169595348, // Mythos Hack 4.1
1176372075, // Stasis Resistance
1208761894, // Empowered Finish
1210012576, // Void Siphon
1255614814, // Font of Focus
1256569366, // Raven Shard
1279721672, // Fortress Field
1300106409, // Prophet Snow
1305848463, // Strand Scavenger
1328755281, // Farseeker's Casque
1331205087, // Cosmic Wind III
1360445272, // Firebreak Field
1365739620, // Mythos Hack 4.1
1365979278, // Legion-Bane
1378545975, // Refugee Helm
1443091319, // Firebreak Field
1452147980, // Makeshift Suit
1455694321, // Prophet Snow
1473385934, // Mark of the Golden Citadel
1479532637, // The Outlander's Cover
1479892134, // War Mantis
1484009400, // RPC Valiant
1486292360, // Chiron's Cure
1488618333, // Chiron's Cure
1500704923, // Prophet Snow
1501094193, // Strand Weapon Surge
1503713660, // Stagnatious Rebuke
1512570524, // Hardcase Stompers
1556652797, // The Outlander's Grip
1561736585, // Kinetic Dexterity
1578478684, // Refugee Gloves
1581838479, // Refugee Boots
1604394872, // Dynamo
1611221278, // Prophet Snow
1616317796, // Prophet Snow
1627901452, // Stacks on Stacks
1630079134, // Bond of Forgotten Wars
1658512403, // Mythos Hack 4.1
1665016007, // Primal Siege Type 1
1672155562, // Font of Restoration
1691784182, // Mythos Hack 4.1
1701236611, // The Outlander's Heart
1702273159, // Harmonic Loader
1709236482, // Heavy Handed
1715842350, // Generalist Shell
1736993473, // Legion-Bane
1763607626, // Strength Mod
1775818231, // Legion-Bane
1783952505, // Time Dilation
1784774885, // Vector Home
1801153435, // Stasis Targeting
1824298413, // War Mantis
1848999098, // Bond of Symmetry
1862164825, // War Mantis Cloak
1866564759, // Intellect Mod
1872887954, // Atonement Tau
1891463783, // Harmonic Targeting
1901221009, // Font of Agility
1912568536, // Primal Siege Type 1
1915498345, // Cloak of Retelling
1924584408, // Grenade Kickstart
1933944659, // Hardcase Helm
1965476837, // War Mantis
1981225397, // Shadow Specter
1988790493, // Stagnatious Rebuke
1992338980, // The Outlander's Cover
2002682954, // Vector Home
2031584061, // Momentum Transfer
2049820819, // Vector Home
2065578431, // Shadow Specter
2113881316, // Minor Resilience Mod
2136310244, // Ashes to Assets
2148305277, // Raven Shard
2151724216, // Prophet Snow
2159062493, // Mythos Hack 4.1
2162276668, // Cry Defiance
2165661157, // Baseline Mark
2183384906, // War Mantis
2190967049, // Prophet Snow
2211544324, // The Outlander's Cloak
2214424583, // Kinetic Targeting
2230522771, // War Mantis
2237975061, // Kinetic Loader
2245839670, // Proximity Ward
2246316031, // Arc Weapon Surge
2253044470, // Legion-Bane
2267311547, // Stasis Dexterity
2283894334, // Solar Weapon Surge
2303417969, // Strand Reserves
2305736470, // Kinetic Reserves
2317046938, // Shadow Specter
2318667184, // Kinetic Weapon Surge
2325151798, // Unflinching Kinetic Aim
2329963686, // Mark of Confrontation
2339344379, // Atonement Tau
2343139242, // Bond of Refuge
2362809459, // Hardcase Stompers
2363903643, // Makeshift Suit
2413278875, // Void Reserves
2426340790, // Dreamer's Mark
2436471653, // Arc Scavenger
2441435355, // Prophet Snow
2459075622, // RPC Valiant
2466525328, // RPC Valiant
2476964124, // War Mantis
2479297167, // Harmonic Dexterity
2493161484, // Recovery Mod
2504771764, // Refugee Helm
2519597513, // Minor Intellect Mod
2526922422, // Stasis Weapon Surge
2541019576, // Mark of Confrontation
2562645296, // Melee Damage Resistance
2567295299, // Cosmic Wind III
2568808786, // Resilience Mod
2574857320, // Sly Cloak
2583547635, // Cry Defiance
2626766308, // Mark of the Longest Line
2634786903, // Void Holster
2640935765, // Memory of Cayde
2644553610, // Renegade Hood
2689896341, // Mythos Hack 4.1
2739875972, // RPC Valiant
2742930797, // Fatum Praevaricator
2745108287, // War Mantis
2771425787, // Font of Vigor
2788997987, // Void Resistance
2794359402, // Arc Dexterity
2801811288, // Stasis Holster
2803009638, // Cry Defiance
2803481901, // RPC Valiant
2805854721, // Strand Holster
2813695893, // Fatum Praevaricator
2814965254, // Aspirant Boots
2815743359, // Legion-Bane
2815817957, // Void Scavenger
2822491218, // Atonement Tau
2825160682, // RPC Valiant
2833813592, // Bond of Chiron
2854973517, // Farseeker's Casque
2871824910, // Mythos Hack 4.1
2880545163, // Black Shield Mark
2886651369, // Renegade Plate
2888195476, // Void Targeting
2893448006, // Farseeker's March
2930768301, // Wastelander Wraps
2937068650, // Chiron's Cure
2943629439, // Chiron's Cure
2959986506, // Prophet Snow
2982306509, // Power Preservation
2983961673, // Primal Siege Type 1
2985655620, // Refugee Vest
2994740249, // RPC Valiant
2996369932, // Elemental Charge
3007889693, // RPC Valiant
3013778406, // Strand Targeting
3035240099, // Shadow Specter
3046678542, // Arc Loader
3047946307, // Shield Break Charge
3061532064, // Farseeker's Intuition
3075302157, // Font of Endurance
3080409700, // Bond of Forgotten Wars
3102366928, // Atonement Tau
3121104079, // Rite of Refusal
3159474701, // Aspirant Helm
3160437036, // Shadow Specter
3163241201, // Primal Siege Type 1
3164547673, // Atonement Tau
3174394351, // The Outlander's Grip
3174771856, // Stasis Scavenger
3181984586, // Charged Up
3183585337, // Legion-Bane
3184690956, // Absolution
3188328909, // Stasis Siphon
3212340413, // War Mantis
3224649746, // Void Loader
3238424670, // Memory of Cayde Mark
3245543337, // Bolstering Detonation
3260546749, // Cosmic Wind
3264653916, // Mythos Hack 4.1
3276278122, // Kinetic Holster
3279257734, // Strand Siphon
3294892432, // Stasis Reserves
3302420523, // Hardcase Brawlers
3309120116, // Shadow Specter
3310450277, // Scavenger Suit
3313352164, // Cosmic Wind
3349439959, // Farseeker's Reach
3352069677, // Kit Fox 1.1
3382396922, // Primal Siege Type 1
3391214896, // Atonement Tau
3403897789, // Vector Home
3419425578, // Atonement Tau
3437155610, // War Mantis Cloak
3438103366, // Black Shield Mark
3456147612, // RPC Valiant
3456250548, // Stasis Resistance
3461249873, // Font of Wisdom
3465323600, // Legion-Bane
3468148580, // Aspirant Robes
3483602905, // Mark of Inquisition
3507639356, // Farseeker's Reach
3508205736, // Fatum Praevaricator
3519241547, // Fortress Field
3523134386, // Firebreak Field
3524846593, // Atonement Tau
3539253011, // Arc Resistance
3544711340, // Memory of Cayde Mark
3544884935, // Hood of Tallies
3554672786, // Memory of Cayde Cloak
3556023425, // Scavenger Cloak
3573886331, // Bond of Chiron
3585730968, // Shadow Specter
3598972737, // Unflinching Strand Aim
3639035739, // Mechanik 1.2
3643144047, // Wastelander Boots
3650925928, // Atgeir 2T1
3656549306, // Legion-Bane
3657186535, // Focusing Strike
3675553168, // Solar Holster
3693917763, // Mark of the Fire
3725709067, // Chiron's Cure
3748997649, // The Outlander's Steps
3763392098, // Hardcase Brawlers
3775800797, // Special Ammo Finder
3790903614, // Mechanik 2.1
3791691774, // Orbs of Restoration
3798468567, // Arc Holster
3808902618, // Mobility Mod
3812037372, // Aspirant Gloves
3846931924, // Solar Resistance
3847471926, // Arc Siphon
3867725217, // Legion-Bane
3877365781, // Kit Fox 1.4
3880804895, // The Outlander's Steps
3885104741, // Hardcase Battleplate
3887037435, // Unflinching Void Aim
3896141096, // Discipline Mod
3904524734, // The Outlander's Cover
3914973263, // Void Weapon Surge
3922069396, // The Outlander's Heart
3958133156, // Farseeker's Intuition
3962776002, // Hardcase Helm
3967705743, // Renegade Gauntlets
3968319087, // Legion-Bane
3979300428, // Strand Dexterity
4012302343, // Bond of Forgotten Wars
4035217656, // Atonement Tau
4052950089, // Shadow Specter
4062934448, // Primal Siege Type 1
4069941456, // Legion-Bane
4091127092, // Scavenger Suit
4100043028, // Wastelander Mask
4133705268, // Raven Shard
4135938411, // Last City Shell (Damaged)
4149682173, // Reaper
4155348771, // War Mantis
4166795065, // Primal Siege Type 1
4174470997, // Mark of Inquisition
4177795589, // Chiron's Cure
4179002916, // Mechanik 1.1
4195519897, // Refugee Cloak
4200817316, // Mark of the Renegade
4230626646, // Shadow Specter
4248632159, // Frumious Mask
4267244538, // Distribution
4267370571, // Chiron's Cure
4281850920, // Farseeker's Reach
4283953067, // Arc Reserves
4288395850, // Cloak of Retelling
],
cos: [
17280095, // Shadow's Strides
256904954, // Shadow's Grips
309687341, // Shadow's Greaves
325125949, // Shadow's Helm
560455272, // Penumbral Mark
612065993, // Penumbral Mark
874272413, // Shadow's Robes
974648224, // Shadow's Boots
1434870610, // Shadow's Helm
1457195686, // Shadow's Gloves
1481751647, // Shadow's Mind
1862963733, // Shadow's Plate
1901223867, // Shadow's Gauntlets
1934647691, // Shadow's Mask
1937834292, // Shadow's Strides
1946621757, // Shadow's Grips
1999427172, // Shadow's Mask
2023695690, // Shadow's Robes
2153222031, // Shadow's Gloves
2194479195, // Penumbral Bond
2765688378, // Penumbral Cloak
2769298993, // Shadow's Boots
3082625196, // Shadow's Gauntlets
3108321700, // Penumbral Bond
3349283422, // Shadow's Mind
3483984579, // Shadow's Vest
3517729518, // Shadow's Vest
3518193943, // Penumbral Cloak
3759659288, // Shadow's Plate
4152814806, // Shadow's Greaves
],
crownofsorrow: [
17280095, // Shadow's Strides
256904954, // Shadow's Grips
309687341, // Shadow's Greaves
325125949, // Shadow's Helm
560455272, // Penumbral Mark
612065993, // Penumbral Mark
874272413, // Shadow's Robes
974648224, // Shadow's Boots
1434870610, // Shadow's Helm
1457195686, // Shadow's Gloves
1481751647, // Shadow's Mind
1862963733, // Shadow's Plate
1901223867, // Shadow's Gauntlets
1934647691, // Shadow's Mask
1937834292, // Shadow's Strides
1946621757, // Shadow's Grips
1999427172, // Shadow's Mask
2023695690, // Shadow's Robes
2153222031, // Shadow's Gloves
2194479195, // Penumbral Bond
2765688378, // Penumbral Cloak
2769298993, // Shadow's Boots
3082625196, // Shadow's Gauntlets
3108321700, // Penumbral Bond
3349283422, // Shadow's Mind
3483984579, // Shadow's Vest
3517729518, // Shadow's Vest
3518193943, // Penumbral Cloak
3759659288, // Shadow's Plate
4152814806, // Shadow's Greaves
],
crucible: [
85800627, // Ankaa Seeker IV
98331691, // Binary Phoenix Mark
120859138, // Phoenix Strife Type 0
185853176, // Wing Discipline
252414402, // Swordflight 4.1
283188616, // Wing Contender
290136582, // Wing Theorem
315615761, // Ankaa Seeker IV
327530279, // Wing Theorem
328902054, // Swordflight 4.1
356269375, // Wing Theorem
388771599, // Phoenix Strife Type 0
419812559, // Ankaa Seeker IV
438224459, // Wing Discipline
449878234, // Phoenix Strife Type 0
468899627, // Binary Phoenix Mark
494475253, // Ossuary Boots
530558102, // Phoenix Strife Type 0
628604416, // Ossuary Bond
631191162, // Ossuary Cover
636679949, // Ankaa Seeker IV
657400178, // Swordflight 4.1
670877864, // Binary Phoenix Mark
727838174, // Swordflight 4.1
744199039, // Wing Contender
761953100, // Ankaa Seeker IV
820446170, // Phoenix Strife Type 0
849529384, // Phoenix Strife Type 0
874101646, // Wing Theorem
876608500, // Ankaa Seeker IV
920187221, // Wing Discipline
929917162, // Wing Theorem
944242985, // Ankaa Seeker IV
979782821, // Hinterland Cloak
987343638, // Ankaa Seeker IV
997903134, // Wing Theorem
1036467370, // Wing Theorem
1062166003, // Wing Contender
1063904165, // Wing Discipline
1069887756, // Wing Contender
1071350799, // Binary Phoenix Cloak
1084033161, // Wing Contender
1127237110, // Wing Contender
1167444103, // Biosphere Explorer Mark
1245115841, // Wing Theorem
1294217731, // Binary Phoenix Cloak
1307478991, // Ankaa Seeker IV
1330581478, // Phoenix Strife Type 0
1333087155, // Ankaa Seeker IV
1381742107, // Biosphere Explorer Helm
1464207979, // Wing Discipline
1467590642, // Binary Phoenix Bond
1484937602, // Phoenix Strife Type 0
1497354980, // Biosphere Explorer Greaves
1548928853, // Phoenix Strife Type 0
1571781304, // Swordflight 4.1
1648675919, // Binary Phoenix Mark
1654427223, // Swordflight 4.1
1658896287, // Binary Phoenix Cloak
1673285051, // Wing Theorem
1716643851, // Wing Contender
1722623780, // Wing Discipline
1742680797, // Binary Phoenix Mark
1742940528, // Phoenix Strife Type 0
1764274932, // Ankaa Seeker IV
1801625827, // Swordflight 4.1
1828358334, // Swordflight 4.1
1830829330, // Swordflight 4.1
1837817086, // Biosphere Explorer Plate
1838158578, // Binary Phoenix Bond
1838273186, // Wing Contender
1852468615, // Ankaa Seeker IV
1904811766, // Swordflight 4.1
1929596421, // Ankaa Seeker IV
2048762125, // Ossuary Robes
2070517134, // Wing Contender
2124666626, // Wing Discipline
2191401041, // Phoenix Strife Type 0
2191437287, // Ankaa Seeker IV
2206581692, // Phoenix Strife Type 0
2231762285, // Phoenix Strife Type 0
2247740696, // Swordflight 4.1
2291226602, // Binary Phoenix Bond
2293476915, // Swordflight 4.1
2296560252, // Swordflight 4.1
2296691422, // Swordflight 4.1
2323865727, // Wing Theorem
2331227463, // Wing Contender
2339694345, // Hinterland Cowl
2402428483, // Ossuary Gloves
2415711886, // Wing Contender
2426070307, // Binary Phoenix Cloak
2466453881, // Wing Discipline
2473130418, // Swordflight 4.1
2496309431, // Wing Discipline
2511045676, // Binary Phoenix Bond
2525395257, // Wing Theorem
2543903638, // Phoenix Strife Type 0
2555965565, // Wing Discipline
2627852659, // Phoenix Strife Type 0
2670393359, // Phoenix Strife Type 0
2718495762, // Swordflight 4.1
2727890395, // Ankaa Seeker IV
2754844215, // Swordflight 4.1
2775298636, // Ankaa Seeker IV
2815422368, // Phoenix Strife Type 0
2841023690, // Biosphere Explorer Gauntlets
3089908066, // Wing Discipline
3098328572, // The Recluse
3098458331, // Ankaa Seeker IV
3119528729, // Wing Contender
3121010362, // Hinterland Strides
3140634552, // Swordflight 4.1
3148195144, // Hinterland Vest
3211001969, // Wing Contender
3223280471, // Swordflight 4.1
3298826188, // Swordflight 4.1
3313736739, // Binary Phoenix Cloak
3315265682, // Phoenix Strife Type 0
3483546829, // Wing Discipline
3522021318, // Wing Discipline
3538513130, // Binary Phoenix Bond
3724026171, // Wing Theorem
3756286064, // Phoenix Strife Type 0
3772194440, // Wing Contender
3781722107, // Phoenix Strife Type 0
3818803676, // Wing Discipline
3839561204, // Wing Theorem
4043189888, // Hinterland Grips
4043921923, // The Mountaintop
4043980813, // Ankaa Seeker IV
4123918087, // Wing Contender
4134090375, // Ankaa Seeker IV
4136212668, // Wing Discipline
4144133120, // Wing Theorem
4211218181, // Ankaa Seeker IV
4264096388, // Wing Theorem
],
deluxe: [
1952218242, // Sequence Flourish
2683682447, // Traitor's Fate
],
do: [
66235782, // Anti-Extinction Grasps
132368575, // Anti-Extinction Mask
387100392, // Anti-Extinction Plate
1978760489, // Anti-Extinction Helm
2089197765, // Stella Incognita Mark
2760076378, // Anti-Extinction Greaves
2873960175, // Anti-Extinction Robes
3146241834, // Anti-Extinction Vest
3299588760, // Anti-Extinction Hood
3763392361, // Anti-Extinction Gloves
3783059515, // Stella Incognita Cloak
3920232320, // Anti-Extinction Legs
4055334203, // Anti-Extinction Boots
4065136800, // Anti-Extinction Gauntlets
4121118846, // Stella Incognita Bond
],
dreaming: [
99549082, // Reverie Dawn Helm
185695659, // Reverie Dawn Hood
188778964, // Reverie Dawn Boots
344548395, // Reverie Dawn Strides
871900124, // Retold Tale
934704429, // Reverie Dawn Plate
998096007, // Reverie Dawn Hood
1452333832, // Reverie Dawn Boots
1593474975, // Reverie Dawn Hauberk
1705856569, // Reverie Dawn Grasps
1903023095, // Reverie Dawn Grasps
1928769139, // Reverie Dawn Bond
1980768298, // Reverie Dawn Mark
2336820707, // Reverie Dawn Gauntlets
2467635521, // Reverie Dawn Hauberk
2503434573, // Reverie Dawn Gauntlets
2704876322, // Reverie Dawn Tabard
2761343386, // Reverie Dawn Gloves
2824453288, // Reverie Dawn Casque
2859583726, // Reverie Dawn Tabard
2889063206, // Reverie Dawn Casque
3174233615, // Reverie Dawn Greaves
3239662350, // Reverie Dawn Gloves
3250140572, // Reverie Dawn Cloak
3306564654, // Reverie Dawn Cloak
3343583008, // Reverie Dawn Mark
3602032567, // Reverie Dawn Bond
3711557785, // Reverie Dawn Strides
4070309619, // Reverie Dawn Plate
4097166900, // Reverie Dawn Helm
4257800469, // Reverie Dawn Greaves
],
drifter: [
9767416, // Ancient Apocalypse Bond
94425673, // Ancient Apocalypse Gloves
127018032, // Ancient Apocalypse Grips
191247558, // Ancient Apocalypse Plate
191535001, // Ancient Apocalypse Greaves
230878649, // Ancient Apocalypse Mask
386367515, // Ancient Apocalypse Boots
392058749, // Ancient Apocalypse Boots
485653258, // Ancient Apocalypse Strides
494475253, // Ossuary Boots
509238959, // Ancient Apocalypse Mark
628604416, // Ossuary Bond
629787707, // Ancient Apocalypse Mask
631191162, // Ossuary Cover
759348512, // Ancient Apocalypse Mask
787909455, // Ancient Apocalypse Robes
887818405, // Ancient Apocalypse Robes
978447246, // Ancient Apocalypse Gauntlets
979782821, // Hinterland Cloak
1013137701, // Ancient Apocalypse Hood
1167444103, // Biosphere Explorer Mark
1169857924, // Ancient Apocalypse Strides
1188039652, // Ancient Apocalypse Gauntlets
1193646249, // Ancient Apocalypse Boots
1236746902, // Ancient Apocalypse Hood
1237661249, // Ancient Apocalypse Plate
1356064950, // Ancient Apocalypse Grips
1359908066, // Ancient Apocalypse Gauntlets
1381742107, // Biosphere Explorer Helm
1488486721, // Ancient Apocalypse Bond
1497354980, // Biosphere Explorer Greaves
1548620661, // Ancient Apocalypse Cloak
1741396519, // Ancient Apocalypse Vest
1752237812, // Ancient Apocalypse Gloves
1837817086, // Biosphere Explorer Plate
2020166300, // Ancient Apocalypse Mark
2039976446, // Ancient Apocalypse Boots
2048762125, // Ossuary Robes
2088829612, // Ancient Apocalypse Bond
2130645994, // Ancient Apocalypse Grips
2339694345, // Hinterland Cowl
2402428483, // Ossuary Gloves
2440840551, // Ancient Apocalypse Gloves
2451538755, // Ancient Apocalypse Strides
2459422430, // Ancient Apocalypse Bond
2506514251, // Ancient Apocalypse Cloak
2512196373, // Ancient Apocalypse Helm
2518527196, // Ancient Apocalypse Plate
2568447248, // Ancient Apocalypse Strides
2620389105, // Ancient Apocalypse Grips
2677967607, // Ancient Apocalypse Gauntlets
2694124942, // Ancient Apocalypse Greaves
2728668760, // Ancient Apocalypse Vest
2841023690, // Biosphere Explorer Gauntlets
2858060922, // Ancient Apocalypse Vest
2881248566, // Ancient Apocalypse Cloak
3031848199, // Ancient Apocalypse Helm
3121010362, // Hinterland Strides
3148195144, // Hinterland Vest
3184912423, // Ancient Apocalypse Cloak
3339632627, // Ancient Apocalypse Mark
3404053788, // Ancient Apocalypse Greaves
3486086024, // Ancient Apocalypse Greaves
3537476911, // Ancient Apocalypse Mask
3550729740, // Ancient Apocalypse Robes
3595268459, // Ancient Apocalypse Gloves
3664007718, // Ancient Apocalypse Helm
3804360785, // Ancient Apocalypse Mark
3825427923, // Ancient Apocalypse Helm
3855285278, // Ancient Apocalypse Vest
3925589496, // Ancient Apocalypse Hood
4043189888, // Hinterland Grips
4115739810, // Ancient Apocalypse Plate
4188366993, // Ancient Apocalypse Robes
4255727106, // Ancient Apocalypse Hood
],
duality: [
145651147, // Deep Explorer Vest
420895300, // Deep Explorer Mark
1148597205, // Deep Explorer Grasps
2057955626, // Deep Explorer Vestments
2499351855, // Deep Explorer Gauntlets
2649394513, // Deep Explorer Greaves
2694773307, // Deep Explorer Bond
2724719415, // Deep Explorer Strides
2797334754, // Deep Explorer Cloak
2819810688, // Deep Explorer Boots
2935559305, // Deep Explorer Plate
3260781446, // Deep Explorer Gloves
3270955774, // Deep Explorer Helmet
3326914239, // Deep Explorer Hood
4047213660, // Deep Explorer Mask
],
dungeon: [
51786498, // Vest of the Taken King
145651147, // Deep Explorer Vest
286271818, // Twisting Echo Cloak
399065241, // Descending Echo Greaves
420895300, // Deep Explorer Mark
436695703, // TM-Cogburn Custom Plate
498918879, // TM-Earp Custom Grips
557092665, // Dark Age Cloak
587312237, // Twisting Echo Grips
632989816, // Dark Age Gauntlets
638836294, // Plate of the Taken King
708921139, // TM-Cogburn Custom Legguards
767306222, // Grasps of the Taken King
806004493, // Dark Age Gloves
833653807, // Twisting Echo Strides
837865641, // Vestment of the Taken King
851401651, // Dark Age Overcoat
956827695, // Mark of the Taken King
1148597205, // Deep Explorer Grasps
1349399252, // TM-Earp Custom Cloaked Stetson
1476803535, // Dark Age Legbraces
1664757090, // Gauntlets of the Taken King
1756483796, // Twisting Echo Mask
1913823311, // Gloves of the Taken King
1933599476, // Dark Age Visor
1951355667, // Twisting Echo Vest
2057955626, // Deep Explorer Vestments
2244604734, // Corrupting Echo Gloves
2341879253, // TM-Moss Custom Bond
2426502022, // Dark Age Strides
2488323569, // Boots of the Taken King
2499351855, // Deep Explorer Gauntlets
2565015142, // TM-Cogburn Custom Mark
2618168932, // Bond of the Taken King
2643850526, // Hood of the Taken King
2649394513, // Deep Explorer Greaves
2662590925, // Dark Age Mark
2663987096, // Corrupting Echo Boots
2694773307, // Deep Explorer Bond
2724719415, // Deep Explorer Strides
2771011469, // Dark Age Mask
2797334754, // Deep Explorer Cloak
2819810688, // Deep Explorer Boots
2820604007, // Mask of the Taken King
2850384360, // Strides of the Taken King
2885497847, // Descending Echo Gauntlets
2935559305, // Deep Explorer Plate
2963224754, // Dark Age Sabatons
3048458482, // Corrupting Echo Robes
3056827626, // Dark Age Bond
3171090615, // Corrupting Echo Cover
3260781446, // Deep Explorer Gloves
3267969345, // Descending Echo Cage
3270955774, // Deep Explorer Helmet
3326914239, // Deep Explorer Hood
3344225390, // TM-Earp Custom Hood
3423574140, // Dark Age Grips
3511740432, // TM-Moss Custom Gloves
3570749779, // Cloak of the Taken King
3683772388, // Dark Age Harness
3685276035, // Corrupting Echo Bond
3708902812, // Greaves of the Taken King
3715136417, // TM-Earp Custom Chaps
3735435664, // Dark Age Chestrig
3870375786, // TM-Moss Custom Pants
3871537958, // Descending Echo Helm
3933500353, // TM-Cogburn Custom Gauntlets
3946384952, // TM-Moss Custom Duster
4039955353, // TM-Moss Custom Hat
4047213660, // Deep Explorer Mask
4050474396, // Descending Echo Mark
4090037601, // Dark Age Helm
4097972038, // A Sudden Death
4130276947, // Helm of the Taken King
4177293424, // TM-Cogburn Custom Cover
4288623897, // TM-Earp Custom Vest
],
edz: [
10307688, // Wildwood Plate
11686458, // Orobas Vectura Cloak
320310249, // Orobas Vectura Bond
872284448, // Wildwood Gauntlets
1304122208, // Wildwood Bond
1664741411, // Wildwood Gloves
1701005143, // Gearhead Gloves
1712405061, // Wildwood Mark
2426340788, // Orobas Vectura Mark
2486041712, // Gearhead Gauntlets
2724176749, // Wildwood Robes
2729740202, // Wildwood Vest
3080875433, // Wildwood Helm
3366557883, // Wildwood Cloak
3466255616, // Wildwood Strides
3706457514, // Gearhead Grips
3764013786, // Wildwood Cover
3862191322, // Wildwood Greaves
3907226374, // Wildwood Grips
3973359167, // Wildwood Mask
4051755349, // Wildwood Boots
],
eow: [
239489770, // Bond of Sekris
253344425, // Mask of Feltroc
340118991, // Boots of Sekris
383742277, // Cloak of Feltroc
588627781, // Bond of Sekris
666883012, // Gauntlets of Nohr
796914932, // Mask of Sekris
845536715, // Vest of Feltroc
1034660314, // Boots of Feltroc
1242139836, // Plate of Nohr
1256688732, // Mask of Feltroc
1756558505, // Mask of Sekris
1991039861, // Mask of Nohr
2329031091, // Robes of Sekris
2339720736, // Grips of Feltroc
2369496221, // Plate of Nohr
2537874394, // Boots of Sekris
2597529070, // Greaves of Nohr
2653039573, // Grips of Feltroc
2976612200, // Vest of Feltroc
2994007601, // Mark of Nohr
3099636805, // Greaves of Nohr
3181497704, // Robes of Sekris
3359121706, // Mask of Nohr
3364682867, // Gauntlets of Nohr
3497220322, // Cloak of Feltroc
3831484112, // Mark of Nohr
3842934816, // Wraps of Sekris
3964287245, // Wraps of Sekris
4229161783, // Boots of Feltroc
],
events: [
116784191, // Solstice Boots (Renewed)
140842223, // Solstice Mask (Drained)
143299650, // Solstice Plate (Renewed)
153144587, // Solstice Cloak (Drained)
179654396, // Sublime Vest
226436555, // Solstice Mask (Renewed)
231432261, // Solstice Bond (Resplendent)
234970842, // Solstice Boots (Resplendent)
250513201, // Solstice Greaves (Resplendent)
327680457, // Sublime Boots
335763433, // Solstice Plate (Resplendent)
346065606, // Solstice Cloak (Rekindled)
350054538, // Sublime Strides
391889347, // Solstice Robes (Drained)
419435523, // Inaugural Revelry Grips
425681240, // Acosmic
450844637, // Solstice Robes (Majestic)
464814870, // Sublime Greaves
492834021, // Inaugural Revelry Hood
495940989, // Avalanche
503145555, // Sublime Gloves
518930465, // Solstice Grasps (Rekindled)
531005896, // Solstice Cloak (Resplendent)
540653483, // Solstice Vest (Scorched)
574167778, // Solstice Gauntlets (Drained)
574790717, // Solstice Gloves (Drained)
601948197, // Zephyr
627596132, // Solstice Hood (Drained)
677939288, // Solstice Helm (Scorched)
689294985, // Jurassic Green
721146704, // Solstice Mask (Rekindled)
784499738, // Solstice Bond (Renewed)
807693916, // Sublime Hood
830497630, // Solstice Helm (Resplendent)
929148730, // Solstice Vest (Drained)
967650555, // Solstice Greaves (Scorched)
1056992393, // Inaugural Revelry Plate
1123433952, // Stay Frosty
1141639721, // Solstice Gauntlets (Scorched)
1183116657, // Glacioclasm
1229961870, // Solstice Vest (Renewed)
1273510836, // Inaugural Revelry Wraps
1280894514, // Mechabre
1288683596, // Solstice Plate (Majestic)
1341471164, // Solstice Mask (Scorched)
1361620030, // Solstice Mark (Scorched)
1365491398, // Solstice Plate (Drained)
1376763596, // Inaugural Revelry Robes
1450633717, // Solstice Vest (Resplendent)
1502692899, // Solstice Robes (Renewed)
1510405477, // Solstice Helm (Majestic)
1540031264, // Solstice Gloves (Resplendent)
1548056407, // Solstice Cloak (Renewed)
1556831535, // Inaugural Revelry Gauntlets
1561249470, // Inaugural Revelry Boots
1589318419, // Solstice Strides (Rekindled)
1609141880, // Sublime Plate
1649929380, // Solstice Mark (Resplendent)
1651275175, // Solstice Helm (Renewed)
1683482799, // Solstice Mark (Drained)
1706764072, // Quilted Winter Mark
1706874193, // Inaugural Revelry Greaves
1752648948, // Sublime Sleeves
1775707016, // Solstice Grasps (Majestic)
1812385587, // Festive Winter Bond
1845372864, // Albedo Wing