-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuestList.lua
More file actions
6688 lines (6688 loc) · 230 KB
/
Copy pathQuestList.lua
File metadata and controls
6688 lines (6688 loc) · 230 KB
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
-- QuestList : Title - questIDs
QuestTranslator_QuestList = {
["10 Tickets - Last Month's Mutton"]="7935",
["12 Tickets - Lesser Darkmoon Prize"]="7932",
["1200 Tickets - Amulet of the Darkmoon"]="7981",
["1200 Tickets - Orb of the Darkmoon"]="7940",
["40 Tickets - Greater Darkmoon Prize"]="7933",
["40 Tickets - Schematic: Steam Tonk Controller"]="9249",
["5 Tickets - Darkmoon Flower"]="7930",
["5 Tickets - Minor Darkmoon Prize"]="7931",
["50 Tickets - Darkmoon Storage Box"]="7934",
["50 Tickets - Last Year's Mutton"]="7936",
["A Baying of Gnolls"]="124",
["A Bear of an Appetite"]="12279",
["A Better Ingredient"]="9053",
["A Bijou for Zanza"]="8240",
["A Binding Contract"]="7604",
["A Blade Fit For A Champion"]="13603,13666,13673,13741,13746,13752,13757,13762,13768,13773,13778,13783",
["A Blue Light Bargain"]="7652",
["A Boaring Time for Grulloc"]="10721",
["A Bot in Mammoth's Clothing"]="11718",
["A Broken Trap"]="1193",
["A Bubbling Cauldron"]="9029",
["A Bump in the Road"]="1175",
["A Bundle of Hides"]="6361",
["A Bundle of Trouble"]="5545",
["A Burden of Souls"]="10864",
["A Call to Arms: The Plaguelands!"]="5066,5090,5091,5093,5094,5095,10373,10374",
["A Carefully Wrapped Present"]="8744",
["A Carver and a Croaker"]="11476",
["A Cautious Return"]="14409",
["A Certain Prisoner"]="12908",
["A Champion Rises"]="13702,13732,13733,13734,13735,13736,13737,13738,13739,13740",
["A Change of Scenery"]="12921",
["A Charitable Donation"]="11545",
["A Chip Off the Ulduar Block"]="13681",
["A Cleansing Light"]="10420",
["A Cleansing Song"]="12735",
["A Cold Front Approaches"]="13070",
["A Colleague's Aid"]="9631",
["A Collection of Heads"]="8201",
["A Colossal Threat"]="12993",
["A Convincing Disguise"]="10197",
["A Courageous Strike"]="11641",
["A Crew Under Fire"]="3382",
["A Crumpled Up Note"]="4264",
["A Cry For Help"]="9528",
["A Cry For Vengeance!"]="12738",
["A Crystalforged Darkrune"]="11060",
["A Cure for Zahlia"]="10020",
["A Curse Upon Both of Your Clans!"]="10544",
["A Damp, Dark Place"]="9788",
["A Dark Influence"]="12220",
["A Dark Pact"]="10380",
["A Dark Threat Looms"]="161,199,250,274,278,280,283",
["A Date with Dorgok"]="10795",
["A Daughter's Love"]="231",
["A Debilitating Sickness"]="9442",
["A Defector"]="10202",
["A Delicate Touch"]="12820",
["A Demonic Presence"]="9844",
["A Demonstration of Loyalty"]="9725",
["A Deserter"]="11604",
["A Desperate Alliance"]="12753,12772,12775,12777,12808",
["A Different Approach"]="9431",
["A Dip in the Moonwell"]="9433",
["A Diplomatic Mission"]="12141",
["A Dire Situation"]="10506",
["A Discreet Inquiry"]="10372",
["A Distraction for Akama"]="10985,13429",
["A Disturbance In The West"]="12439",
["A Disturbing Development"]="11136",
["A Donation of Mageweave"]="7794,7799,7804,7809,7817,7822,7831,7835,10356,10361",
["A Donation of Runecloth"]="7795,7800,7805,7811,7818,7823,7824,7836,10357,10362",
["A Donation of Silk"]="7793,7798,7803,7808,7814,7821,7827,7834,10354,10360",
["A Donation of Wool"]="7791,7792,7802,7807,7813,7820,7826,7833,10352,10359",
["A Dwarf and His Tools"]="719",
["A Fair Trade"]="7341",
["A Fall From Grace"]="12274",
["A Fate Worse Than Death"]="10185",
["A Father's Duty"]="11061",
["A Father's Words"]="11620",
["A Favor for Evershine"]="319",
["A Favorite Treat"]="9624",
["A Fel Whip For Gahk"]="11079",
["A Festive Gift"]="8803",
["A Final Blow"]="5242",
["A Fine Mess"]="2904",
["A Fishy Peril"]="40",
["A Fistful of Slivers"]="8336",
["A Flawless Plan"]="12823",
["A Free Lunch"]="129",
["A Friend in Need"]="3519",
["A Friend in the Frontlines"]="11554",
["A Friendly Chat..."]="24657",
["A Future Task"]="2964,2968",
["A Gaily Wrapped Present"]="8768",
["A Gallon of Blood"]="7385",
["A Gently Shaken Gift"]="8767,8788",
["A Gesture of Commitment"]="9723",
["A Gesture of Goodwill"]="9470",
["A Ghost in the Machine"]="10642",
["A Gift for the King of Stormwind"]="24597",
["A Gift for the Lord of Ironforge"]="24609",
["A Gift for Voren'thal"]="10508",
["A Gnome's Assistance"]="3941",
["A Gnome's Respite"]="1071",
["A Good Friend"]="4495",
["A Grave Situation"]="3913",
["A Great Storm Approaches"]="12912",
["A Grim Connection"]="11143",
["A Grim Discovery"]="2974,2976",
["A Grim Task"]="304",
["A Grunt's Work..."]="10702",
["A Handful of Magic Dust"]="10048,10049",
["A Haunted History"]="10624",
["A Head Full of Ivory"]="9914",
["A Heap of Ethereals"]="10262",
["A Hearty Thanks!"]="9612",
["A Helping Hand"]="9533",
["A Hero Is Needed"]="10914",
["A Hero Remains"]="13072",
["A Hero's Burden"]="12581",
["A Hero's Headgear"]="12758",
["A Hero's Reward"]="7486",
["A Hero's Welcome"]="4266",
["A Host of Evil"]="6626",
["A Humble Offering"]="9248",
["A Humble Task"]="752,753",
["A Hunter's Boast"]="257",
["A Hunter's Challenge"]="258",
["A Husband's Last Battle"]="6162",
["A Husband's Revenge"]="530",
["A Job for an Intelligent Man"]="9355",
["A Job for the Multi-Bot"]="26205",
["A Job Undone"]="9899",
["A Job Unfinished..."]="11041",
["A King's Tribute"]="686,689,700",
["A Land Filled with Hatred"]="5536",
["A Leg Up"]="14074,14143",
["A Lesson in Fear"]="11282",
["A Lesson Learned"]="10515",
["A Lesson to Learn"]="27,26",
["A Letter for Home"]="12067,12085",
["A Letter Home"]="12021",
["A Letter Undelivered"]="361",
["A Life Without Regret"]="13266",
["A Light in Dark Places"]="9319,9386",
["A Lingering Suspicion"]="10314",
["A Little Bit of Spice"]="11726",
["A Little Dash of Seasoning"]="9275",
["A Little Help From My Friends"]="4491",
["A Little Help Here? DEPRECATED"]="12087",
["A Little Luck"]="6606",
["A Little Slime Goes a Long Way"]="4512,4513",
["A Lost Master"]="986,993",
["A Magnanimous Benefactor"]="11549",
["A Mammoth Undertaking"]="12607",
["A Map to Where?"]="9550",
["A Matter of Time"]="4971",
["A Meal Served Cold"]="212",
["A Means to an End"]="12240",
["A Meeting With Fate"]="12755",
["A Message to Telaar"]="9792",
["A Minor Substitution"]="12176",
["A Mission of Mercy"]="10970",
["A Mission Statement"]="11864",
["A Monument to the Fallen"]="12976",
["A More Fitting Reward"]="8259",
["A Most Puzzling Circumstance"]="24429",
["A Mysterious Portent"]="10706",
["A Mystifying Vision"]="11042",
["A Name from the Past"]="12160",
["A Necessary Distraction"]="10637,10688",
["A New Beginning"]="13009",
["A New Cloak's Sheen"]="2973",
["A New Ore Sample"]="1153",
["A New Plague"]="367,368,369,492",
["A New Threat"]="170",
["A Noble Brew"]="335,336",
["A Not-So-Modest Proposal"]="10270",
["A Pawn on the Eternal Board"]="8519",
["A Peon's Burden"]="2161",
["A Personal Favor"]="10112",
["A Pilgrim's Plight"]="9376",
["A Pilot's Revenge"]="417",
["A Plague Upon Thee"]="5901,5902,5903,5904,6389,6390",
["A Portable Power Source"]="8925",
["A Possible Link"]="12229,12246",
["A Promising Start"]="10272",
["A Proper Death"]="11675",
["A Proper String"]="7635",
["A Putrid Task"]="404",
["A Question of Gluttony"]="9702",
["A Race Against Time"]="11671",
["A Rare Bean"]="9800",
["A Rare Herb"]="13156,13195",
["A Recipe For Death"]="447,450,451",
["A Refugee's Quandary"]="3361",
["A Reliquary of Purity"]="5527",
["A Restorative Draught"]="9877",
["A Return to Resting"]="11568",
["A Righteous Sermon"]="12321",
["A Rogue's Deal"]="8,590",
["A Rough Ride"]="12536",
["A Rough Start"]="24779",
["A Royal Coup"]="13370",
["A Royal Escort"]="13151",
["A Sacred Burial"]="833",
["A Sample of Slime..."]="4293",
["A Score to Settle"]="11272",
["A Scroll from Mauren"]="1075",
["A Secret Revealed"]="10102",
["A Shabby Disguise"]="11029",
["A Shameful Waste"]="9517",
["A Shifty Merchant"]="8928",
["A Short Fuse"]="13263,13389",
["A Short Incubation"]="3842",
["A Show of Strength"]="12257",
["A Shred of Hope"]="4282",
["A Sign of Hope"]="720,721",
["A Simple Request"]="8233",
["A Simple Robe"]="9488",
["A Sister's Pledge"]="12411",
["A Slow Death"]="11020",
["A Small Start"]="9506",
["A Smokywood Pastures' Thank You!"]="6984,7045",
["A Soldier in Need"]="11789",
["A Solvent Spirit"]="818",
["A Somber Task"]="8473",
["A Sort Of Homecoming"]="12751",
["A Spark of Hope"]="12956",
["A Special Surprise"]="12739,12742,12743,12744,12745,12746,12747,12748,12749,12750",
["A Special Thank You"]="11091",
["A Spirit Ally?"]="9847",
["A Spirit Guide"]="9410",
["A Steak Fit for a Hunter"]="12804",
["A Sticky Situation"]="77",
["A Strange Device"]="12055,12059",
["A Strange Historian"]="5153",
["A Strange One"]="6605",
["A Strange Red Key"]="5202",
["A Strange Request"]="3121",
["A Strange Vision"]="11037",
["A Strange Weapon"]="9401",
["A Study in Power"]="9681",
["A Suitable Test Subject"]="11719",
["A Summons from Lord Solanar"]="9721",
["A Supernatural Device"]="8922,8923",
["A Swift Message"]="6181",
["A Swift Response"]="12310",
["A Tailor-Made Formula"]="11305",
["A Tale of Valor"]="13068",
["A Tangled Skein"]="12555",
["A Task Unfinished"]="1656",
["A Taste of Flame"]="4022,4023,4024",
["A Tauren Among Taunka"]="11977",
["A Tentative Pact"]="12294",
["A Terrible Purpose"]="8287",
["A Thief's Reward"]="9339,9365",
["A Thousand Worlds"]="10973",
["A Threat in Feralas"]="2981",
["A Threat Within"]="783",
["A Ticking Present"]="8769",
["A Time for Heroes"]="11727",
["A Time for Negotiation..."]="10682",
["A Timeworn Coffer"]="12691",
["A Tisket, a Tasket, a Noblegarden Basket"]="13502,13503",
["A Traitor Among Us"]="10367,11473",
["A Trip to the Dark Portal"]="10951,10952",
["A Trip To The Wonderworks"]="13937",
["A Triumph of Gnomish Ingenuity"]="",
["A Troll Among Trolls"]="11165",
["A Troll's Truest Companion"]="24622",
["A Troubled Spirit"]="8417",
["A Troubling Breeze"]="475",
["A Unified Front"]="13126",
["A Valiant Of Darnassus"]="13689",
["A Valiant Of Gnomeregan"]="13688",
["A Valiant Of Ironforge"]="13685",
["A Valiant Of Orgrimmar"]="13691",
["A Valiant Of Sen'jin"]="13693",
["A Valiant Of Silvermoon"]="13696",
["A Valiant Of Stormwind"]="13684",
["A Valiant Of The Exodar"]="13690",
["A Valiant Of Thunder Bluff"]="13694",
["A Valiant Of Undercity"]="13695",
["A Valiant's Field Training"]="13592,13744,13749,13755,13760,13765,13771,13776,13781,13786",
["A Vengeful Fate"]="1102",
["A Visit to Gregan"]="4142",
["A Visit to the Curator"]="11623",
["A Visit to the Doctor"]="13152",
["A Visit To The Wonderworks"]="13938",
["A Visit With The Ancestors"]="10085",
["A Visit With the Greatmother"]="10044",
["A Voice in the Dark"]="13271,13390",
["A Warden of the Alliance"]="171",
["A Warden of the Horde"]="5502",
["A Warm Welcome"]="9728",
["A Warning"]="7621",
["A Warrior's Training"]="1638",
["A Watchful Eye"]="94",
["A Wing and a Prayer"]="13128",
["A Winter Veil Gift"]="11528,13203,13966",
["A Worthy Weapon"]="13600,13669,13674,13742,13747,13753,13758,13763,13769,13774,13779,13784",
["A Yeti of Your Own"]="8798",
["A'dal"]="10210",
["Abandoned Hope"]="4242",
["Abandoned Investigations"]="8891",
["Abandoned Mail"]="12711",
["Abduction"]="11590",
["Aberrations"]="12925",
["Abjurist Belmara"]="10305",
["Above and Beyond"]="5263",
["Absholutely... Thish Will Work!"]="11330",
["Abyssal Contacts"]="8361",
["Abyssal Crests"]="8362",
["Abyssal Scepters"]="8364",
["Abyssal Signets"]="8363",
["Accepting All Eggs"]="11050",
["Aces High!"]="13413,13414",
["Across Transborea"]="11930",
["Adding Injury to Insult"]="12481",
["Additional Materials"]="10664",
["Additional Runecloth"]="7796,7801,7806,7812,7819,7825,7832,7837,10358,10363",
["Administering the Salve"]="9447",
["Adversarial Blood"]="11885",
["Aerial Surveillance"]="12696,13052",
["After the Ambush"]="454",
["Again Into the Great Ossuary"]="7666,7669",
["Again With the Zapped Giants"]="7725",
["Against All Odds"]="10669",
["Against Nifflevar"]="12482",
["Against the Giants"]="13277,13294",
["Against the Hatecrest"]="3130",
["Against the Illidari"]="10668",
["Against the Legion"]="10641",
["Agamaggan's Agility"]="5043",
["Agamaggan's Strength"]="5042",
["Agamand Heirlooms"]="1821",
["Agent of Hydraxis"]="6823",
["Agents of Destruction"]="9518",
["Aggression"]="8334",
["Agitated Spirits of Skysong"]="9804",
["Agmar's Hammer"]="12008",
["Agmond's Fate"]="704",
["Ahune is Here!"]="11696",
["Ahune, the Frost Lord"]="11955",
["Aid for the Wounded"]="24471",
["Aid from the Explorers' League"]="12871",
["Aiding the Outrunners"]="8347",
["Ak'Zeloth"]="809",
["Akama"]="10628",
["Akama's Promise"]="10708",
["Akiris by the Bundle"]="617,623",
["Alas, Andorhal"]="105,211",
["Aldor Faction Test"]="9284",
["Aldor No More"]="10381",
["Algalon"]="13614",
["Alicia's Poem"]="11451",
["Alien Ecology"]="3883",
["Alien Egg"]="4821",
["Alien Predators"]="9634",
["All Along the Watchtowers"]="5097,5098",
["All Clear!"]="10436",
["All Grown Up"]="12835",
["All Hail Roanauk!"]="12140",
["All Hail the Conqueror of Skorn!"]="11250",
["All Is Well That Ends Well"]="13631",
["All That Remains"]="9527",
["All the Other Stuff"]="24475",
["All Things in Good Time"]="13190",
["Allegiance to Cenarion Circle"]="9338",
["Allegiance to the Aldor"]="10551",
["Allegiance to the Horde"]="9627",
["Allegiance to the Old Gods"]="6564,6565",
["Allegiance to the Scryers"]="10552",
["Alliance Champion Marker"]="13700",
["Alliance Relations"]="1431,1432,1433,1436",
["Alliance Tournament Eligibility Marker"]="13686",
["Alliance Trauma"]="6625",
["Ally of the Netherwing"]="10870",
["Ally of the Tauren"]="7362",
["Alpha Worg"]="11324,11326",
["Alterac Valley Graveyards"]="7081",
["Altered Beings"]="880",
["Altruis"]="10640,10689",
["Always Seeking Solvent"]="12434,12446",
["Amani Encroachment"]="8476",
["Amani Invasion"]="9360",
["Ambermill Investigations"]="479",
["Ambush At The Overlook"]="12754",
["Ambushed!"]="11230",
["Amidst the Confusion"]="13173,13174",
["Ammo for Rumbleshot"]="5541",
["Among the Champions"]="13790,13793,13811,13814",
["Amongst the Ruins"]="908,6921",
["Amped for Revolt!"]="13374",
["Ample Inspiration"]="12828",
["Amulet of Secrets"]="722",
["An Aggressive Defense"]="1025",
["An Ally in Lower City"]="11024",
["An Alternative Alternative"]="9473",
["An Ambassador of Evil"]="762",
["An Ambitious Plan"]="9383",
["An Apexis Relic"]="11058",
["An Apprentice's Enchantment"]="695",
["An Artifact From the Past"]="10947",
["An Attack Of Opportunity"]="12700",
["An Audacious Advance"]="9907",
["An Audience with the King"]="396",
["An Audience with the Prince"]="10268",
["An Earnest Proposition"]="8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,10492,10493",
["An Easy Pickup"]="3450",
["An Embarassing Incident"]="12699",
["An End And A Beginning"]="12473",
["An End To All Things..."]="12779",
["An End to the Suffering"]="12647",
["An Enemy in Arthas"]="12040",
["An Exercise in Diplomacy"]="12295",
["An Expedient Ally"]="12074",
["An Experienced Guide"]="12875",
["An Imp's Request"]="8419",
["An Improper Burial"]="10913",
["An Injured Colleague"]="13986",
["An Innocent Disguise"]="11891",
["An Intriguing Plan"]="12165",
["An Introduction"]="7633",
["An Invitation, of Sorts..."]="12631",
["An Issue of Trust"]="12561",
["An Offering for Soo-rahm"]="12543",
["An Old Colleague"]="1072",
["An Old Gift"]="10058",
["An Old History Book"]="337",
["An OOX of Your Own"]="3721",
["An Orphan Looking For a Home"]="3841",
["An Undead's Best Friend"]="13169",
["An Unholy Alliance"]="6521,6522",
["An Unnatural Drought"]="9783",
["An Unseen Hand"]="10013",
["An Unusual Patron"]="9457",
["An Unwelcome Guest"]="34",
["An Unwelcome Presence"]="10000",
["Anachronos"]="8303",
["Anatoly Will Talk"]="12330",
["Ancient Equine Spirit"]="7643",
["Ancient Evil"]="10593",
["Ancient History"]="13622",
["Ancient Relics"]="12870,12882",
["Ancient Sinew Wrapped Lamina"]="7634",
["Ancient Spirit"]="4261",
["And Now, the Moment of Truth"]="10201",
["And Then There Were Two..."]="11276",
["And You Thought Murlocs Smelled Bad!"]="11394,11397",
["Andron's Payment to Jediga"]="3564",
["Angling to Beat the Competition"]="9845",
["Ango'rosh Encroachment"]="9835",
["Anguish of Nifflevar"]="11344",
["Animist's Caress"]="8192",
["Anok'suten"]="9315",
["Another Heap of Ethereals"]="10308",
["Another Message to the Wildhammer"]="7842",
["Another Power Source?"]="841",
["Another Year, Another Souvenir."]="13932,13931",
["Ansirem's Key"]="603",
["Answered Questions"]="1044",
["Anthion's Old Friend"]="8948",
["Anthion's Parting Words"]="8951,8952,8953,8954,8955,8956,8957,8958,8959,9016,9017,9018,9019,9020,9021,9022,9030,10496,10497",
["Anthion's Strange Request"]="8947",
["Anub'Rekhan Must Die!"]="24580",
["Apothecary Antonivich"]="10835",
["Apothecary Zamah"]="853",
["Apothecary Zelana"]="10449",
["Appeasing the Great Rain Stone"]="12704",
["Apply Heat and Stir"]="11306",
["Apply This Twice A Day"]="12077",
["Apprentice Angler"]="8194",
["Apprentice's Duties"]="471",
["Aquatic Form"]="5061,31",
["Aquementas"]="4005",
["Ar'kelos the Guardian"]="10176",
["Ar'tor, Son of Oronok"]="10527",
["Arachnophobia"]="6284",
["Araj's Scarab"]="5803,5804",
["Arakkoa War Path"]="10868",
["Arathi Basin Resources!"]="8080,8154,8155,8156,8297,10535",
["Arathor Advanced Care Package"]="8262",
["Arathor Basic Care Package"]="8260",
["Arathor Standard Care Package"]="8261",
["Arcane Disturbances"]="9824",
["Arcane Instability"]="8486",
["Arcane Reavers"]="9487",
["Arcane Refreshment"]="7463",
["Arcane Runes"]="3449",
["Arcane Tomes"]="10419",
["Arcanite"]="7630",
["Archivum Data Disc"]="13604",
["Archmage Alturus"]="11216",
["Archmage No More"]="11031",
["Arconus the Insatiable"]="10353",
["Are We There, Yeti?"]="977,3783,5163",
["Arelion's Journal"]="9374",
["Arelion's Mistress"]="9472",
["Arelion's Secret"]="10286",
["Arena Grandmaster"]="7838",
["Arena Master"]="7810,7908",
["Argent Aid"]="13363",
["Argent Crusade, We Are Leaving!"]="12504",
["Argent Dawn Commission"]="5401,5405,5503",
["Argent Dawn Gloves"]="9094,9333",
["Arikara"]="5088",
["Aristan's Hunch"]="9024",
["Arm the Wards!"]="11523",
["Armaments for Deception"]="9928",
["Armaments of War"]="8316,8376,8377,8378,8379,8380,8381,8382",
["Armed and Ready"]="325",
["Arming Kamagua"]="11457",
["Armor Kits"]="7885",
["Armor Kits for the Field"]="8780,8787",
["Armor of Darkness"]="12979",
["Armor Scraps"]="7223",
["Arms for the Field"]="8781,8786",
["Arms of the Grimtotems"]="11148",
["Army of the Black Dragon"]="1168",
["Army of the Damned"]="13236,13395",
["Arp the Elder"]="13033",
["Arrival in Outland"]="10120,10288",
["Arrows Are For Sissies"]="7342",
["Artifacts of the Blacksilt"]="9549",
["Arugal Must Die"]="1014",
["Arugal's Folly"]="99,422,423,424",
["Arzeth's Demise"]="10369",
["As the Crow Flies"]="9718",
["As Water Cascades"]="4812",
["Ascension..."]="6601",
["Asghar's Totem"]="10777",
["Ashenvale Outrunners"]="6503",
["Assassin No More"]="11033",
["Assassin's Contract"]="522",
["Assassination Plot"]="4881",
["Assault by Air"]="13309,13310",
["Assault by Ground"]="13284,13301",
["Assault on Bash'ir Landing!"]="11119",
["Assault on Fenris Isle"]="442",
["Assault on the Kolkar"]="1386",
["Assault on Zeb'Nowa"]="9277",
["Assessing the Situation"]="9840",
["Assessing the Threat"]="246",
["Assist Exarch Orelis"]="11038",
["Assisting Arch Druid Runetotem"]="936,3762,3784",
["Assisting Arch Druid Staghelm"]="3763,3789,3790,10520",
["Assisting the Consortium"]="10263,10264",
["Astral Knot Garment"]="1942",
["At Last!"]="3201",
["At The Enemy's Gates"]="13847,13851,13852,13854,13855,13856,13857,13858,13859,13860",
["At War With The Scarlet Crusade"]="370,371,372,427",
["Ata'mal Armaments"]="11544",
["Atiesh, Greatstaff of the Guardian"]="9257,9269,9270,9271",
["Atiesh, the Befouled Greatstaff"]="9251",
["Atonement"]="9543",
["Atop the Woodlands"]="12083,12084",
["Attack by Air!"]="12071",
["Attack on Camp Narache"]="781",
["Attack on Firewing Point"]="9996,9997",
["Attack on Manaforge Coruu"]="10246",
["Attack on Silverbrook"]="12413",
["Attack on the Tower"]="696",
["Attack on Zeb'Tela"]="9276",
["Attunement to Dalaran"]="12172,12173",
["Attunement to the Core"]="7487,7848",
["Auchindoun and the Ring of Observance"]="10950",
["Auchindoun..."]="10167",
["Audience With The Dragon Queen"]="12495,12496",
["Audience with the Prophet"]="9698",
["Augustus' Receipt Book"]="6164",
["Auntie Marlene"]="5152",
["Aurel Goldleaf"]="8331",
["Aurius' Reckoning"]="5125",
["Avast Ye, Admiral!"]="4621",
["Avast Ye, Scallywag"]="1036",
["Avenge Iskaal"]="11458",
["Avenge Me!"]="13230",
["Avenge My Village"]="6548",
["Avenge this Atrocity!"]="12006",
["Avenger's Breastplate"]="8627",
["Avenger's Crown"]="8628",
["Avenger's Greaves"]="8655",
["Avenger's Legguards"]="8629",
["Avenger's Pauldrons"]="8630",
["Avenging the Fallen"]="7830",
["Avruu's Orb"]="9418",
["Azsharite"]="3602",
["Azure Templar"]="8737",
["Azuregos's Magical Ledger"]="8575",
["B'naar Console Transcription"]="10245",
["Baby Stealers"]="12867",
["Back So Soon?"]="12574",
["Back Through the Waygate"]="12797",
["Back to Billy"]="84",
["Back to Booty Bay"]="1118",
["Back to Darnassus"]="5931",
["Back to Har'koa"]="12653",
["Back to the Airstrip"]="11701",
["Back to the Beginning"]="8997,8998",
["Back to the Chief!"]="10249",
["Back to the Den"]="25130",
["Back to the Orphanage"]="10966,10967",
["Back To The Orphanage"]="13959,13960",
["Back to the Pit"]="13424",
["Back to Thunder Bluff"]="5932",
["Back to Uldaman"]="2200",
["Bad Medicine"]="204",
["Bailor's Ore Shipment"]="1655",
["Bait and Switch"]="11951",
["Bait Bandits"]="11666",
["Balance Must Be Preserved"]="9720",
["Baleheim Bodycount"]="11283",
["Baleheim Must Burn!"]="11285",
["Band of Unending Life"]="8700",
["Band of Vaulted Secrets"]="8699",
["Band of Veiled Shadows"]="8701",
["Bandages for the Field"]="8496,8810",
["Bandits!"]="9616",
["Bane of the Illidari"]="10676",
["Bang a Gong!"]="8743",
["Banish More Demons"]="11051",
["Banish the Demons"]="11026",
["Banner of the Stonemaul"]="11160",
["Banshee's Revenge"]="13142",
["Barbecued Buzzard Wings"]="703",
["Bark for Drohn's Distillery!"]="11407",
["Bark for T'chali's Voodoo Brewery!"]="11408",
["Bark for the Barleybrews!"]="11293",
["Bark for the Thunderbrews!"]="11294",
["Baron Aquanis"]="6922",
["Baron Sablemane"]="10783",
["Baron Sablemane Has Requested Your Presence"]="10818",
["Baron Sablemane's Poison"]="10749",
["Baron's Demise"]="523",
["Barov Family Fortune"]="5341,5343",
["Bartleby the Drunk"]="1639",
["Bartleby's Mug"]="1665",
["Bartolo's Yeti Fur Cloak"]="565",
["Bashal'Aran"]="954,955,956,957",
["Basic Chemistry"]="13279,13295",
["Basic Training"]="11918",
["Bathran's Hair"]="1010",
["Battle at Valhalas"]="13213",
["Battle at Valhalas: Carnage!"]="13217",
["Battle at Valhalas: Fallen Heroes"]="13214",
["Battle at Valhalas: Final Challenge"]="13219",
["Battle at Valhalas: Khit'rix the Dark Master"]="13215",
["Battle at Valhalas: Thane Deathblow"]="13218",
["Battle at Valhalas: The Return of Sigrid Iceborn"]="13216",
["Battle Before The Citadel"]="13861,13862,13863,13864",
["Battle of Hillsbrad"]="527,528,529,532,539,541,550",
["Battle of the Crimson Watch"]="10781",
["Battle Plans Of The Kvaldir"]="24442",
["Battle-Mage Dathric"]="10182",
["Battling the Elements"]="12967",
["Bazil Thredd"]="389",
["Beached Sea Creature"]="4723,4728,4730,4733",
["Beached Sea Turtle"]="4722,4725,4727,4731,4732",
["Beachfront Property"]="12304",
["Beads for Salfa"]="8469",
["Bearers of the Plague"]="9158",
["Beast Training"]="9673,9675",
["Beasts of the Apocalypse!"]="9560",
["Beat Bartleby"]="1640",
["Beating them Back!"]="28762",
["Because Kilrath is a Coward"]="9891",
["Becoming a Mooncloth Tailor"]="10831",
["Becoming a Parent"]="4298",
["Becoming a Shadoweave Tailor"]="10833",
["Becoming a Spellfire Tailor"]="10832",
["Beds, Bandages, and Beyond"]="9603",
["Beer Basted Boar Ribs"]="384",
["Before Darkness Falls"]="10878",
["Before the Gate of Horror"]="13329,13335",
["Befouled by Satyr"]="1434",
["Begin the Attack!"]="6846",
["Beginnings"]="1599",
["Behind Enemy Lines"]="10652",
["Behind Scarlet Lines"]="12723",
["Behomat"]="10350",
["Beldak the Elder"]="13013",
["Bell of Dethmoora"]="7626",
["Bellowrage the Elder"]="8647",
["Belt of Faith"]="9117",
["Beneath Thrallmar"]="10630",
["Beren's Peril"]="516",
["Besieged!"]="10562,10595",
["BETA A Bird's-Eye View"]="9949,9950",
["BETA A Dandy's Best Friend"]="9988",
["BETA A Hasty Departure"]="9344",
["BETA A Message for the Archmage"]="10187",
["BETA A Show of Good Faith"]="9965,9966",
["BETA A Strategic Alliance"]="785",
["BETA Against the Legion"]="10404",
["BETA Alien Spirits"]="9989",
["BETA Ally of the Netherwing"]="10871",
["BETA An Intact Converter"]="8489",
["BETA Assault on Mageddon"]="10084,10092",
["BETA Bleeding Hollow Supplies"]="10056,10158",
["BETA Choose Your Weapon"]="8478",
["BETA Dealing with Zeth'Gor"]="10053",
["BETA Dealing With Zeth'Gor"]="10059",
["BETA Dispatching the Commander"]="10139,10157",
["BETA Evil Draws Near"]="10925",
["BETA Finding Reethe <CHANGE INTO GOSSIP>"]="1272",
["BETA Forge Camp: Anger"]="10844",
["BETA Forge Camps of the Legion"]="10089",
["BETA Forgotten Heroes"]="9408",
["BETA Forward Base: Reaver's Fall REUSE"]="10207",
["BETA Goblins Win!"]="1099",
["BETA Heart of Deatholme"]="9168",
["BETA Host of the Hidden City"]="9984,9985",
["BETA Impending Doom"]="10054,10060",
["BETA Jim's Song <CHANGE TO GOSSIP>"]="1281",
["BETA Kargath's Battle Plans"]="9511",
["BETA Looking to the Leadership"]="10062",
["BETA Lookout Nodak"]="9953",
["BETA Marauding Crust Bursters"]="9342",
["BETA Mercenary See, Mercenary Do"]="10195",
["BETA Mission: Be the Messenger"]="10135,10148",
["BETA Mission: Disrupt Communications"]="10125",
["BETA Mission: End All, Be All"]="10149,10401",
["BETA Mission: Kill the Messenger"]="10133,10147",
["BETA Mission: Sever the Tie"]="10127",
["BETA Mission: Sever the Tie UNUSED"]="10145",
["BETA More Arakkoa Feathers"]="10196",
["BETA More Power!"]="10292",
["BETA Nazgrel's Command <TXT>"]="10370",
["BETA Netherologist Coppernickels"]="10260",
["BETA Obsidian Warbeads"]="10375",
["BETA On the Offensive"]="9568",
["BETA Peddling the Goods"]="10441",
["BETA Planning the Escape"]="10131,10154",
["BETA Primal Magic"]="9975,9976",
["BETA Prospector Balmoral"]="9952",
["BETA Provoking the Warboss"]="10137,10155",
["BETA R.T.F.R.C.M."]="10244",
["BETA Report to Aeldon Sunbrand"]="9357",
["BETA Rescue Deirom!"]="9980",
["BETA Rescue Dugar!"]="9981",
["BETA Return to Honor Hold"]="10398",
["BETA Return to Rokag"]="9947",
["BETA Return to Thander"]="9943",
["BETA Saving Private Imarion"]="10128",
["BETA Saving Scout Makha"]="10153",
["BETA Scouting the Defenses"]="9958,9959",
["BETA Seeking Help from the Source"]="9963,9964",
["BETA Sirra is Busy"]="402",
["BETA Test Flight: Raven's Wood <needs reward>"]="10716",
["BETA The Burning Inn <CHANGE TO GOSSIP>"]="1263",
["BETA The Citadel's Reach"]="10122,10150",
["BETA The Custodian of Kirin'Var"]="10179",
["BETA The Dwarven Spy"]="8896",
["BETA The Fate of the Clefthoof"]="9382",
["BETA The Fel Reaver Slayer"]="10386,10387",
["BETA The Final Reagents"]="9969,9974",
["BETA The Firewing Point Project"]="10014,10015",
["BETA The Journal of Val'zareq: Portends of War"]="10815",
["BETA The Mastermind"]="10100",
["BETA The Missing Merchant"]="9929,9930",
["BETA The Spirits Are Calling"]="10029",
["BETA The Unyielding"]="10061",
["BETA The Vengeful Harbringer"]="10841",
["BETA The Western Flank"]="10130,10152",
["BETA They're Alive! Maybe..."]="9749",
["BETA Through the Dark Portal"]="10046",
["BETA Tracking Down the Culprits"]="9941,9942",
["BETA Under Whose Orders?"]="10138,10156",
["BETA Vimes's Report"]="1289",
["BETA Waking Naralex"]="1500",
["BETA Warboss Nekrogg's Orders"]="10126,10151",
["BETA What Lies Beyond"]="1006",
["BETA What Lurks Beyond"]="1005",
["BETA When Dreams Turn to Nightmares"]="999",
["BETA When Helboars Fly"]="9346",
["BETA When This Mine's a-Rockin'"]="10088,10214",
["BETA Zuluhed the Whacked"]="10872",
["Betina Bigglezink"]="5531",
["Betrayal"]="12713",
["Betrayal from Within"]="879,906",
["Betrayed"]="3504,3505,3506,3507",
["Better Late Than Never"]="5021,5022,5023",
["Between a Rock and a Thistlefur"]="216",
["Beware of Pterrordax"]="4501",
["Beyond the Graves"]="25089",
["Big Black Mace"]="7892",
["Big Game Hunter"]="208",
["Bijou's Belongings"]="4982,5001",
["Bijou's Reconnaissance Report"]="4983",
["Binding the Dreadnaught"]="9131",
["Bindings of Faith"]="9118",
["Bingles' Missing Supplies"]="2038",
["Birds of a Feather"]="9397",
["Bitter Departure"]="12832",
["Bitter Rivals"]="310",
["Black Blood of Yogg-Saron"]="12039",
["Black Ram Exchange"]="7674",
["Blackfathom Villainy"]="1200,6561",
["Blackhand's Command"]="7761",
["Blackmoore's Legacy"]="506",
["Blackout"]="12154",
["Blackriver Brawl"]="12170",
["Blackriver Skirmish"]="12444",
["Blackrock Bounty"]="128",
["Blackrock Invasion"]="26386",
["Blackrock Menace"]="20",
["Blacksting's Bane"]="9896",
["Blackwatch"]="13106",
["Blade of Eternal Justice"]="8711",
["Blade of Vaulted Secrets"]="8707",
["Bladeleaf the Elder"]="8715",
["Bladesing the Elder"]="8719",
["Bladespire Kegger"]="10545",
["Bladeswift the Elder"]="8718",
["Blahblah[PH]"]="12590",
["Blast the Gateway"]="11516",
["Blast the Infernals!"]="10564,10598",
["Bleeding Hollow Supply Crates"]="9916",
["Blending In"]="11633",
["Blessed Arcanite Barding"]="7644",
["Blessed Arm"]="322",
["Blessed Wizard Oil"]="9318,9334",
["Blessing of Incineratus"]="9805",
["Blessing of Zim'Abwa"]="12567",
["Blessing of Zim'Rhuk"]="12656",
["Blessing of Zim'Torga"]="12618",
["Blessings of the Ancients"]="9785",
["Blightbeasts be Damned!"]="12072",
["Blighted Last Rites"]="12206",
["Blind Cazul"]="1508",
["Blinding the Eyes in the Sky"]="13313",
["Blisters on The Land"]="275",
["Blizzard Account: - DEM - E - FLAG"]="13210",
["Blood Crystals"]="9566",
["Blood Elf + Giant = ???"]="10774",
["Blood Elf Plans"]="9798",
["Blood Elf Spy"]="9311",
["Blood Feeders"]="6461",
["Blood for Blood"]="11515",
["Blood in the Water"]="12810",
["Blood Is Thicker"]="13833",
["Blood Oath of the Horde"]="11983",
["Blood Oath of the Netherwing"]="11012",
["Blood of a Dead God"]="12684",
["Blood of Innocents"]="1066",
["Blood of Morphaz"]="8257",
["Blood of the Black Dragon Champion"]="6602",
["Blood of the Chosen"]="13330,13336",
["Blood of the Warlord"]="11178",
["Blood Quickening"]="24874",
["Blood Shards of Agamaggan"]="5052",
["Blood Tinged Skies"]="5543",
["Blood Watch"]="9694",
["Bloodfen Feathers"]="11158",
["Bloodfury Bloodline"]="6283",
["Bloodgem Crystals"]="10204",
["Bloodhoof the Elder"]="8673",
["Bloodpetal Poison"]="9052",
["Bloodpetal Sprouts"]="4144",
["Bloodpetal Zapper"]="4148",
["Bloodscalp Clan Heads"]="584",
["Bloodscalp Ears"]="189",
["Bloodscalp Insight"]="9436",
["Bloodspattered Banners"]="13307,13334",
["Bloody Bone Necklaces"]="596",
["Bloody Breakout"]="12727",
["Bloody Imp-ossible!"]="10924",
["Bloody Vengeance"]="10250",
["Blow it Up!"]="13262",
["Blowing Hodir's Horn"]="12977",
["Blueleaf Tubers"]="1221",
["Bluewolf the Elder"]="13026",
["Boat Wreckage"]="4127",
["Bodley's Unfortunate Fate"]="8960,9032",
["Body and Heart"]="6001,6002",
["Body of Evidence"]="9932",
["Bodyguard for Hire"]="5821",
["Boiling Blood"]="10538",
["Boiling Point"]="11627",
["Bolstering Our Defenses"]="9665",
["Bomb Them Again!"]="11023",
["Bombard the Ballistae"]="12232",
["Bombing Run"]="11010,11102",
["Bone Collector"]="5501",
["Bone Fragments"]="9127",
["Bone-Bladed Weapons"]="4300",
["Bonechewer Blood"]="10450",
["Bones and Arrows"]="13154,13193,13196,13199",
["Bonescythe Bracers"]="9084",
["Bonescythe Breastplate"]="9077",
["Bonescythe Digs"]="9126",
["Bonescythe Gauntlets"]="9082",
["Bonescythe Helmet"]="9079",
["Bonescythe Legplates"]="9078",
["Bonescythe Pauldrons"]="9080",
["Bonescythe Sabatons"]="9081",
["Bonescythe Waistguard"]="9083",
["Book of the Ancients"]="6027",
["Bookie Herod"]="200",
["Boots for the Guard"]="8540,8805",
["Bor Wildmane"]="8349",
["Bor Wishes to Speak"]="8351",
["Borak, Son of Oronok"]="10546",
["Border Crossings"]="477",
["Borrowed Technology"]="13291",
["Botanical Legwork"]="9799",
["Botanist Taerix"]="9371",
["Boulderslide Ravine"]="6421",
["Bound for Glory"]="10509",
["Bounty on Garrick Padfoot"]="6",
["Bounty on Murlocs"]="46",
["Bow to the Highlord"]="11107",
["Bracers of Binding"]="557",
["Brains! Brains! Brains!"]="11301",
["Brann Bronzebeard's Lost Letter"]="8308",
["Breaching the Path"]="10751,10773",
["Break a Few Eggs"]="815",
["Break Sharptusk!"]="3376",
["Break the Blockade"]="11153",
["Breakfast Of Champions"]="14076,14092",
["Breaking Down Netherock"]="10701",
["Breaking Off A Piece"]="12462",
["Breaking the Code"]="8310",
["Breaking the Keystone"]="652",
["Breaking the Ward"]="3508",
["Breaking Through"]="11898",
["Breaking Through Jin'Alai"]="12627",
["Breastplate of Bloodthirst"]="5068",
["Breastplate of the Chromatic Flight"]="5166",
["Brew of the Month Club"]="12278,12306,12420,12421",
["Brewfest Riding Rams"]="11400,11419",
["Brewfest!"]="11441,11446",
["Bride of the Embalmer"]="253",
["Brightspear the Elder"]="8726",
["Bring 'Em Back Alive"]="11690",
["Bring Back the Mug"]="3365",
["Bring Down the Warbringer!"]="10586,10603",
["Bring Down Those Shields"]="11396,11399",
["Bring Me A Shrubbery!"]="9715",
["Bring Me Another Shrubbery!"]="9714",
["Bring Me Kel'gash's Head!"]="9215",
["Bring Me The Egg!"]="10111",
["Bring the End"]="3341",
["Bring the Light"]="3636",
["Bringing Down Heb'Jin"]="12662",
["Bringing Down the Iron Thane"]="12199",
["Broken Alliances"]="782,793",
["Broken Tears"]="1369",
["Bronzebeard the Elder"]="8866",
["Broodling Essence"]="4726",
["Brother Against Brother"]="10097",
["Brother Anton"]="6141",
["Brother Betrayers"]="11414,11415",
["Brother Carlin"]="5210",
["Brother Paxton"]="344",
["Brotherhood of Thieves"]="18",
["Brotherhood's End"]="395",
["Brotherly Love"]="7281,7282",
["Brothers in Battle"]="12002",
["Brothers In Death"]="12725",
["Brumeran of the Chillwind"]="5055",
["Brutal Armor"]="1838",
["Brutal Gauntlets"]="1843",
["Brutal Hauberk"]="1848",
["Brutal Helm"]="1845",
["Brutal Legguards"]="1847",
["Brutal Politics"]="1385",
["Building a Better Gryphon"]="11043",
["Building a Perimeter"]="10240",
["Bungle in the Jungle"]="4496",
["Burn in Effigy"]="11656",
["Burn It Up... For the Horde!"]="10087",
["Burn Skorn, Burn!"]="11258,11247",
["Burning Blade Medallion"]="794",
["Burning Blood"]="1705",
["Burning Shadows"]="832",
["Burning to Help"]="12683",
["Burstcap Mushrooms, Mon!"]="9814",
["Bury Those Cockroaches!"]="11608",
["But First My Offspring"]="12632",
["Buying Some Time"]="11938",
["Buying Time"]="9999",
["Buzzbox 323"]="1002",
["Buzzbox 411"]="1001",
["Buzzbox 525"]="1003",
["Buzzbox 827"]="983",
["By Any Means Necessary"]="9978",
["By Fire Be Purged"]="13211",
["C'Thun's Legacy"]="8801",
["Cabal Orders"]="10880",
["Cache of Mau'ari"]="975",
["Caedmos"]="10364",
["Cairne's Hoofprint"]="925",
["Call of Air"]="1531,1532,9547,9551,9552,9553,9554,10491",
["Call of Air - Guse's Fleet"]="6825",