Thread Tools Display Modes
08-09-14, 12:02 PM   #1
Drakonis5056
A Deviate Faerie Dragon
Join Date: Oct 2010
Posts: 13
Questing

What is the newest version of carbonite and where do I download it. Also I am having alot of quest not showing up in the data base is there a fix for this..
 
08-09-14, 07:55 PM   #2
jeffy162
A Pyroguard Emberseer
 
jeffy162's Avatar
AddOn Author - Click to view addons
Join Date: May 2009
Posts: 2,364
Originally Posted by Drakonis5056 View Post
What is the newest version of carbonite and where do I download it. Also I am having alot of quest not showing up in the data base is there a fix for this..
The latest version of Carbonite is Carbonite BETA VERSION: 5.4.2 Alpha 5. That's the link for it here at WoWInterface.com. It is also available at CurseForge.com: Carbonite BETA VERSION: 5.4.2 Alpha 5.

As far as the quests not showing up in the data base, there is no fix for it. That I know of.
__________________
Ahhhh, the vagueries of the aging mind. Wait.... What was I saying?


Carbonite <----- GitHub main module (Maps ONLY) download link. The other modules are also available on GitHub.
Carbonite-CLASSIC<----- GitHub link to Carbonite Classic. Thanks to ircdirk for this!
 
08-10-14, 07:31 AM   #3
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
Quests86-90

I have started working on populating quest info for pandaria, would like someone to look at it to see if I am doing it right. Since I am new to working with lua, below is the quests86-90.lua and questcats.lua.

If this looks good I will try adding the npc's in followed by objectives.
I not sure if I understand how to add the objectives in correctly, do I only add the name of the objective or the name with the number of items listed as well.

Objectives = {
[objective number] = {
"objective name/description|zone|point type as above|location x|location y|size of box - x|size of box - y",
},
},

For each objective in the quest you can add an objective to the list.
Each objective can have as many boxes drawn as you want to shape it
objective name/description for now have always been nil, which is why unknown quest objectives have always shown '?' when group sharing, or when viewing someone on the map. " Rythal"
Quests86-90.lua
Code:
if not Nx.ModQuests then
	Nx.ModQuests = {}
end

local ModQuests={
------- The Jade Forest Quests --------------
[26619] = {
    Quest = [[A Courteous Guest|0|86|85|26620|48]],
  },
[26620] = {
	Quest = [[The Great Banquet|0|86|85|0|48]],
  },
[29756] = {
	Quest = [[A Humble Offering|0|86|85|0|48]],
  },
[29822] = {
	Quest = [[Lay of the Land|2|86|85|31121|48]],
  },
[31121] = {
	Quest = [[Stay a While, and Listen|2|86|85|31132|48]],
  },
[31132] = {
	Quest = [[A Mile in My Shoes|2|86|85|31134|48]],
  },
[31134] = {
	Quest = [[If These Stones Could Speak|2|86|85|0|48]],
  },
[30011] = {
	Quest = [[A New Vision|0|86|85|0|48]],
  },
[29903] = {
	Quest = [[A Perfact Match|1|86|85|29904|48]],
  },
[29627] = {
	Quest = [[A Proper Weapon|0|86|85|0|48]],
  },
[29629] = {
	Quest = [[A Steady Hand|0|86|85|29646|48]],
  },
}

function Nx.ModQuests:Load10 ()
	for key,val in pairs(ModQuests) do
		Nx.Quests[key] = val
	end
	Nx.ModQuests:Clear10()
end

function Nx.ModQuests:Clear10 ()
	ModQuests = {}
end
--[[ reference samples below
	[29629] = {                 
	Quest = [[A Steady Hand|0|86|85|29646|48]],     add pandaria under number 48 in questcats.lua in hopes it will list these quests correctly
  },									   							
 [quest ID] = {
Quest = [[Quest Name|faction|quest level|quest minimum level|next quest in series|quest category]],
Start = "NPC Id|zone id|point type|location X|location Y",
End = "NPC Id|zone id|point type|location X|location Y",
},
  
--]]
QuestCats.lua
Code:
Nx.QuestCategory={
 "Druid",
 "Shaman",
 "Children's Week",
 "Special",
 "Cooking",
 "Herbalism",
 "Paladin",
 "Warlock",
 "Warrior",
 "Engineering",
 "Blacksmithing",
 "Fishing",
 "Alchemy",
 "Leatherworking",
 "Seasonal",
 "Rogue",
 "Mage",
 "Treasure Map",
 "Hunter",
 "Priest",
 "Tailoring",
 "First Aid",
 "Legendary",
 "Darkmoon Faire",
 "REUSE - old wailing caverns",
 "Battlegrounds",
 "Epic",
 "Ahn'Qiraj War",
 "Lunar Festival",
 "Reputation",
 "Invasion",
 "Midsummer",
 "Brewfest",
 "Inscription",
 "Death Knight",
 "Jewelcrafting",
 "Noblegarden",
 "Tournament",
 "Day of the Dead",
 "Pilgrim's Bounty",
 "Love is in the Air",
 "Cataclysm",
 "Archaeology",
 "Northern Stranglethorn",
 "Firelands Invasion",
 "Uncategorized",
 "Pandaria",
}
 
08-10-14, 10:43 AM   #4
Rythal
Featured Artist
Featured
Join Date: Aug 2012
Posts: 1,458
It looks correct to me
 
08-10-14, 01:00 PM   #5
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
updated quests86-90

add Npc's and Objectives
Tried adding nickname/title to "Wise Mari\"Waterspeaker\"" but not sure if that is the correct way to do it.
got MapID# from wowpedia.org/MapID#Pandaria

Quests86-90.lua
Code:
if not Nx.ModQuests then
	Nx.ModQuests = {}
end

local ModQuests={
------- The Jade Forest Quests --------------
[29619] = {
    Quest = [[A Courteous Guest|0|86|85|26620|48]],
	Start = "3332|806|32|45|25",
	End = "3332|806|32|45|25",
	Objectives = {
      [1] = {
         "Ripe Orange|806|35|45.2|28.5|5.01|6.68",
		 "Ripe Orange|806|35|45.8|27.6|5.01|6.68",
		},
	},	 
  },
[29620] = {
	Quest = [[The Great Banquet|0|86|85|0|48]],
	Start = "3332|806|32|45|25",
	End = "3339|806|32|45.2|25",
	Objectives = {
		[1] = {
			"Speak with High Elder Cloudfall|806|35|45.2|25|5.01|6.68",
		},
	},		
  },
[29756] = {
	Quest = [[A Humble Offering|0|86|85|0|48]],
	Start = "3333|806|32|44.2|15",
	End = "3333|806|32|44.2|15",
	Objectives = {
	   [1] = {
	      "Tidemist Cap|806|35|38.2|12.2|5.01|6.68",
		  "Tidemist Cap|806|35|41.3|10.4|5.01|6.68",
		},
	},
  },
[29822] = {
	Quest = [[Lay of the Land|2|86|85|31121|48]],
	Start = "3340|806|32|28.4|24.8",
	End = "3334|806|32|27.6|32.6",
	Objectives = {
		[1] = {
			"Shrine of the Sun Visited|806|35|31.8|28|5.01|6.68",
		},
		[2] = {
			"Shrine of the Moon Visited|806|35|26.4|32.4|5.01|6.68",
		},
		[3] = {
			"Dook Ookem Slain|806|35|27.76|30.35|5.01|6.68",
		},
	},	
  },
[31121] = {
	Quest = [[Stay a While, and Listen|2|86|85|31132|48]],
	Start = "3334|806|32|27.6|32.6",
	End = "3334|806|32|27.6|32.6",
	Objectives = {
		[1] = {
			"Drink from Cho's Teapot|806|35|27.6|32.6|5.01|6.68",
		},
		[2] = {
			"Listen to Lorewalker Cho|806|35|27.6|32.6|5.01|6.68",
		},
	},	
  },
[31132] = {
	Quest = [[A Mile in My Shoes|2|86|85|31134|48]],
	Start = "3334|806|32|27.6|32.6",
	End = "3334|806|32|27.6|32.6",
	Objectives = {
		[1] = {
			"Speak to Lorewalker Cho|806|35|27.6|32.6|5.01|6.68", --[[ on speak to quest should I have an objective 
																							or just leave it blank--]]
		},
	},		
  },
[31134] = {
	Quest = [[If These Stones Could Speak|2|86|85|0|48]],
	Start = "3334|806|32|30.8|34",
	End = "3334|806|32|30.8|34"
	Objectives = {
		[1] = {
			"First Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
		},
		[2] = {
			"Second Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
		},
		[3] = {
			"Third Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
		},
	},	
  },
[30011] = {
	Quest = [[A New Vision|0|86|85|0|48]],
	Start = "3335|806|32|57.6|56",
	End = "3336|806|32|58|58.6",
	Objectives = {
		[1] = {
			"Speak to Elder Sage Rain-Zhu|806|35|58.0|58.6|5.01|6.68",
		},
	},		
  },
[29903] = {
	Quest = [[A Perfact Match|1|86|85|29904|48]],
	Start = "3337|806|32|58.8|81.6",
	End = "3337|806|32|58.8|81.6",
	Objectives = {
		[1] = {
			"Speak to Pearlfin Aqualytes and arm them with the proper equipment|806|35|58.3|82.7|5.01|6.68",
		},
		[2] = {
			"Pearlfin Aqualytes equipped|806|35|58.3|82.7|5.01|6.68",
		},
	},	
  },
[29627] = {
	Quest = [[A Proper Weapon|0|86|85|0|48]],
	Start = "3338|806|32|41.6|23.6",
	End = "3338|806|32|41.6|23.6",
	Objectives = {
		[1] = {
			"Rattan Switch|806|35|41.8|24.8|5.01|6.68",
		},
		[2] = {
			"Black Walnut Extract|806|35|41.4|24.2|5.01|6.68",
		},
		[3] = {
			"Triple-Bitter Ale|806|35|41.8|24.6|5.01|6.68",
		},
	},	
  },
[29629] = {
	Quest = [[A Steady Hand|0|86|85|29646|48]],
	Start = "3338|806|32|41.6|23.6",
	End = "3338|806|32|41.6|23.6",
	Objectives = {
		[1] = {
			"Blushleaf Extract|806|35|34.4|22.0|5.01|6.68",
		},
	},	
  },
}

function Nx.ModQuests:Load10 ()
	for key,val in pairs(ModQuests) do
		Nx.Quests[key] = val
	end
	Nx.ModQuests:Clear10()
end

function Nx.ModQuests:Clear10 ()
	ModQuests = {}
end

QuestNPC.lua

Code:
Nx.QuestStartEnd={
 "Senani Thunderheart",
 "Deputy Rainer",
 "Captain Tarkan",
 "Captain Goggath",
 "Marshal Dughan",
 "Guard Thomas",
 "A half-eaten body",
 "Remy \"Two Times\"",
 "Rolf's corpse",
 "Bounty Board",
 "Marshal McBride",
 "Sara Timberlain",
 "William Pestle",
 "Sealed Crate",
 "Marshal Haggard",
 "\"Auntie\" Bernice Stonefield",
 "Billy Maclure",
 "Ma Stonefield",
 "Maybell Maclure",
 "Tommy Joe Stonefield",
 "Gramma Stonefield",
 "Marshal McCree",
 "Human Orphan",
 "Orphan Matron Battlewail",
 "Orcish Orphan",
 "Wanted Poster",
 "Grelin Whitebeard",
 "Westfall Deed",
 "Lieutenant Horatio Laine",
 "Ajeck Rouack",
 "Sir S. J. Erlgadin",
 "Hemet Nesingwary Jr.",
 "Karang Amakkar",
 "Siege Master Stouthandle",
 "Old Lion Statue",
 "Clarice Foster",
 "Yuriv's Tombstone",
 "Glorin Steelbrow",
 "Jern Hornhelm",
 "Huldar",
 "Prospector Ironband",
 "Unguarded Thunder Ale Barrel",
 "Marleth Barleybrew",
 "Captain Tharran",
 "Rudra Amberstill",
 "Rejold Barleybrew",
 "Pilot Bellowfiz",
 "Renato Gallina",
 "Suzetta Gallina",
 "Harlan Bagley",
 "Rema Schneider",
 "Thurman Schneider",
 "Zardeth of the Black Claw",
 "Homing Robot OOX-17/TN",
 "Grimand Elmore",
 "Mountaineer Stormpike",
 "Ragnar Thunderbrew",
 "Razzle Sprysprocket",
 "Mountaineer Barleybrew",
 "Foreman Stonebrow",
 "Senator Mehr Stonehallow",
 "Pilot Longbeard",
 "Pilot Stonegear",
 "Athridas Bearmantle",
 "Gaerolas Talvethren",
 "Homing Robot OOX-09/HL",
 "Moon Priestess Amara",
 "Zenn Foulhoof",
 "Syral Bladeleaf",
 "Sharlindra",
 "Melisara",
 "Count Remington Ridgewell",
 "Barnil Stonepot",
 "Catelyn the Blade",
 "Musty Scroll",
 "Oglethorpe Obnoticus",
 "Grand Mason Marblesten",
 "Prospector Stormpike",
 "Ruul Eagletalon",
 "Eyahn Eagletalon",
 "Morin Cloudstalker",
 "Sealed Supply Crate",
 "Harken Windtotem",
 "Veren Tallstrider",
 "Skorn Whitecloud",
 "Lorekeeper Raintotem",
 "Ancestral Spirit",
 "Brewmaster Drohn",
 "Mastok Wrilehiss",
 "Je'neu Sancrea",
 "Rezlak",
 "Takrin Pathseeker",
 "Kargal Battlescar",
 "Halga Bloodeye",
 "Sergra Darkthorn",
 "Apothecary Helbrim",
 "Telar Highstrider",
 "Shoe",
 "Regthar Deathgate",
 "Wizzlecrank's Shredder",
 "Sputtervalve",
 "Mebok Mizzyrix",
 "Darsok Swiftdagger",
 "Gazrog",
 "Tonga Runetotem",
 "Mahren Skyseer",
 "Jerrik Highmountain",
 "Wharfmaster Dizzywig",
 "Captain Thalo'thas Brightsun",
 "Control Console",
 "WANTED",
 "Gazlowe",
 "Brak Blusterpipe",
 "Mankrik",
 "Denalan",
 "Rellian Greenspyre",
 "Corithras Moonrage",
 "Strange Fruited Plant",
 "Strange Fronded Plant",
 "Tallonkai Swiftroot",
 "Tarindrella",
 "Sentinel Arynia Cloudsbreak",
 "Mist",
 "Denalan's Planter",
 "Crane Operator Bigglefuzz",
 "Smith Argus",
 "Tharg",
 "Nazeer Bloodpike",
 "Morgan Stern",
 "Melor Stonehoof",
 "\"Stinky\" Ignatz",
 "Jorgen",
 "Elling Trias",
 "Tapoke \"Slim\" Jahn",
 "Mikhail",
 "Commander Samaul",
 "Archmage Tervosh",
 "Private Hendel",
 "Felgur Twocuts",
 "Roetten Stonehammer",
 "Kreldig Ungor",
 "Karnitol's Chest",
 "Orphan Matron Nightingale",
 "Kranal Fiss",
 "Telf Joolam",
 "Tormus Deepforge",
 "Lotherias",
 "Harry Burlguard",
 "Bartleby",
 "Jordan Stilwell",
 "Bailor Stonehand",
 "Doan Karhan",
 "High Sorcerer Andromath",
 "Gnoarn",
 "Bingles Blastenheimer",
 "Falkhaan Isenstrider",
 "Innkeeper Farley",
 "Porthannius",
 "Innkeeper Keldamyr",
 "Master Mathias Shaw",
 "The Discs of Norgannon",
 "High Examiner Tae'thelan Bloodwatcher",
 "Gornek",
 "Frang",
 "Priestess A'moora",
 "Oben Rageclaw",
 "Orokk Omosh",
 "Master Gadrin",
 "The Sparklematic 5200",
 "Talvash del Kissel",
 "Nogg",
 "High Explorer Magellas",
 "Historian Karnik",
 "Sage Truthseeker",
 "Nara Wildmane",
 "Thadius Grimshade",
 "Karranisha",
 "Rwag",
 "Shikrik",
 "Nartok",
 "Rohaku Stonehoof",
 "Harutt Thunderhorn",
 "Lanka Farshot",
 "Meela Dawnstrider",
 "Gart Mistrunner",
 "Shadow Priest Sarvis",
 "Dannal Stern",
 "David Trias",
 "Dark Cleric Duesten",
 "Isabella",
 "Maximillion",
 "Llane Beshere",
 "Brother Sammuel",
 "Jorik Kerridan",
 "Priestess Anetta",
 "Khelden Bremen",
 "Drusilla La Salle",
 "Jona Ironstock",
 "Thran Khorman",
 "Bromos Grummner",
 "Thorgas Grimson",
 "Solm Hargrin",
 "Branstock Khalder",
 "Saripal Smolderbrew",
 "Ilthalaine",
 "Alyissia",
 "Ayanna Everstride",
 "Frahun Shadewhisper",
 "Melithar Staghelm",
 "Shanda",
 "Mardant Strongoak",
 "Felix Whindlebolt",
 "Kadrak",
 "Graham Van Talen",
 "Lilliam Sparkspindle",
 "Nixx Sprocketspring",
 "Tinkmaster Overspark",
 "Springspindle Fizzlegear",
 "Tinkerwiz",
 "Chicken",
 "Wenikee Boltbucket",
 "Large Leather Backpacks",
 "Zukk'ash Pod",
 "Alchemist Pestlezugg",
 "Zilzibin Drumlore",
 "Laris Geardawdle",
 "Beached Sea Turtle",
 "Rivern Frostwind",
 "Kilram",
 "Jinar'Zillen",
 "Bibbly F'utzbuckle",
 "Hegnar Rumbleshot",
 "Supervisor Raelen",
 "Smeed Scrabblescrew",
 "Sentinel Aynasha",
 "Sentinel Onaeya",
 "Roon Wildmane",
 "Cork Gizelton",
 "Yori Crackhelm",
 "Stormpike Quartermaster",
 "Frostwolf Quartermaster",
 "Innkeeper Gryshka",
 "Turak Runetotem",
 "Rigger Gizelton",
 "Meilosh",
 "Kali Remik",
 "Thotar",
 "Tristane Shadowstone",
 "Grif Wildheart",
 "Melizza Brimbuzzle",
 "Hornizz Brimbuzzle",
 "Deathguard Morris",
 "Anette Williams",
 "Gordon Wendham",
 "Michael Garrett",
 "Fidelio",
 "Sister Aquinne",
 "Leora",
 "Nyoma",
 "Varg Windwhisper",
 "Tak",
 "Ahanu",
 "Tal",
 "Grimtak",
 "Burok",
 "Doras",
 "Gremlock Pilsnor",
 "Brolan Galebeard",
 "Pixel",
 "Marukai",
 "Mitsuwa",
 "Ruul Snowhoof",
 "Yama Snowhoof",
 "Kuray'bin",
 "Bragor Bloodfist",
 "Torek",
 "Ertog Ragetusk",
 "Nat Pagle",
 "Lumak",
 "Grimnur Stonebrand",
 "Dirge Quikcleave",
 "Zamja",
 "Daryl Riknussun",
 "Doctor Gregory Victor",
 "Krenk Choplimb",
 "Doctor Gustaf VanHowzen",
 "Nissa Firestone",
 "Muglash",
 "Warsong Runner",
 "Kaymard Copperpinch",
 "Great-father Winter",
 "Strange Snowman",
 "Furmund",
 "Sagorne Creststrider",
 "Frostwolf Stable Master",
 "Whulwert Copperpinch",
 "Wulmort Jinglepocket",
 "Greatfather Winter",
 "Khole Jinglepocket",
 "Nardstrum Copperpinch",
 "Stormpike Stable Master",
 "Baine Bloodhoof",
 "Goli Krumn",
 "Muradin Bronzebeard",
 "Sergeant Durgen Stormpike",
 "Corporal Teeka Bloodsnarl",
 "Mountaineer Boombellow",
 "Jotek",
 "Prospector Stonehewer",
 "Voggah Deathgrip",
 "Warmaster Laggrond",
 "Lieutenant Haggerdin",
 "Murgot Deepforge",
 "Smith Regzar",
 "King Varian Wrynn",
 "Major Mattingly",
 "Spackle Thornberry",
 "Drakkisath's Brand",
 "Field Marshal Afrasiabi",
 "Garrosh Hellscream",
 "Overlord Runthak",
 "Highlord Demitrian",
 "Short John Mithril",
 "Melnan Darkstone",
 "Gelvas Grimegate",
 "Kruban Darkblade",
 "Professor Thaddeus Paleo",
 "Sayge's Fortune ",
 "Field Marshal Oslight",
 "Deathmaster Dwire",
 "Beetix Ficklespragg",
 "Hermit Ortell",
 "Windcaller Proudhorn",
 "Noggle Ficklespragg",
 "Wanted Poster: Deathclasp",
 "Vish Kozus",
 "Geologist Larksbane",
 "Commander Mar'alith",
 "Calandrath",
 "Sandy Cookbook",
 "Rutgar Glyphshaper",
 "Frankal Stonebridge",
 "Bor Wildmane",
 "Huum Wildmane",
 "Magistrix Erona",
 "Lanthan Perilon",
 "Julia Sunstriker",
 "Delios Silverblade",
 "Well Watcher Solanian",
 "Arcanist Ithanas",
 "Arcanist Helion",
 "Outrunner Alarion",
 "Innkeeper Delaniel",
 "Aeldon Sunbrand",
 "Wanted: Thaelis the Hungerer",
 "Sergeant Kan'ren",
 "Kernda",
 "Magister Jaronis",
 "Larianna Riverwind",
 "Ranger Jaela",
 "Lieutenant Dawnrunner",
 "Arathel Sunforge",
 "Ven'jashi",
 "Velendris Whitemorn",
 "Gorn One Eye",
 "Ley-Keeper Velania",
 "Apprentice Mirveda",
 "Runewarden Deryan",
 "Velan Brightoak",
 "Windcaller Yessendra",
 "Keyl Swiftclaw",
 "Warden Haro",
 "Summoner Teli'Larien",
 "Matron Arena",
 "Vethsera",
 "Holly Preserver",
 "Wonderform Operator",
 "Innkeeper Allison",
 "Innkeeper Pala",
 "Lunar Festival Harbinger",
 "Valadar Starsong",
 "Lunar Festival Emissary",
 "Lunar Festival Herald",
 "Hathvelion Sungaze",
 "Captain Kelisendra",
 "Magister Duskwither",
 "Apprentice Loralthalis",
 "Magister Duskwither's Journal",
 "Ranger Degolien",
 "Groundskeeper Wyllithen",
 "Ley-Keeper Caidanis",
 "Apprentice Ralen",
 "Apprentice Meledor",
 "Instructor Antheol",
 "Lord Saltheril",
 "Sathiel",
 "Skymaster Brightdawn",
 "Sathren Azuredawn",
 "Skymistress Gloaming",
 "Arcanist Vandril",
 "Ranger Valanna",
 "Magistrix Landra Dawnstrider",
 "Courier Dawnstrider",
 "Ranger Lethvalin",
 "Captain Helios",
 "Apothecary Thedra",
 "Apothecary Renzithen",
 "Magister Darenis",
 "Magister Idonis",
 "Rathis Tomber",
 "Deathstalker Rathiel",
 "Geranis Whitemorn",
 "Farstrider Sedina",
 "Dame Auriferous",
 "Ranger Vynna",
 "Dusty Journal",
 "Arcanist Janeda",
 "Magister Sylastor",
 "Magister Kaendris",
 "Master Chef Mouldier",
 "High Executor Mavren",
 "Lady Sylvanas Windrunner",
 "Deathstalker Maltendis",
 "Advisor Valwyn",
 "Apprentice Shatharia",
 "Magister Quallestis",
 "Ranger Lilatha",
 "Wanted Poster: Kel'gash the Wicked",
 "Magistrix Aminel",
 "Ranger Sareyn",
 "Ardeyn Riverwind",
 "Ranger Krenn'an",
 "Apothecary Venustus",
 "Farstrider Solanna",
 "Megelon",
 "Proenitus",
 "Apprentice Vor'el",
 "Zalduun",
 "Botanist Taerix",
 "Vindicator Aldar",
 "Technician Zhanaa",
 "Tolaan",
 "Technician Dyvuun",
 "Aeun",
 "Caregiver Chellan",
 "Dying Blood Elf",
 "Lor'themar Theron ",
 "Ranger Captain Venn'ren",
 "Grelag",
 "Legassi",
 "\"Screaming\" Screed Luckheed",
 "Foreman Biggums",
 "Marniel Amberlight",
 "Ryathen the Somber",
 "Thiah Redmane",
 "Magistrix Carinda",
 "Wounded Blood Elf Pilgrim",
 "Taleris Dawngazer",
 "Falconer Drenna Riverwind",
 "Elsaana",
 "Gremni Longbeard",
 "Apothecary Azethen",
 "Anchorite Obadei",
 "Sedai's Corpse",
 "Pathstalker Kariel",
 "Ranger Sallina",
 "Arcanist Calesthris Dawnstar",
 "Scout Vanura",
 "Ikan",
 "Nazgrel",
 "Fel Orc Corpse",
 "Far Seer Regulkut",
 "Gorkan Bloodfist",
 "Warlord Dar'toon",
 "Lieutenant General Orion",
 "Rifleman Torrig",
 "Marshal Bluewall",
 "Scout Bloodfist",
 "General Kirika",
 "Aeranas",
 "Mirren Longbeard",
 "Makuru",
 "Amaan the Wise",
 "Nemeth Hawkeye",
 "Balandar Brightstar",
 "Diktynna",
 "Acteon",
 "Exarch Menelaous",
 "Anchorite Fateema",
 "Daedal",
 "Eralan",
 "Force Commander Danath Trollbane",
 "Field Commander Romus",
 "Magus Zabraxis",
 "Shadow Hunter Ty'jin",
 "Martik Tor'seldori",
 "Admiral Odesyus",
 "\"Cookie\" McWeaksauce",
 "Priestess Kyleen Il'dinare",
 "Archaeologist Adamant Ironheart",
 "Magwin",
 "Voidstone",
 "Cryptographer Aurren",
 "Totem of Akida",
 "Totem of Coo",
 "Totem of Tikti",
 "Totem of Yor",
 "Totem of Vark",
 "Arugoo of the Stillpine",
 "Clopper Wizbang",
 "Battered Ancient Book",
 "Anchorite Paetheus",
 "Sid Limbardi",
 "High Chief Stillpine",
 "Moordo",
 "Mound of Dirt",
 "Gurf",
 "Blood Crystal",
 "Vindicator Aalesia",
 "Kurz the Revelator",
 "Stone Guard Stok'ton",
 "Caza'rez",
 "Stillpine the Younger",
 "Morae",
 "Lieutenant Chadwick",
 "Gunny",
 "Galaen's Corpse",
 "Tracker Lyceon",
 "Harbinger Mikolaas",
 "Ruada",
 "Zaldaan",
 "Nurguni",
 "Stephanos",
 "Telenus",
 "Draenei Cartographer",
 "Torallius the Pack Handler",
 "Aonar",
 "Vorkhan the Elekk Herder",
 "Archmage Alturus",
 "Kalynna Lathred",
 "Huntress Kella Nightbow",
 "Mack Diver",
 "K. Lee Smallfry",
 "Vindicator Boros",
 "Jessera of Mac'Aree",
 "Kessel",
 "Princess Stillpine",
 "Stillpine Ambassador Frasaboo",
 "Exarch Admetius",
 "Achelus",
 "Researcher Cornelius",
 "Captain Edward Hanes",
 "Jesthenis Sunstriker",
 "Prince Toreth",
 "Interrogator Elysia",
 "Lethyn Moonfire",
 "Watcher Leesa'oh",
 "Prophet Velen",
 "Vindicator Kuros",
 "Slain Outrunner",
 "Galaen's Journal",
 "Gzhun'tt",
 "Ysiel Windsinger",
 "T'shu",
 "Khn'nix",
 "Amythiel Mistwalker",
 "Warden Hamoot",
 "Fhwoor",
 "Watcher Jhang",
 "Fahssn",
 "Vindicator Aesom",
 "Scout Loryi",
 "Ikeyen",
 "Kayra Longmane",
 "Demolitionist Legoso",
 "Vindicator Corin",
 "Magasha",
 "Reavij",
 "Zurai",
 "Scout Jyoba",
 "Shadow Hunter Denjai",
 "Anchorite Ahuurn",
 "Ikuti",
 "Ruam",
 "Noraani",
 "Haalrun",
 "Vindicator Idaar",
 "Windcaller Blackhoof",
 "Hemet Nesingwary",
 "Nahuud",
 "Andarl",
 "Timothy Daniels",
 "Kialon Nightblade",
 "Nekthar",
 "Mokasa",
 "Messenger Gazgrigg",
 "Captain Kroghan",
 "Apprentice Vishael",
 "Elementalist Lo'ap",
 "Lauranna Thar'well",
 "Gshaff",
 "Msshi'fn",
 "Witch Doctor Tor'gash",
 "Elementalist Untrag",
 "Gordawg",
 "Archmage Cedric",
 "Khadgar",
 "Puluu",
 "Maktu",
 "Gambarinka",
 "Zurjaya",
 "Seer Janidi",
 "Shado 'Fitz' Farstrider",
 "Harold Lane",
 "Elementalist Morgh",
 "Farseer Kurkush",
 "Farseer Corhuk",
 "Saurfang the Younger",
 "Farseer Margadesh",
 "Mag'har Captive",
 "Garrosh",
 "Elementalist Ioki",
 "Elementalist Sharvak",
 "Elementalist Yal'hah",
 "Arechron",
 "Otonbu the Sage",
 "Poli'lukluk the Wiser",
 "Kurenai Captive",
 "Gezhe",
 "Jorin Deadeye",
 "Kilrath",
 "Unkor the Ruthless",
 "Prospector Conall",
 "Kristen Dipswitch",
 "Zerid",
 "Elkay'gan the Mystic",
 "Consortium Recruiter",
 "Shadrek",
 "Huntress Bintook",
 "Mo'mor the Breaker",
 "Corki",
 "Lantresor of the Blade",
 "Garadar Bulletin Board",
 "Warden Bullrok",
 "Telaar Bulletin Board",
 "Warden Moi'bff Jill",
 "Matron Drakia",
 "Elder Yorley",
 "Elder Ungriz",
 "Warden Treelos",
 "Huntress Kima",
 "Earthbinder Tavgren",
 "Tooki",
 "Jenai Starwhisper",
 "Gurgthock",
 "Wodin the Troll-Servant",
 "Empoor",
 "Wind Trader Lathrai",
 "Altruis the Sufferer",
 "Matron Celestine",
 "Thander",
 "Rokag",
 "Ros'eleth",
 "Rakoria",
 "Lieutenant Meridian",
 "Sergeant Chawni",
 "Bertelm",
 "Theloria Shadecloak",
 "Kurgatok",
 "Shadowstalker Kaide",
 "Sal'salabim",
 "Fel Orc Plans",
 "Sha'nir",
 "Malukaz",
 "Ishanah",
 "Arcanist Adyria",
 "Soolaveen",
 "Ramdor the Mad",
 "Taela Everstride",
 "Mawg Grimshot",
 "Seth",
 "Lieutenant Gravelhammer",
 "Private Weeks",
 "Advisor Faila",
 "Scout Neftis",
 "Greatmother Geyah",
 "Warp-Scryer Kryv",
 "Honor Guard Wesilow",
 "Isla Starmane",
 "Captain Auric Sunchaser",
 "Dumphry",
 "Father Malgor Devidicus",
 "Prospector Nachlan",
 "Scout Jorli",
 "Defender Sorli",
 "Chief Researcher Amereldine",
 "Chief Researcher Kartos",
 "Mother Kashur",
 "Megzeg Nukklebust",
 "Spymistress Mehlisah Highcrown",
 "Field Commander Mahfuun",
 "Isfar",
 "K'ure",
 "A'dal",
 "Warrant Officer Tracy Proudwell",
 "Wazat",
 "Battlecryer Blackeye",
 "\"Shotgun\" Jones",
 "Ohlorn Farstrider",
 "Watch Commander Relthorn Netherwane",
 "Commander Duron",
 "Vlagga Freyfeather",
 "Sergeant Shatterskull",
 "Forward Commander To'arch",
 "Tola'thion",
 "Amish Wildhammer",
 "Marshal Isildor",
 "Sergeant Altumus",
 "Forward Commander Kingston",
 "Mahuram Stouthoof",
 "Lieutenant Amadi",
 "Wing Commander Gryphongar",
 "Greatfather Aldrimus",
 "Nexus-Prince Haramad",
 "Whitebark's Spirit",
 "Ravandwyr",
 "Image of Archmage Vargoth",
 "Archmage Vargoth",
 "Spy Grik'tha",
 "Oloraak",
 "Custodian Dieworth",
 "Netherologist Coppernickels",
 "Rocket-Chief Fuselage",
 "Spymaster Thalodien",
 "Bot-Specialist Alley",
 "Maxx A. Million Mk. V",
 "Veronia",
 "Caledis Brightdawn",
 "Boots",
 "Magistrix Larynna",
 "Magister Theledorn",
 "Lead Sapper Blastfizzle",
 "Nether-Stalker Khay'ji",
 "Papa Wheeler",
 "Haggard War Veteran",
 "Artificer Morphalius",
 "Emissary Mordiba",
 "Chief Engineer Trep",
 "Ha'lei",
 "Ezekiel",
 "Althen the Historian",
 "\"Dirty\" Larry",
 "Lieutenant-Sorcerer Morran",
 "Mama Wheeler",
 "Foreman Razelcraz",
 "Exarch Orelis",
 "Apothecary Zelana",
 "Apothecary Albreck",
 "Anchorite Karja",
 "B'naar Control Console",
 "Doctor Vomisa, Ph.T.",
 "Nitrin the Learned",
 "Commander Hogarth",
 "Gahruj",
 "Image of Nexus-Prince Haramad",
 "Dealer Hazzin",
 "Wind Trader Marid",
 "Image of Wind Trader Marid",
 "Shrouded Figure",
 "Tyri",
 "Wind Trader Tuluman",
 "Andormu",
 "Ogath the Mad",
 "Steward of Time",
 "Magister Aledis",
 "General Krakork",
 "Zuben Elgenubi",
 "N. D. Meancamp",
 "Drijya",
 "Necromantic Focus",
 "Nether-Stalker Oazul",
 "Foreman Sundown",
 "Adyen the Lightwarden",
 "Apprentice Andrethan",
 "Thadell",
 "Bessy",
 "Zephyrion",
 "Nether-Stalker Nauthis",
 "Commander Ameer",
 "Image of Commander Ameer",
 "Runetog Wildhammer",
 "Agent Araxes",
 "Gryphoneer Windbellow",
 "Wing Commander Brack",
 "Mehrdad",
 "Earthbinder Galandria Nightbreeze",
 "Behomat",
 "Agent Ya-six",
 "Naladu",
 "Kaylaan",
 "Field Marshal Brock",
 "Magister Bloodhawk",
 "Akoru the Firecaller",
 "Researcher Navuud",
 "Magistrix Fyalenn",
 "Voren'thal the Seer",
 "Flesh Handler Viridius",
 "Ghabar",
 "Captured Protectorate Vanguard",
 "Aurine Moonblaze",
 "Dulvi",
 "Tashar",
 "Shauly Pore",
 "Audi the Needle",
 "Professor Dabiri",
 "Soridormi",
 "Vurtok Axebreaker",
 "Earthmender Wilda",
 "Earthmender Torlok",
 "Rina Moonspring",
 "Arazmodu",
 "Corporal Ironridge",
 "Gor'drek",
 "Tor'chunk Twoclaws",
 "Commander Skyshadow",
 "Bronwyn Stouthammer",
 "Borgrim Stouthammer",
 "Oronok Torn-heart",
 "Vindicator Vuuleen",
 "Grom'tor, Son of Oronok",
 "Rokgah Bloodgrip",
 "Ar'tor, Son of Oronok",
 "Spirit of Ar'tor",
 "T'chali the Witch Doctor",
 "Borak, Son of Oronok",
 "Tobias the Filth Gorger",
 "Daranelle",
 "Lashh'an Tome",
 "Tally Zapnabber",
 "Wing Commander Nuainn",
 "Dertrok",
 "Timeon",
 "Anchorite Ceyla",
 "Gryphonrider Kieran",
 "Stormer Ewan Wildwing",
 "Sanoru",
 "R-3D0",
 "Toshley",
 "Exarch Onaala",
 "Nickwinkle the Metro-Gnome",
 "Blood Guard Gulmok",
 "Scout Zagran",
 "Plexi",
 "Fizit \"Doc\" Clocktock",
 "Nakansi",
 "Rexxar",
 "Leoroxx",
 "Taerek",
 "Silmara",
 "Vindicator Aluumen",
 "Dizzy Dina",
 "Ordinn Thunderfist",
 "Grokom Deatheye",
 "Chief Apothecary Hildagard",
 "Akama",
 "Razak Ironsides",
 "Ancient Shadowmoon Spirit",
 "Zorus the Judicator",
 "Warcaller Sardon Truslice",
 "Warcaller Beersnout",
 "Researcher Tiorus",
 "Gnomus",
 "David Wayne",
 "Earthmender Sophurus",
 "Earthmender Splinthoof",
 "Tree Warden Chawn",
 "Arcanist Thelis",
 "Larissa Sunstrike",
 "Overlord Or'barokh",
 "Thane Yoregar",
 "O'Mally Zapnabber",
 "Baron Sablemane",
 "Samia Inkling",
 "Garm Wolfbrother",
 "Watcher Moonshade",
 "Archmage Leryda",
 "Kurdran Wildhammer",
 "Kor'kron Wind Rider",
 "Faradrella",
 "Rohok",
 "Parshah",
 "Sergeant Kargrul",
 "Mosswood the Ancient",
 "Wildhammer Gryphon Rider",
 "Crystal Prison",
 "Captain Darkhowl",
 "Commander Haephus Stonewall",
 "Lieutenant Fairweather",
 "Mordenai",
 "Varen the Reclaimer",
 "Neltharaku",
 "Wildlord Antelarion",
 "Zezzak",
 "Legion Communicator",
 "Battlemage Vyara",
 "Harbinger Saronen",
 "Treebole",
 "Apothecary Antonivich",
 "Kirrik the Awakened",
 "High Priest Orglum",
 "Rilak the Redeemed",
 "Spiritcaller Dohgar",
 "Ethan",
 "Karynaku",
 "Matron Varah",
 "Lady Dena Kennedy",
 "Scout Navrin",
 "Oakun",
 "Mekeda",
 "Defender Grashna",
 "Akuno",
 "Wing Commander Dabir'ee",
 "Lakotae",
 "Skywing",
 "Zarevhi",
 "Lorokeem",
 "Assistant Klatu",
 "Evergrove Druid",
 "Alchemist Gribble",
 "Commander Ra'vaj",
 "Vekax",
 "Vindicator Haylen",
 "Chief Archaeologist Letoll",
 "Dwarfowitz",
 "Sab'aoth",
 "Sentinel Moonwhisper",
 "Grunt Grahk",
 "Orphan Matron Mercy",
 "Blood Elf Orphan",
 "Draenei Orphan",
 "Xi'ri",
 "O'ros",
 "Protectorate Advisor Rahim",
 "Grok",
 "Mog'dorg the Wizened",
 "V'eru",
 "Chort",
 "Severin",
 "Sky Commander Adaris",
 "Sky Sergeant Doryn",
 "Chu'a'lor",
 "Sky Sergeant Vanderlip",
 "Overlord Mor'ghor",
 "Taskmaster Varkule Dragonbreath",
 "Yarzill the Merc",
 "Hazzik",
 "Torkus",
 "Old Orok",
 "Seer Nakha",
 "Vindicator Aeus",
 "Arcanist Raestan",
 "Bossi Pentapiston",
 "Seer Jovar",
 "Rip Pedalslam",
 "Brunn Flamebeard",
 "Fantei",
 "Agadai",
 "Dama Wildmane",
 "Kronk",
 "Chief Overseer Mudlump",
 "Sky Commander Keller",
 "Murg \"Oldie\" Muckjaw",
 "Ja'y Nosliw",
 "Skyguard Khatie",
 "Trope the Filth-Belcher",
 "Corlok the Vet",
 "Wing Commander Ichman",
 "Wing Commander Mulverick",
 "Captain Skyshatter",
 "Mistress of the Mines",
 "Dragonmaw Foreman",
 "Gahk",
 "Ronag the Slave Driver",
 "Skyguard Prisoner",
 "Illidari Lord Balthas",
 "Jho'nass",
 "Skyguard Handler Deesak",
 "Commander Hobb",
 "Yuula",
 "Commander Arcus",
 "Barthamus",
 "Aether-tech Apprentice",
 "Ahab Wheathoof",
 "Griftah",
 "Budd Nedreck",
 "Bombardier Petrov",
 "Engineer Feknut",
 "Chef Kettleblack",
 "Captain Adams",
 "Prigmon",
 "Apothecary Lysander",
 "Old Man Stonemantle",
 "Overseer Irena Stonemantle",
 "Steel Gate Chief Archaeologist",
 "Ember Clutch Ancient",
 "Mage-Lieutenant Malister",
 "Cannoneer Ely",
 "Scout Knowles",
 "Moxie Steelgrille",
 "Drazzit Dripvalve",
 "Tabetha",
 "Guard Byron",
 "Apprentice Tasserel",
 "Sapper Steelring",
 "High Executor Anselm",
 "Explorer Abigail",
 "Pontius",
 "Macalroy",
 "Vice Admiral Keller",
 "Captain Harker",
 "Father Levariol",
 "Dark Ranger Lyana",
 "Apothecary Hanes",
 "Westguard Sergeant",
 "Scout Valory",
 "Defender Mordun",
 "Dragonskin Scroll",
 "Chieftain Ashtotem",
 "Winterhoof Brave",
 "Greatmother Ankha",
 "Dark Ranger Marrah",
 "Celea Frozenmane",
 "Gil Grisert",
 "Ahota Whitefrost",
 "Beltrand McSorf",
 "Pulroy the Archaeologist",
 "Zedd",
 "Nokoma Snowseer",
 "Glorenfeld",
 "Plaguebringer Tillinghast",
 "Sergeant Gorth",
 "Foreman Colbey",
 "Sage Mistwalker",
 "Ares the Oathbound",
 "Lord Irulon Trueblade",
 "Trapper Jethan",
 "Longrunner Skycloud",
 "Junat the Wanderer",
 "Apothecary Malthus",
 "Daegarn",
 "Apothecary Grick",
 "Lieutenant Maeve",
 "Lurielle",
 "Lydell",
 "Chief Plaguebringer Harris",
 "\"Hacksaw\" Jenny",
 "Wind Tamer Kagan",
 "Watcher Moonleaf",
 "Ulfang",
 "Peppy Wrongnozzle",
 "Christopher Sloan",
 "Thoralius the Wise",
 "Prospector Belvar",
 "Longrunner Pembe",
 "Wind Trader Zhareem",
 "Researcher Aderan",
 "Nether-Stalker Mah'duun",
 "Sage Edan",
 "The Rokk",
 "Explorer Jaren",
 "Apothecary Anastasia",
 "Quartermaster Brevin",
 "Cormath the Courier",
 "Guard Captain Zorek",
 "Lieutenant Icehammer",
 "Old Icefin",
 "Scribe Seguine",
 "Handsome Terry",
 "Harold Lagras",
 "Stanwad",
 "Alicia",
 "Caylee Dak",
 "Elder Atuik",
 "Zeh'gehn",
 "Taruk",
 "Scuttle Frostprow",
 "Annie Bonn",
 "Anuniaq",
 "Walt",
 "Donny",
 "Exarch Larethor",
 "Dathris Sunstriker",
 "Lakoor",
 "Karrtog",
 "Orfus of Kamagua",
 "Exorcist Sullivan",
 "Exorcist Vaisha",
 "Grezzix Spindlesnap",
 "\"Silvermoon\" Harry",
 "Exarch Nasuun",
 "Magistrix Seyla",
 "Captain Ellis",
 "Mar'nah",
 "Captain Theris Dawnhearth",
 "Vindicator Xayann",
 "Battlemage Arynna",
 "Tradesman Portanuus",
 "Smith Hauthaa",
 "Harbinger Inuuro",
 "Magister Ilastar",
 "Captain Valindria",
 "Vindicator Kaalan",
 "Astromancer Darnarian",
 "Anchorite Ayuri",
 "Anchorite Kairthos",
 "King Mrgl-Mrgl",
 "Ahlurglgr",
 "Brglmurgl",
 "Mrmrglmr",
 "Cleaver Bmurglbrm",
 "Glrglrglr",
 "Lurgglbr",
 "Lunk-tusk",
 "Endorah",
 "Librarian Donathan",
 "Midge",
 "Librarian Garren",
 "Warsong Recruitment Officer",
 "Overlord Bor'gorok",
 "Grunt Ragefist",
 "Longrunner Proudhoof",
 "High Overlord Saurfang",
 "Overlord Razgor",
 "Leryssa",
 "William Allerton",
 "James Deacon",
 "Old Man Colburn",
 "Private Brau",
 "Elder Atkanok",
 "Quartermaster Holgoth",
 "Foreman Mortuus",
 "Etaruk",
 "Karuk",
 "Shadowstalker Barthus",
 "Shadowstalker Luther",
 "Shadowstalker Ickoris",
 "Veehja",
 "Spirit Talker Snarlfang",
 "Imperean",
 "Chieftain Wintergale",
 "Wind Master To'bor",
 "Farseer Grimwalker's Spirit",
 "Gorge the Corpsegrinder",
 "Ortrosh",
 "Durm Icehide",
 "Mobu",
 "Crafty Wobblesprocket",
 "Librarian Normantis",
 "Sage Aeire",
 "Snow Tracker Grumm",
 "Waltor of Pal'ea",
 "Master Fire Eater",
 "Snow Tracker Junek",
 "Mootoo the Younger",
 "Elder Mootoo",
 "Old Man Barlo",
 "Recruitment Officer Blythe",
 "General Arlos",
 "Bonker Togglevolt",
 "Fizzcrank Fullthrottle",
 "Greatmother Taiga",
 "Sage Highmesa",
 "Shadowstalker Canarius",
 "Longrunner Bristlehorn",
 "Surristrasz",
 "Warmage Anzim",
 "Archmage Evanor",
 "Greatfather Mahan",
 "Wind Tamer Barah",
 "Farmer Torp",
 "Mordle Cogspinner",
 "Bixie Wrenchshanker",
 "Tinky Wickwhistle",
 "Supply Master Taz'ishi",
 "Shadowstalker Getry",
 "Airman Skyhopper",
 "Jinky Wingnut",
 "Warden Nork Bloodfrenzy",
 "Scout Tungok",
 "Abner Fizzletorque",
 "Bloodmage Laurith",
 "Primal Mighthorn",
 "Massive Glowing Egg",
 "Iggy \"Tailspin\" Cogtoggle",
 "Sergeant Hammerhill",
 "Archmage Berinand",
 "Medic Hawthorn",
 "Cultist Shrine",
 "Captain \"Lefty\" Lugsail",
 "Admiral Cantlebree",
 "Harbinger Vurenn",
 "Vindicator Yaala",
 "Zaza",
 "Arch Druid Lathorius",
 "Hierophant Cenius",
 "Hierophant Liandra",
 "Emissary Mordin",
 "Lord Torvos",
 "Khu'nok the Behemoth",
 "Harbinger Haronem",
 "Fezzix Geartwist",
 "Fire Eater",
 "Killinger the Den Watcher",
 "Earthen Ring Elder",
 "Crashed Recon Pilot",
 "Ambassador Talonga",
 "Sage Earth and Sky",
 "Earthen Ring Guide",
 "Dorain Frosthoof",
 "Gerald Green",
 "Plagued Grain",
 "Iron Eyes",
 "Jeremiah Hawning",
 "Librarian Serrah",
 "Wendy Darren",
 "Flame Eater",
 "Master Flame Eater",
 "Raelorasz",
 "Mark Hanes",
 "Mother Tauranook",
 "Wartook Iceborn",
 "Ataika",
 "Thassarian",
 "Corporal Venn",
 "Utaik",
 "Keristrasza",
 "Elder Muahit",
 "Elder Ko'nani",
 "Trapper Mau'i",
 "Hilda Stoneforge",
 "Festival Loremaster",
 "Festival Talespinner",
 "Human Commoner",
 "Orc Commoner",
 "Emissary Brighthoof",
 "Senior Sergeant Juktok",
 "Blood Guard Roh'kill",
 "Fallen Earthen Warrior",
 "Kurun",
 "Samir",
 "Battered Journal",
 "Torthen Deepdig",
 "Drakuru",
 "Image of Drakuru",
 "Emissary Skyhaven",
 "Image of Archmage Modera",
 "Envoy Ripfang",
 "Image of Archmage Aethas Sunreaver",
 "Captain Gryan Stoutmantle",
 "Brugar Stoneshear",
 "Ethenial Moonshadow",
 "Overlord Agmar",
 "Tua'kea",
 "Surveyor Orlond",
 "Wrecked Crab Trap",
 "Sage Paluna",
 "Emily",
 "Squire Walter",
 "Toalu'u the Mystic",
 "Mack Fearsen",
 "Elder Mana'loa",
 "Messenger Torvus",
 "Kurzel",
 "Borus Ironbender",
 "Kilix the Unraveler",
 "Heart of the Ancients",
 "Narf",
 "Xink",
 "Zivlix",
 "Captain Gort",
 "Greatmother Icemist",
 "Banthok Icemist",
 "Commander Saia Azuresteel",
 "Valnok Windrager",
 "Scout Vor'takh",
 "Zort",
 "Ko'char the Unbreakable",
 "Gavrock",
 "Harrison Jones",
 "Harkor",
 "Wanted!",
 "Sarendryana",
 "Rokhan",
 "Earthwarden Grife",
 "Mage-Commander Evenstar",
 "Soar Hawkfury",
 "Doctor Sintar Malefious",
 "Lieutenant Dumont",
 "Koltira Deathweaver",
 "Kraz",
 "Hotawa",
 "Tariolstrasz",
 "Gan'jo",
 "Alexstrasza the Life-Binder",
 "Raegar Breakbrow",
 "Sasha",
 "Counselor Talbot",
 "Duane",
 "Kontokanis",
 "Aurastrasza",
 "Private Casey",
 "Courier Lanson",
 "Petrov",
 "Private Arun",
 "Ruuna the Blind",
 "Tormak the Scarred",
 "Prospector Rokar",
 "Warden Jodi Moonsong ",
 "Raider Captain Kronn",
 "Palena Silvercloud",
 "High Commander Halford Wyrmbane",
 "Hidetrader Jun'ik",
 "Conqueror Krenna",
 "Mountaineer Kilian",
 "Tobias Sarkhoff",
 "Chief Plaguebringer Middleton",
 "High Executor Wroth",
 "Apothecary Vicky Levine",
 "Windseer Grayhorn",
 "Sergeant Thurkin",
 "Quartermaster Bartlett",
 "Master Woodsman Anderhol",
 "Hansel Bauer",
 "Hierophant Thayreen",
 "Woodsman Drake",
 "Amberseed",
 "Deathguard Molder",
 "Spy Mistress Repine",
 "Gryphon Commander Urik",
 "Agent Skully",
 "Synipus",
 "Sergeant Nazgrim",
 "Commander Lynore Windstryke",
 "Serinar",
 "Nalice",
 "Pipthwack",
 "Highlord Leoric Von Zeldig",
 "Grekk",
 "Siege Engineer Quarterflash",
 "Slinkin the Demo-gnome",
 "Hugh Glass",
 "Lurz",
 "Zelig the Visionary",
 "Commander Bargok",
 "Orik Trueheart",
 "Aumana",
 "Sergeant Hartsman",
 "Ivan",
 "Envoy Ducal",
 "Rheanna",
 "Greer Orehammer",
 "Sergei",
 "Captured Trapper",
 "Caged Prisoner",
 "Surveyor Hansen",
 "Katja",
 "Cavalier Durkon",
 "Flesh-bound Tome",
 "Baron Freeman",
 "General Khazgar",
 "Lieutenant Stuart",
 "Centurion Kaggrum",
 "Inquisitor Hallard",
 "Sergeant Downey",
 "Stone Guard Ragetotem",
 "Duke August Foehammer",
 "Ambo Cash",
 "Lord Afrasastrasz",
 "Anya",
 "Squire Percy",
 "Soulok Stormfury",
 "Ceristrasz",
 "Krasus",
 "Gorgonna",
 "Grennix Shivwiggle",
 "Bookie Vel'jen",
 "General Gorlok",
 "Gurtor",
 "Provisioner Lorkran",
 "Commander Howser",
 "Vas the Unstable",
 "Rodney Wells",
 "Barblefink",
 "Scout Captain Carter",
 "Vargastrasz",
 "Nishera the Garden Keeper",
 "Lord Itharius",
 "Lauriel Trueblade",
 "Golluck Rockfist",
 "Yord \"Calamity\" Icebeard",
 "Plunderbeard",
 "Commander Eligor Dawnbringer",
 "Legion Commander Tyralion",
 "Nozzlerust Supply Runner",
 "Chromie",
 "Captured Tuskarr Prisoner",
 "Legion Commander Yorik",
 "Highlord Bolvar Fordragon",
 "Ranger Captain Areiel",
 "Sauranok the Mystic",
 "Monte Muzzleshot",
 "Torastrasza",
 "Commander Kunz",
 "Captain Brandon",
 "Commander Falstaav",
 "Sergeant Stackhammer",
 "Hexxer Ubungo",
 "Corporal Maga",
 "Captain Rupert",
 "Dr. Rogers",
 "Don Carlos",
 "Darkmoon Fortune Teller",
 "Captain Grondel",
 "Archmage Pentarus",
 "Weslex Quickwrench",
 "Debaar",
 "Oracle Soo-rahm",
 "Apprentice Pestlepot",
 "Alchemist Finklestein",
 "Tracker Gekgek",
 "High-Shaman Rakjak",
 "Goregek the Gorilla Hunter",
 "Elder Harkek",
 "Zepik the Gorloc Hunter",
 "Injured Rainspeaker Oracle",
 "Tilda Darathan",
 "Crusader Valus",
 "Avatar of Freya",
 "The Etymidian",
 "Buck Cantwell",
 "Sergeant Moonshard",
 "Specialist Cogwheel",
 "Sub-Lieutenant Jax",
 "Zim'Abwa",
 "Longrunner Nanik",
 "High-Oracle Soo-say",
 "Lafoo",
 "Mistcaller Soo-gan",
 "Moodle",
 "Artruis's Phylactery",
 "Eitrigg",
 "Drostan",
 "The Lich King",
 "Instructor Razuvious",
 "Dorian Drakestalker",
 "Zootfizzle",
 "Cultist Corpse",
 "Captain Arnath",
 "Witch Doctor Khufu",
 "Zim'Torga",
 "Scalper Ahunae",
 "Chad",
 "Har'koa",
 "Stefan Vadu",
 "Grimbooze Thunderbrew",
 "Chronicler To'kini",
 "Element-Tamer Dagoda",
 "Spirit of Rhunok",
 "Tamara Wobblesprocket",
 "Gristlegut",
 "Zim'Rhuk",
 "Highlord Darion Mograine",
 "Overlord Drakuru",
 "Quetz'lun's Spirit",
 "Scourge Commander Thalanor",
 "Prince Valanar",
 "Pilot Vic",
 "Orithos the Sky Darkener",
 "Salanar the Horseman",
 "Colvin Norrington",
 "Engineer Helice",
 "Timeworn Coffer",
 "Jaloot",
 "Professor Calvert",
 "Gothik the Harvester",
 "Vekgar",
 "Shaman Jakjek",
 "Oracle Soo-dow",
 "Lightningcaller Soo-met",
 "Prince Keleseth",
 "Noth the Plaguebringer",
 "Plague Cauldron",
 "Baron Rivendare",
 "Orbaz Bloodbane",
 "Oracle Soo-nee",
 "Olrun the Battlecaller",
 "Knight Commander Plaguefist",
 "High General Abbendis",
 "Sergeant Riannah",
 "Archmage Celindra",
 "Magistrix Kaelana",
 "Bloodrose Datura",
 "Magister Teronus III",
 "Korg the Cleaver",
 "Baron Sliver",
 "Lord-Commander Arete",
 "Setaal Darkmender",
 "Uzo Deathcaller",
 "Jeer Sparksocket",
 "Ricket",
 "Gino",
 "Tore Rumblewrench",
 "Injured Goblin Miner",
 "Aurochs Grimbane",
 "Lok'lira the Crone",
 "Gretchen Fizzlespark",
 "Brijana",
 "Archaeologist Andorin",
 "Chief Rageclaw",
 "Elder Shaman Moky",
 "Rork Sharpchin",
 "Lagnus",
 "Glorthal Stiffbeard",
 "Fjorlin Frostbrow",
 "Inventor's Library Console",
 "Yorg Stormheart",
 "Drom Frostgrip",
 "Creteus",
 "The Guardian's Charge",
 "Brann Bronzebeard",
 "Olut Alegut",
 "Orders From Drakuru",
 "Crusader Lord Lantinga",
 "Bouldercrag the Rockshaper",
 "Gretta the Arbiter",
 "Thorim",
 "SCRAP-E",
 "Prototype Console",
 "Crusader MacKellar",
 "Boktar Bloodfury",
 "Astrid Bjornrittar",
 "Engineer Reed",
 "Gerk",
 "Mildred the Cruel",
 "Khaliisi",
 "Gymer",
 "Moteha Windborn ",
 "Fjorn's Anvil",
 "Njormeld",
 "Thyra Kvinnshal",
 "Duke Lankral",
 "Iva the Vengeful",
 "Vaelen the Flayed",
 "Harpoon Crate",
 "The Leaper",
 "Timothy Jones",
 "King Jokkum",
 "Velog Icebellow",
 "Hodir's Horn",
 "Bruor Ironbane",
 "Vile",
 "Frostworg Denmother",
 "The Bone Witch",
 "Bloodguard Lorga",
 "Lorekeeper Randvir",
 "Hodir's Spear",
 "Hodir's Helm",
 "Crusade Commander Entari",
 "Xarantaur",
 "Highlord Tirion Fordring",
 "Chieftain Swiftspear",
 "Crusader Lord Dalfors",
 "Father Gustav",
 "Penumbrius",
 "Arngrim the Insatiable",
 "Tracker Val'zij",
 "Bethod Feigr",
 "Crusader Bridenbrad",
 "Siegemaster Fezzik",
 "Keeper Remulos",
 "Bridenbrad's Possessions",
 "Brom Brewbaster",
 "Rollick MacKreel",
 "Thomas Kolichio",
 "Orn Tenderhoof",
 "Tol'mar",
 "Chronicler Bah'Kini",
 "Katherine Lee",
 "Orton Bennet",
 "Arille Azuregaze",
 "Ranid Glowergold",
 "The Ebon Watcher",
 "Darkrider Arly",
 "Awilo Lon'gomba",
 "Belgaristrasz",
 "Image of Belgaristrasz",
 "Crusade Architect Silas",
 "Brigg Smallshanks",
 "Crusade Engineer Spitzpatrick",
 "Crusader Olakin Sainrith",
 "Vereth the Cunning",
 "Sorceress Kaylana",
 "Bowyer Randolph",
 "Keritose Bloodblade",
 "Anchorite Tessa",
 "Rhonin",
 "Warden Alturas",
 "Commander Zanneth",
 "Commander Dardosh",
 "Tactical Officer Ahbramis",
 "Tactical Officer Kilrath",
 "Lieutenant Murp",
 "Senior Demolitionist Legoso",
 "Siegesmith Stronghoof",
 "Hoodoo Master Fu'jin",
 "Vieron Blazefeather",
 "Primalist Mulfort",
 "Geirrvif",
 "Gjonner the Merciless",
 "Father Kamaros",
 "Absalan the Pious",
 "Warlord Hork Strongbrow",
 "Sky-Reaver Korm Blackscar",
 "Marshal Ivalius",
 "High Captain Justin Bartlett",
 "Brother Keltan",
 "Dying Berserker",
 "Dying Soldier",
 "Matthias Lehner",
 "Chief Engineer Copperclaw",
 "Sergeant Kregga",
 "Saronite Bomb Stack",
 "Pulsing Crystal",
 "Frazzle Geargrinder",
 "Blast Thunderbomb",
 "Skybreaker Squad Leader",
 "Ground Commander Koup",
 "Chief Engineer Boltwrench",
 "Kor'kron Squad Leader",
 "Ground Commander Xutjja",
 "Wrecked Demolisher",
 "Darkspeaker R'khem",
 "Warbringer Davos Rioht",
 "Knight-Captain Drosche",
 "Fringe Engineer Tezzla",
 "Kibli Killohertz",
 "Captain Kendall",
 "Corastrasza",
 "Officer Van Rossem",
 "Sky-Reaver Klum",
 "Calder",
 "Spring Gatherer",
 "Spring Collector",
 "Forsaken Commoner",
 "Noblegarden Vendor",
 "Noblegarden Merchant",
 "Sentinel Tysha Moonblade",
 "Balthule Shadowstrike",
 "Lieutenant Morra Starbreeze",
 "Alanndarian Nightsong",
 "Kerlonian Evershade",
 "Huntress Sandrya Moonfall",
 "Dentaria Silverglade",
 "Sentinel Lendra",
 "Serendia Oakwhisper",
 "Wizbang Cranktoggle",
 "Buzzbox 413",
 "Ranger Glynda Nal'Shea",
 "Moon Priestess Tharill",
 "Foriel Broadleaf",
 "Elder Brolg",
 "Buzzbox 723",
 "Tharnariun Treetender",
 "Johnathan Staats",
 "Sentinel Selarin",
 "Corvine Moonrise",
 "Yalda",
 "Ha'wana",
 "Gorbold Steelhand",
 "Arya Autumnlight",
 "Cerellean Whiteclaw",
 "Volcor",
 "Keeper Karithus",
 "Seraphine",
 "Gren Tornfur",
 "Malfurion Stormrage",
 "Elder Brownpaw",
 "Aroom",
 "Selenn",
 "Thessera",
 "Sir Marcus Barlowe",
 "Marshal Jacob Alerius",
 "Sentinel Shyela",
 "Bathran",
 "Priestess Alinya",
 "Shindrell Swiftfire",
 "Archivum Console",
 "Archaeologist Hollee",
 "Elisa Steelhand",
 "Prospector Doren",
 "Dinah Halfmoon",
 "Truun",
 "Talen",
 "Gorat",
 "Evenar Stillwhisper",
 "Orendil Broadleaf",
 "Scout Shalyndria",
 "Gorka",
 "Moon Priestess Maestra",
 "Liladris Moonriver",
 "Crusader Rhydalla",
 "Pilot Hammerfoot",
 "Captain Rugelfuss",
 "Mountaineer Kadrell",
 "Keeper Heartwise",
 "Raene Wolfrunner",
 "Sentinel Avana",
 "Sentinel Luara",
 "Magmar Fellhew",
 "Marek Ironheart",
 "Magistrate Bluntnose",
 "Stolen Explorers' League Document",
 "Torren Squarejaw",
 "Captain Joseph Holley",
 "Arcanist Taelis",
 "Justicar Mariel Trueheart",
 "Magister Edien Sunhollow",
 "Avareth Swiftstrike",
 "Amariel Sunsworn",
 "Galathia Brightdawn",
 "Eadric the Pure",
 "Anchorite Buurq",
 "Ambrose Boltspark",
 "Jaelyne Evensong",
 "Colosos",
 "Mokra the Skullcrusher",
 "Zul'tore",
 "Runok Wildmane",
 "Deathstalker Visceri",
 "Eressea Dawnsinger",
 "Sentinel Luciel Starwhisper",
 "Lana Stouthammer",
 "Rollo Sureshot",
 "Clara Tumblebrew",
 "Tickin Gearspanner",
 "Flickin Gearspanner",
 "Durak",
 "Saandos",
 "Ranii",
 "Illestria Bladesinger",
 "Airae Starseeker",
 "Akinos",
 "Gnarl",
 "Morah Worgsister",
 "Shadow Hunter Mezil-kree",
 "Gahju",
 "Dern Ragetotem",
 "Anka Clawhoof",
 "Sarah Chalke",
 "Handler Dretch",
 "Kethiel Sunlance",
 "Aneera Thuron",
 "Crok Scourgebane",
 "Cellian Daybreak",
 "Luuri",
 "Zor'be the Bloodletter",
 "Gaivan Shadewalker",
 "Illyrie Nightfall",
 "Locke Okarr",
 "Krokk",
 "Prospector Loren",
 "Marcia Chase",
 "Disgusting Workbench",
 "Olisarra the Kind",
 "Mathas Wildwood",
 "Squire Artie",
 "Commander Grimfang",
 "Sentinel Thenysil",
 "Mor'vek",
 "Kulg Gorespatter",
 "Overseer Gorthak",
 "Hephaestus Pilgrim",
 "Guardian Menerin",
 "Guardian Gurtar",
 "Vear Darksnout",
 "Sabina Pilgrim",
 "Dorak",
 "Broyk",
 "Stikwad",
 "Core",
 "Kathrena Winterwisp",
 "Dagrun Ragehammer",
 "Arctanus",
 "The Vortex",
 "Venomhide Hatchling",
 "Balren of the Claw",
 "Archaeologist Groff",
 "Larien",
 "Onu",
 "Aros",
 "Felros",
 "Warlord Wrathspine",
 "Prospector Remtravel",
 "Jr. Archaeologist Ferd",
 "Huntress Jalin",
 "Pelturas Whitemoon",
 "Avrus Illwhisper",
 "Avrus the Redeemed",
 "Orphan Matron Aria",
 "Sentinel Melyria Frostshadow",
 "Halannia",
 "Oracle Orphan",
 "Wolvar Orphan",
 "Tweedle",
 "Sentinel Kyra Starsong",
 "Darkscale Assassin",
 "Thagg",
 "Togrik",
 "Sentinel Velene Starstrike",
 "Faldreas Goeth'Shael",
 "Benjari Edune",
 "Grol'dom Kodo",
 "Una Wolfclaw",
 "Flooz",
 "Rocco Whipshank",
 "Thork",
 "Bolyun",
 "Foreman Jinx",
 "The Bomb",
 "Big Baobob",
 "Krolg",
 "Ta'jari",
 "Gorgal Angerscar",
 "Sashya",
 "Geargrinder Gizmo",
 "Sassy Hardwrench",
 "Bamm Megabomb",
 "Fizz Lighter",
 "Sister Goldskimmer",
 "Slinky Sharpshiv",
 "Maxx Avalanche",
 "Evol Fingers",
 "Warrior-Matic NX-01",
 "Foreman Dampwick",
 "Night Elf Commoner",
 "Gregory Tabor",
 "Jasper Moore",
 "Edward Winslow",
 "Isaac Allerton",
 "Goblin Commoner",
 "Miles Standish",
 "William Mullins",
 "Tyrande Whisperwind",
 "Francis Eaton",
 "Dokin Farplain",
 "Baron Longshore",
 "Caitrin Ironkettle",
 "Tony Two-Tusk",
 "Ellen Moore",
 "Mary Allerton",
 "Roberta Carter",
 "Mahara Goldwheat",
 "Ondani Greatmill",
 "Bountiful Table Hostess",
 "Bountiful Feast Hostess",
 "Kala'ma",
 "Megs Dreadshredder",
 "Narasi Snowdawn",
 "Savinia Loresong",
 "Prince Liam Greymane",
 "Lieutenant Walden",
 "Tylos Dawnrunner",
 "Gwen Armstead",
 "Crusader Silverdawn",
 "High Crusader Adelard",
 "FBoK Bank Teller",
 "Candy Cane",
 "Chip Endale",
 "Trade Prince Gallywix",
 "Ag'tor Bloodfist",
 "Claims Adjuster",
 "Malynea Skyreaver",
 "Labor Captain Grabbit",
 "Kalec",
 "Ergll",
 "Girana the Blooded",
 "Linzy Blackbolt",
 "Lord Darius Crowley",
 "King Genn Greymane",
 "Captain Broderick",
 "Josiah Avery",
 "Horzak Zignibble",
 "Furien",
 "Cerelia",
 "Sorrem",
 "Ancient Tablets",
 "Headquarters Radio",
 "Weapons Cabinet",
 "Cup of Elune",
 "Ancient Vortex Runestone",
 "Foreman Fisk",
 "Custer Clubnik",
 "Lorna Crowley",
 "Tobias Mistmantle",
 "Elune's Brazier",
 "Elune's Handmaiden",
 "Image of Archmage Xylem",
 "Teresa Spireleaf",
 "Dead Orc Scout",
 "Aggra",
 "Kilag Gorefang",
 "Scout Brax",
 "Gyrochoppa",
 "Thrall",
 "Cenarion Embassador Thunk",
 "Smouldering Stone",
 "Will Robotronic",
 "Tharkul Ironskull",
 "Bizby",
 "Cenarion Researcher Korrah",
 "Bombardier Captain Smooks",
 "Valishj",
 "Feno Blastnoggin",
 "Torg Twocrush",
 "Quarla Whistlebreak",
 "Sergeant Cleese",
 "Naga Power Stone",
 "Loren the Fence",
 "Vitus Darkwalker",
 "Huntsman Blake",
 "Myriam Spellwaker",
 "Sister Almyra",
 "Celestine of the Harvest",
 "Lord Hydronis",
 "Lord Godfrey",
 "Jellix Fuselighter",
 "Joanna",
 "Karnum Marshweaver",
 "Thressa Amberglen",
 "Botanist Ferrah",
 "Assistant Greely",
 "Secret Lab Squawkbox",
 "Garren Darkwind",
 "Khan Leh'Prah",
 "Krennan Aranas",
 "Khan Kammah",
 "Crate of Mandrake Essence",
 "Slain Watchman",
 "Twistex Happytongs",
 "Khan Shodo",
 "Kherrah",
 "Broken Relic",
 "Mai'Lahii",
 "Taiga Wisemane",
 "Maurin Bonesplitter",
 "Sorata Firespinner",
 "Nataka Longhorn",
 "Vahlarriel Demonslayer",
 "Captain Pentigast",
 "Corporal Melkins",
 "Melinda Hammond",
 "Thargad",
 "Dumti",
 "Hobart Grapplehammer",
 "Officer Jankie",
 "Spirit of Azuregos",
 "Azuregos",
 "Grandma Wahl",
 "Sebastian Hayward",
 "Teemo",
 "Subject Nine",
 "Andorel Sunsworn",
 "Upper Scrying Stone",
 "Lower Scrying Stone",
 "Haggrum Bloodfist",
 "Ahmo Thunderhorn",
 "Caladis Brightspear",
 "Arcanist Tybalin",
 "Chief Hawkwind",
 "Grull Hawkwind",
 "Adana Thunderhorn",
 "Chawg",
 "Queen Mia Greymane",
 "Private Worcester",
 "Commander Molotov",
 "Glix Grindlock",
 "Xiz \"The Eye\" Salvoblast",
 "Kroum",
 "Wrenchmen Recruitment Poster",
 "Captain Desoto",
 "Lieutenant Drex",
 "Sergeant Zelks",
 "Recruiter Burns",
 "Erunak Stonespeaker",
 "Detective Snap Snagglebolt",
 "Tora Halotrix",
 "Captain Tork",
 "Mull Thunderhorn",
 "Zarlman Two-Moons",
 "Una Wildmane",
 "Dyami Windsoar",
 "Neeru Fireblade",
 "Jr. Bombardier Hackel",
 "Christi Stockton",
 "Lorekeeper's Summoning Stone",
 "Sergeant Hort",
 "Ruckus",
 "Uncle Bedlam",
 "Magister Hathorel",
 "Bleenik Fizzlefuse",
 "Kalecgos",
 "Joren Ironstock",
 "Sten Stoutarm",
 "Grundel Harkin",
 "Coach Crosscheck",
 "Apprentice Soren",
 "Hands Springsprocket",
 "Milo Geartwinge",
 "Tharek Blackstone",
 "Teo Hammerstorm",
 "Teegli Merrowith",
 "Gurlorn",
 "Lady Jaina Proudmoore",
 "Martin Victus",
 "Nura Pathfinder",
 "Tunawa Stillwind",
 "Onatay",
 "Dark Ranger Vorel",
 "Gorkun Ironskull",
 "Apprentice Nelphi",
 "Holgom",
 "Oltarg",
 "Makaba Flathoof",
 "Kilrok Gorehammer",
 "Halduron Brightwing",
 "Lane Tallgrass",
 "Naralex",
 "Tawane",
 "Kirge Sternhorn",
 "Runeforge",
 "Tatternack Steelforge",
 "Warlord Bloodhilt",
 "Jorn Skyseer",
 "Myralion Sunblaze",
 "Muyoh",
 "Winnoa Pineforest",
 "Roka",
 "Warlord Gar'dul",
 "Belrysa Starbreeze",
 "Archmage Lan'dalock",
 "Kwee Q. Peddlefeet",
 "Mahka",
 "Jin'thala",
 "Nortet",
 "Calder Gray",
 "Moraya",
 "Kijara",
 "Tegashi",
 "Vassandra Stormclaw",
 "Public Relations Agent",
 "Tomusa",
 "Gann Stonespire",
 "Vol'jin",
 "Crawgol",
 "Inspector Snip Snagglebolt",
 "Marion Sutton",
 "Tauna Skychaser",
 "Marcus",
 "Magda Whitewall",
 "Weezil Slipshadow",
 "Garl Stormclaw",
 "Ithis Moonwarden",
 "Williden Marshal",
 "Quixxil",
 "Hol'anyee Marshal",
 "Gremix",
 "Un'Goro Examinant",
 "Nablya",
 "Nolen Tacker",
 "Spark Nilminer",
 "Tara",
 "Doreen",
 "Maximillian of Northshire",
 "Karna Remtravel",
 "A-Me 01",
 "J.D. Collie",
 "Torwa Pathfinder",
 "Spraggle Frock",
 "Ringo's Sack",
 "Ringo",
 "Shizzle",
 "Krakle",
 "Soratha",
 "Nekali",
 "Zen'tabra",
 "Legati",
 "Ortezza",
 "Tunari",
 "Vereesa Windrunner",
 "Archmage Aethas Sunreaver",
 "Dark Ranger Loralen",
 "Junior Inspector",
 "Junior Detective",
 "Morakki",
 "Zen'Aliri",
 "Brett \"Coins\" McQuid",
 "Commander Walpole",
 "Janice Mattingly",
 "Crate of Foodstuffs",
 "Research Equipment",
 "Zeke Bootscuff",
 "Sherm",
 "Anchorite Avuun",
 "Dockmaster Lewis",
 "Admiral Aubrey",
 "Izzy",
 "Narain Soothfancy",
 "Captain Fisher",
 "Cannoneer Smythe",
 "Thomas Paxton",
 "Paxton's Field Cannon",
 "Tolliver Houndstooth",
 "Agatha",
 "Undertaker Mordo",
 "Caretaker Caice",
 "Novice Elreth",
 "Xavier the Huntsman",
 "Executor Arren",
 "Darnell",
 "Deathguard Simmer",
 "Sedrick Calston",
 "Apothecary Johaan",
 "Captured Scarlet Zealot",
 "Executor Zygand",
 "Deathguard Dillinger",
 "Magistrate Sevren",
 "Deathguard Linnea",
 "Gretchen Dedmar",
 "Junior Apothecary Holland",
 "Apothecary Jerrod",
 "Captured Mountaineer",
 "Apprentice Crispin",
 "Jeffrey Long",
 "Goucho",
 "Mangled Body",
 "Corporal Teegan",
 "Coleman Farthing",
 "High Executor Derrington",
 "Lieutenant Sanders",
 "Timothy Cunningham",
 "Apothecary Dithers",
 "Sandscraper's Chest",
 "Examiner Andoren Dawnrise",
 "Mazoga",
 "Hannah Bridgewater",
 "Trenton Lighthammer",
 "Ambassador Gaines",
 "Tortunga",
 "Tora'jin",
 "Gordo",
 "Sam Trawley",
 "General Hawthorne",
 "Kelsey Steelspark",
 "Krog",
 "Dr. Dealwell",
 "Katrina Turner",
 "Antediluvean Chest",
 "Commander Roberts",
 "Mizzy Pistonhammer",
 "Logan Talonstrike",
 "Dorn Redearth",
 "General Twinbraid",
 "Deathguard Saltain",
 "Driz Plunkbow",
 "Hurlston Stonesthrow",
 "Marley Twinbraid",
 "Isabel Jones",
 "Dakk Blunderblast",
 "Mine Cart",
 "Canaga Earthcaller",
 "Hana'zua",
 "Zureetha Fargaze",
 "Foreman Thazz'ril",
 "Galgar",
 "Acrypha",
 "Kaltunk",
 "Bael'dun Survivor",
 "Marith Lazuria",
 "Wounded Bael'dun Officer",
 "Farseer Gadra",
 "Bom'bay",
 "Lar Prowltusk",
 "Gar'Thok",
 "Gail Nozzywig",
 "Advisor Belgrum",
 "Big Nasty Plunger",
 "Commander Singleton",
 "Thonk",
 "Grandmatron Tekla",
 "Raggaran",
 "Nibb Spindlegear",
 "Horton Gimbleheart",
 "Misha Tor'kren",
 "Zen'Taji",
 "Orgnil Soulscar",
 "Gor the Enforcer",
 "Ace",
 "Platform Control Panel",
 "Shin Stonepillar",
 "Estulan",
 "Silvia",
 "Orhan Ogreblade",
 "Konu Runetotem",
 "Mountaineer Grugelm",
 "Felora Firewreath",
 "The Great Sambino",
 "Earthmender Duarn",
 "Caretaker Movra",
 "Toshe Chaosrender",
 "Condenna the Pitiless",
 "Jadi Falaryn",
 "Watcher Dodds",
 "Oomla Whitehorn",
 "Vek'nag",
 "Spiketooth",
 "Margoz",
 "Ak'Zeloth",
 "Kor'kron Loyalist",
 "Ian Duran",
 "Takrik Ragehowl",
 "Elementalist Ortell",
 "Instructor Mylva",
 "Nato Raintree",
 "Alto Stonespire",
 "Instructor Devoran",
 "Outhouse Hideout",
 "Rio Duran",
 "Twilight Cauldron",
 "Royce Duskwhisper",
 "Eye of Twilight",
 "The Twilight Apocrypha",
 "Shandris Feathermoon",
 "Tambre",
 "Commander Jarod Shadowsong",
 "Emissary Windsong",
 "Ysera",
 "Alysra",
 "Scout Larandia",
 "Captain Saynna Stormrunner",
 "Kristoff Manheim",
 "Instructor Cargall",
 "Spirit of Farseer Gadra",
 "Gombana",
 "Witch Doctor Uzer'i",
 "Talo Thornhoof",
 "Swar'jan",
 "Chief Spirithorn",
 "Vestia Moonspear",
 "Lost Apprentice",
 "Jawn Highmesa",
 "Kanati Greycloud",
 "Captain Taylor",
 "Felice",
 "Krueg Skullsplitter",
 "Hadoken Swiftstrider",
 "Woodpaw Battle Map",
 "Sensiria",
 "Tholo Whitehoof",
 "Moanah Stormhoof",
 "Nordu",
 "Arch Druid Hamuul Runetotem",
 "Sunken Horde Chest",
 "Ysondre",
 "Laina Nightsky",
 "Mylune",
 "Sunken Crate",
 "Adarrah",
 "Telaron Windflight",
 "Mountaineer Rharen",
 "Matoclaw",
 "Tyrus Blackhorn",
 "Handler Tessina",
 "Subjugated Inferno Lord",
 "Prospector Gunstan",
 "Adella",
 "Windspeaker Tamila",
 "Erina Willowborn",
 "Pratt McGrubben",
 "Jangdor Swiftstrider",
 "Anren Shadowseeker",
 "Keeper Taldros",
 "Zorbin Fandazzle",
 "Half-buried Footlocker",
 "Handler Jesana",
 "Homing Robot OOX-22/FE",
 "Nyse",
 "Thyssiana",
 "Caryssia Moonhunter",
 "Falfindel Waywarder",
 "Rendow",
 "Motega Firemane",
 "Fizzle Brassbolts",
 "Pozzik",
 "Rayne Feathersong",
 "Sandy Mound",
 "Jinky Twizzlefixxit",
 "Razzeric",
 "Tortolla",
 "Rizzle Brassbolts",
 "Zamek",
 "Gus Rustflutter",
 "Farden Talonshrike",
 "Submerged Outhouse",
 "Wavespeaker Valoren",
 "Divemaster Birmingham",
 "Engineer Hexascrub",
 "Cenarius",
 "Aronus",
 "Mazoga's Spirit",
 "Jordan Olafson",
 "Yargra Blackscar",
 "Admiral Dvorek",
 "Levia Dreamwaker",
 "Enormous Skull",
 "Drag Master Miglen",
 "Rugfizzle",
 "Wizzle Brassbolts",
 "Legionnaire Nazgrim",
 "Captain Vilethorn",
 "Fiasco Sizzlegrin",
 "Wavespeaker Tulra",
 "Synge",
 "Captain Samir",
 "Professor Xakxak Gyromate",
 "Gnombus the X-Terminator",
 "Kalen Trueshot",
 "Sentinel Heliana",
 "Fathom-Stalker Azjentus",
 "Lady Naz'jar",
 "Fathom-Lord Zin'jatar",
 "Broken Bottle",
 "Boog the \"Gear Whisperer\"",
 "Sage Palerunner",
 "Empty Pedestal",
 "Pure Twilight Egg",
 "Minx",
 "Budd",
 "Lord Fallowmere",
 "Thisalee Crow",
 "Sira'kess Tide Priestess",
 "Spirit of Tony Two-Tusk",
 "Ajamon Ghostcaller",
 "Huntress Illiona",
 "Choluna",
 "Mysterious Winged Spirit",
 "Quartermaster Glynna",
 "Alice",
 "Okrilla",
 "Master Aitokk",
 "Rofilian Dane",
 "Tak'arili",
 "Bloodmage Lynnore",
 "Loramus Thalipedes",
 "Watcher Wazzik",
 "Bloodmage Drazial",
 "Rohan Sunveil",
 "Salt-Flop",
 "Neptool",
 "Enohar Thunderbrew",
 "Quartermaster Lungertz",
 "Leyan Steelson",
 "Buttonwillow McKittrick",
 "Watcher Mahar Ba",
 "Elijah Dawnflight",
 "Forba Slabchisel",
 "Surveyor Thurdan",
 "Dunlor Marblebeard",
 "STAY OUT!",
 "Ol' Irongoat",
 "Northwatch Captain Kosak",
 "Skylord Omnuron",
 "Alithia Fallowmere",
 "Crazzle Sprysprocket",
 "Riznek",
 "Skycaller Vrakthris",
 "Codex of Shadows",
 "Force Commander Valen",
 "Arcanist Valdurian",
 "Neophyte Starcrest",
 "Scout Commander Barus",
 "Kum'isha the Collector",
 "Captain Stoutfist",
 "Khan Ablinh",
 "Khan Blizh",
 "Steeltoe McGee",
 "Karl Boran",
 "Damaged Crate",
 "Sealed Barrel",
 "Half-buried Barrel",
 "Lieutenant Paulson",
 "Aviana",
 "Corporal Wocard",
 "Morthis Whisperwing",
 "Private Pollard",
 "First Mate Fitzsimmons",
 "First Mate Snellig",
 "Intrepid's Locked Strongbox",
 "Derina Rumdnul",
 "Vision of Ysera",
 "Quentin",
 "Thalia Amberhide",
 "Delber Cranktoggle",
 "Slamp Wobblecog",
 "Ton Windbow",
 "Grundig Darkcloud",
 "Prospector Whelgar",
 "Ormer Ironbraid",
 "Merrin Rockweaver",
 "Fradd Swiftgear",
 "James Halloran",
 "Lady Sira'kess",
 "Executioner Verathress",
 "Naz'jar Honor Guard",
 "Crucible of Nazsharin",
 "Shilah Slabchisel",
 "Brienna Starglow",
 "Rau Cliffrunner",
 "Montarr",
 "\"Goblin\" Pump Controller",
 "Scout Mistress Yvonia",
 "Master Thal'darah",
 "Niden",
 "Captain Irontree",
 "Sergeant Flinthammer",
 "Naga Tridents",
 "Rendel Firetongue",
 "Jorlan Trueblade",
 "Logram",
 "Veron Amberstill",
 "Garunda Mountainpeak",
 "Elder Sareth'na",
 "Sentinel Mistress Geleneth",
 "Commander Thorak",
 "Hierophant Malyk",
 "Rethiel the Greenwarden",
 "Salsbury the \"Help\"",
 "Houndmaster Jonathan",
 "Prospector Drugan",
 "Ferilon Leafborn",
 "Blood Guard Aldo Rockrain",
 "Saurboz",
 "Alliance S.E.A.L. Equipment",
 "Lieutenant \"Foxy\" Topper",
 "Elendri Goldenbrow",
 "Broken Prong",
 "Bloodguard Toldrek",
 "Sergeant Gertrude",
 "Sergeant Bahrum",
 "Khurgorn Singefeather",
 "Tiala Whitemane",
 "Commander Stonebreaker",
 "Gurrok",
 "Blastgineer Fuzzwhistle",
 "Overlord Krom'gar",
 "Spy-Mistress Anara",
 "Captain Glovaal",
 "Chief Blastgineer Bombgutz",
 "Dark Ranger Alina",
 "Galen Trollbane",
 "Wanted Board",
 "Captain Nials",
 "Clarissa",
 "Deathstalker Maudria",
 "Skuerto",
 "Apprentice Kryten",
 "Shards of Myzrael",
 "Iridescent Shards",
 "Stone of Inner Binding",
 "Keystone",
 "Sergeant Dontrag",
 "Scout Utvoch",
 "Blastgineer Igore",
 "Professor Phizzlethorpe",
 "Doctor Draxlegauge",
 "Shakes O'Breen",
 "General Marcus Jonathan",
 "Captain Steelgut",
 "Witch Doctor Jin'Zil",
 "Darn Talongrip",
 "Denni'ka",
 "Subjugator Devo",
 "Jibbly Rakit",
 "General Grebo",
 "Goutgut",
 "Lolo the Lookout",
 "Gor'mul",
 "Captain \"Jewels\" Verne",
 "Orako",
 "High Chieftain Cliffwalker",
 "Orthus Cliffwalker",
 "Masha Cliffwalker",
 "Quae",
 "Moira Thaurissan",
 "Commander Amaren",
 "Kinelory",
 "Huntress Iczelia",
 "Thargas Anvilmar",
 "L'ghorek",
 "Mountaineer Cobbleflint",
 "Mountaineer Wallbang",
 "Robby Flay",
 "Kasim Sharim",
 "Watcher Grimeo",
 "Mayor Charlton Connisport",
 "Cenarion Observer Shayana",
 "Maur Raincaller",
 "Longbraid the Grim",
 "Nevin Twistwrench",
 "Bipsi Frostflinger",
 "\"Doc\" Cogspin",
 "Alamar Grimm",
 "Drill Sergeant Steamcrank",
 "Engineer Grindspark",
 "High Tinker Mekkatorque",
 "Katoom the Angler",
 "Lard",
 "Two-Shoed Lou",
 "Marogg",
 "Huntsman Markhor",
 "Grognard",
 "Jimb \"Candles\" McHannigan",
 "Mama Celeste",
 "Farmer Saldean",
 "Elder Torntusk",
 "Mystic Yayo'jin",
 "Salma Saldean",
 "Seer Kormo",
 "Maruut Stonebinder",
 "Captain's Log",
 "Stormcaller Mylra",
 "First Mate Moody",
 "Forgemaster's Log",
 "Tock Sprysprocket",
 "Corporal Fizzwhistle",
 "Hope Saldean",
 "Voldreka",
 "Commander Aggro'gosh",
 "Malcom Fendelson",
 "Jessup McCree",
 "Marshal Gryan Stoutmantle",
 "Captain Danuvin",
 "Agent Kearnen",
 "Captain Alpert",
 "Foreman Glibbs",
 "Nimboya",
 "Bubbling Cauldron",
 "Kin'weelay",
 "Kil'karil",
 "Primal Torntusk",
 "Eliza Darkgrin",
 "Earthcaller Torunscar",
 "Earthmender Norsala",
 "Captain Tread Sparknozzle",
 "Far Seer Mok'thardin",
 "Lashtail Hatchling",
 "Warlord Krogg",
 "Diamant the Patient",
 "Hinkles Fastblast",
 "Bloodlord Mandokir",
 "Foebreaker Blueprints",
 "Jarvi Shadowstep",
 "Drizzlik",
 "Captain Grayson",
 "Priestess Hu'rala",
 "Captain's Footlocker",
 "Broken Barrel",
 "Old Jug",
 "Locked Chest",
 "Kotonga",
 "Captain Krazz",
 "Fleep",
 "Watch Captain Parker",
 "Scout Galiaan",
 "Quartz Stonetender",
 "Ciara Deepstone",
 "Innkeeper Belm",
 "Darkcleric Marnal",
 "Apothecary Surlis",
 "Sentinel Cordressa Briarbow",
 "Genn Greymane",
 "Surkhan",
 "Friz Groundspin",
 "Admiral Stonefist",
 "Milly Osworth",
 "Bartlett the Brave",
 "Osric Strang",
 "Dungar Longdrink",
 "Skeezy Whillzap",
 "Earthcaller Yevaa",
 "Initiate Goldmine",
 "Catherine Leland",
 "Cromula",
 "Bort",
 "Deathstalker Lookout",
 "Genavie Callow",
 "Drum Fel",
 "Flem Gizzix",
 "Garley Lightrider",
 "Kor the Immovable",
 "Berracite",
 "Vindicator Vedaar",
 "Valusha",
 "Stone Guard Towhide",
 "Vindicator Palanaar",
 "Architect Nemos",
 "Kayneth Stillwind",
 "Sentinel Farsong",
 "Kerr Ironsight",
 "Teronis' Corpse",
 "Illiyana",
 "Anilia",
 "Shael'dryn",
 "Crag Rockcrusher",
 "Dron Blastbrew",
 "Mixmaster Jasper",
 "Chabal",
 "Doran Steelwing",
 "Earthbreaker Dolomite",
 "Gravel Longslab",
 "Clay Mudaxle",
 "Magistrate Solomon",
 "Darcy Parker",
 "Shawn",
 "Nida",
 "Martie Jainrose",
 "Bailiff Conacher",
 "Marshal Marris",
 "Fraggar Thundermantle",
 "Ettin Control Orb",
 "Gilda Cloudcaller",
 "Wildhammer Lookout",
 "Gryphon Master Talonaxe",
 "Gregor",
 "Ornak",
 "Hero's Call Board",
 "Razgar",
 "Zaela",
 "Messner",
 "Jorgensen",
 "Krakauer",
 "Danforth",
 "Colonel Troteman",
 "John J. Keeshan",
 "Foreman Oslow",
 "Gorsik the Tumultuous",
 "Windspeaker Lorvarius",
 "Ruberick",
 "Earthmender Deepvein",
 "\"Sea Wolf\" MacKinley",
 "\"Shaky\" Phillipe",
 "Corporal Jeyne",
 "Fin Fizracket",
 "Captain Hecklebury Smotts",
 "Half-Buried Bottle",
 "Princess Poobah",
 "First Mate Crazz",
 "Bloodsail Correspondence",
 "Baron Revilgaz",
 "Deeg",
 "Dizzy One-Eye",
 "Fleet Master Seahorn",
 "Commander Althea Ebonlocke",
 "Chef Grual",
 "Yancey Grillsen",
 "Abercrombie",
 "Captain Keelhaul",
 "Peak Grindstone",
 "Pyrium Lodestone",
 "Garr Salthoof",
 "\"Pretty Boy\" Duncan",
 "Brubaker",
 "Gotura Fourwinds",
 "Fleet Master Firallon",
 "Ironpatch",
 "\"Dead-Eye\" Drederick McGumm",
 "Captain Stillwater's Charts",
 "Madame Eva",
 "Blind Mary",
 "Tavernkeep Smitts",
 "Clerk Daltry",
 "Barrel of Doublerum",
 "Lord Ello Ebonlocke",
 "Viktori Prism'Antras",
 "Captain Garran Vimes",
 "Calor",
 "Jonathan Carevin",
 "Gim'hila",
 "Calia Hastings",
 "Apprentice Fess",
 "Therazane",
 "Pyrite Stonetender",
 "Oliver Harris",
 "Jitters",
 "Lightforged Arch",
 "Lightforged Crest",
 "Sven Yorgen",
 "Sister Elsington",
 "Lightforged Rod",
 "Emerine Junis",
 "Brother Nimetz",
 "Lieutenant Doren",
 "Corporal Sethman",
 "Corporal Kaleb",
 "Krazek",
 "Berrin Burnquill",
 "Osborn Obnoticus",
 "Priestess Thaalia",
 "Sergeant Yohwa",
 "Nozzlepot",
 "Flint Oremantle",
 "Ghaliri",
 "Kinnel",
 "Livingston Marshal",
 "Wulfred Harrys",
 "Artesh",
 "Slate Quicksand",
 "A Weathered Grave",
 "Sirra Von'Indi",
 "Watcher Ladimore",
 "Bronwyn Hewstrike",
 "Linzi Hewstrike",
 "Maywiki",
 "Dask \"The Flask\" Gobfizzle",
 "Airwyn Bantamflax",
 "Goris",
 "Boden the Imposing",
 "Terrath the Steady",
 "Rhyanda",
 "Scout Dorli",
 "A Dwarven Corpse",
 "Stone Guard Kurjack",
 "Vidra Hearthstove",
 "Seer Galekk",
 "Bovaal Whitehorn",
 "Cannary Caskshot",
 "Gigantic Painite Cluster",
 "Ebru",
 "Nalpak",
 "Ashelan Northwood",
 "Scout Thaelrid",
 "Sentinel Aluwyn",
 "Relwyn Shadestar",
 "Sentinel-trainee Issara",
 "Zeya",
 "Flinn",
 "Flaming Eradicator",
 "Auld Stonespire",
 "Willix the Importer",
 "Spirit of Agamaggan",
 "Zaruk",
 "Ashley Blank",
 "Jearl Donald",
 "Lindsay Ravensun",
 "Shadow Priestess Vandis",
 "Field Agent Kaartish",
 "Nathaniel Dumah",
 "Murd Doc",
 "B.E Barechus",
 "Face",
 "Hann Ibal",
 "Dark Ranger Velonara",
 "Argent Officer Garush",
 "Adrine Towhide",
 "Selyria Groenveld",
 "Del Gahrron",
 "Kore",
 "Keilnei",
 "Grand Executor Mortuus",
 "Aurelon",
 "Valaatu",
 "Firmanvaar",
 "Joseph the Awakened",
 "Joseph the Crazed",
 "Supply Sergeant Graves",
 "Joseph the Insane",
 "Major Samuelson",
 "Apothecary Witherbloom",
 "Dominic",
 "High Apothecary Shana T'veen",
 "Anduin Wrynn",
 "Explorer Mowi",
 "Examiner Rowe",
 "Prospector Brewer",
 "Reliquary Jes'ca Darksun",
 "Koristrasza",
 "Kelly Dumah",
 "Seer Ravenfeather",
 "Sunwalker Helaku",
 "Daryl the Youngling",
 "Belnistrasz",
 "Belnistrasz's Brazier",
 "Safety Warden Pipsy",
 "Rusted Skystrider",
 "Ando Blastenheimer",
 "Vyrin Swiftwind",
 "Fargo Flintlocke",
 "Deathstalker Commander Belmont",
 "Abandoned Outhouse",
 "Farmer Wollerton",
 "Felsen the Enduring",
 "Scourge Cauldron",
 "Admiral Hatchet",
 "Chief Engineer Bilgewhizzle",
 "Jack Bauden",
 "Warlord Torok",
 "Ashlan Stonesmirk",
 "Tran'rek",
 "Apothecary Wormcrud",
 "Damion Steel",
 "Lurid",
 "Pile of Explosives",
 "Maziel's Journal",
 "Furgus Warpwood",
 "\"Ambassador\" Dagg'thol",
 "Shen'dralar Watcher",
 "Shen'dralar Ancient",
 "Treasure of the Shen'dralar",
 "Knot Thimblejack",
 "Captain Kromcrush",
 "Guard Mol'dar",
 "Druid of the Talon",
 "Stonemaul Ogre",
 "Alexi Barov",
 "Weldon Barov",
 "Eva Sarkhoff",
 "Lucien Sarkhoff",
 "Daria L'Rayne",
 "Lieutenant Myner",
 "Commander Ashlam Valorfist",
 "Lang Loosegrip",
 "Thurman Grant",
 "High Priestess MacDonnell",
 "High Priest Thel'danis",
 "Broken Weapons Crate",
 "Argent Officer Pureheart",
 "Elaborate Disc",
 "Simon Chandler",
 "Draz'Zilb",
 "\"Swamp Eye\" Jarl",
 "Master Craftsman Wilhelm",
 "Mordant Grimsby",
 "Packmaster Stonebruiser",
 "Durnt Brightfalcon",
 "Ephram Hardstone",
 "Farseer Krogar",
 "Crusade Commander Eligor Dawnbringer",
 "Lieutenant Aden",
 "Captain Wymor",
 "Sergeant Amelyn",
 "Babs Fizzletorque",
 "\"Dirty\" Michael Crowe",
 "Major Mills",
 "Arias'ta Bladesinger",
 "Ander Germaine",
 "Crusade Commander Korfax",
 "Horde Communication Panel",
 "Renn McGill",
 "Sergeant Lukas",
 "Loose Dirt",
 "Inspector Tarem",
 "Black Shield",
 "Do'gol",
 "Mosarn",
 "Suspicious Hoofprint",
 "Theramore Guard Badge",
 "Ogron",
 "Adjutant Tesoran",
 "Valgar Highforge",
 "Lord Grayson Shadowbreaker",
 "Jeen'ra Nightrunner",
 "Wulf Hansreim",
 "Erion Shadewhisper",
 "Osborne the Night Man",
 "High Priest Rohan",
 "High Priestess Laurena",
 "Priestess Alathea",
 "Farseer Javad",
 "Farseer Umbrua",
 "Nittlebur Sparkfizzle",
 "Maginor Dumas",
 "Alexander Calder",
 "Demisette Cloyce",
 "Sheldras Moontree",
 "Loganaar",
 "Chief Surgeon Gashweld",
 "Feralas Sentinel",
 "Freewind Brave",
 "Kaelystia Hatebringer",
 "Ureda",
 "Apolos",
 "Ormak Grimshot",
 "Zelanis",
 "Gordul",
 "Beram Skychaser",
 "Kardris Dreamseeker",
 "Alsudar the Bastion",
 "Grezz Ragefist",
 "Kaal Soulreaper",
 "Zevrost",
 "Sesebi",
 "Caz Twosprocket",
 "Balos Jacken",
 "Champion Bachi",
 "Master Pyreanor",
 "Aponi Brightmane",
 "Sunwalker Atohmo",
 "The Rattle of Bones",
 "Forward Commander Onslaught",
 "Lakota Windsong",
 "Aelthalyste",
 "Shadow-Walker Zuru",
 "Aldrae",
 "Tyelis",
 "Apprentice Garion",
 "Therum Deepforge",
 "Lieutenant Emry",
 "Apprentice Morlann",
 "Frederick Stover",
 "Captain Rutsak",
 "Lord Tony Romano",
 "Lucan Cordell",
 "Narianna",
 "Archmage Angela Dosantos",
 "Saru Steelfury",
 "Fiona",
 "Gidwin Goldbraids",
 "Tarenar Sunstrike",
 "Lachlan MacGraff",
 "Mallia",
 "Argus Highbeacon",
 "Carlin Redpath",
 "Pamela Redpath",
 "Joseph's Chest",
 "Naraat the Earthspeaker",
 "Godan",
 "Brogg",
 "Gizzix Grimegurgle",
 "Overlord Mok'Morokk",
 "Rayne",
 "Argent Officer Irizarry",
 "Captain Darill",
 "Urk Gagbaz",
 "Seer Liwatha",
 "Dark Cleric Cecille",
 "Acride",
 "Brother Silverhallow",
 "Vex'tul",
 "Frederick Calston",
 "Betina Bigglezink",
 "Rimblat Earthshatter",
 "Smokey LaRue",
 "Leonid Barthalomew the Revered",
 "Crusader's Flare",
 "Lord Maxwell Tyrosus",
 "Master Craftsman Omarion",
 "Ragged John",
 "Overseer Oilfist",
 "Helendis Riverhorn",
 "Daschla",
 "Dalar Dawnweaver",
 "Gamella Cracklefizz",
 "Deacon Andaal",
 "Calen",
 "Cassius the White",
 "Lady Cozwynn",
 "Warlord Zaela",
 "Velastrasza",
 "Baleflame",
 "Lirastrasza",
 "High Warlord Cromush",
 "Ambermill Dimensional Portal",
 "Thordun Hammerblow",
 "Decrepit Skeleton",
 "General Ammantep",
 "Prince Nadun",
 "Kirkian Dawnshield",
 "Corpseburner Tim",
 "Crusader Kevin Frost",
 "Argent Apothecary Judkins",
 "Augustus the Touched",
 "Trade Baron Silversnap",
 "Talaa",
 "Baron Ashbury",
 "Lord Walden",
 "Jalinda Sprig",
 "Kevin Dawson",
 "Oralius",
 "Prospector Seymour",
 "Mayara Brightwing",
 "Mountaineer Orfus",
 "Marshal Maxwell",
 "Patch",
 "Thal'trak Proudtusk",
 "Lexlort",
 "Galamav the Marksman",
 "Razal'blade",
 "Gralok",
 "Hierophant Theodora Mulvadania",
 "Fergus Gearchum",
 "Thunderheart",
 "Warlord Goretooth",
 "Brono Goodgroove",
 "Prophet Hadassi",
 "Maxwort Uberglint",
 "Crazy Larry",
 "Sand-Covered Hieroglyphs",
 "Tinkee Steamboil",
 "Rok'tar",
 "Keegan Firebeard",
 "Juice Gnugat",
 "Anchorite Traska",
 "King Phaoris",
 "Vizier Tanotep",
 "High Priest Amet",
 "High Commander Kamses",
 "Gaffer Coilspring",
 "Technician Braggle",
 "Garona Halforcen",
 "Keely Dunwald",
 "Flynn Dunwald",
 "Donnelly Dunwald",
 "Eoin Dunwald",
 "Cayden Dunwald",
 "Countess Verrall",
 "Pierre Fishflay",
 "Carvo Blastbolt",
 "Lead Prospector Durdin",
 "Kand Sandseeker",
 "Auctioneer Chilton",
 "Olga Runesworn",
 "Lidia Sunglow",
 "Aoren Sunglow",
 "Suja",
 "Narkrall Rakeclaw",
 "Baba Bogbrew",
 "Zaetar's Spirit",
 "Stone Slab",
 "Marble Slab",
 "Theldurin the Lost",
 "Lucien Tosselwrench",
 "Martek the Exiled",
 "Warchief's Command Board",
 "Tracker Yoro",
 "Rifle Commander Coe",
 "Nurse Lillian",
 "Warden Thelwater",
 "Twilight Rune of Earth",
 "High Executor Darthalia",
 "Harkkan",
 "Griff",
 "Low Shaman Blundy",
 "Fanny Thundermar",
 "Colin Thundermar",
 "Sun Prophet Tumet",
 "A. I. D.A. Terminal",
 "Gek Nozzlerocket",
 "Eddie Flofizzle",
 "Dolph Blastus",
 "Rhea",
 "Rheastrasza",
 "Dr. Hieronymus Blam",
 "Garyanne Fleezlebop",
 "The Hammer of Twilight",
 "Trove of the Watchers",
 "Joanna Blueheart",
 "Cailin Longfellow",
 "Iain Firebeard",
 "Duglas Mullan",
 "Keeland Doyle",
 "Mackay Firebeard",
 "Edana Mullan",
 "Brom Forgehammer",
 "Sigrun Ironhew",
 "Victoria Dolen",
 "Eric \"The Swift\"",
 "Olaf",
 "Terrance Storm",
 "Baelog",
 "Holaaru",
 "Kagtha",
 "Miss Mayhem",
 "Dispatch Commander Ruag",
 "Aidan Summerwind",
 "Gorn",
 "Amakkar",
 "Jurrix Whitemane",
 "Gargal",
 "Titan Mechanism",
 "Neeka Bloodscar",
 "Packleader Ivar Bloodfang",
 "Belloc Brightblade",
 "Rhea's Final Note",
 "Stonefather Oremantle",
 "Commander Schnottz",
 "Camp Coordinator Brack",
 "Lieutenant Farnsworth",
 "Lunk",
 "Prisanne Dustcropper",
 "Burrian Coalpart",
 "Jack Rockleg",
 "Sergeant Gray",
 "Hansel Heavyhands",
 "Taskmaster Scrange",
 "Lookout Captain Lolo Longstriker",
 "Master Smith Burninate",
 "Zamael Lunthistle",
 "Mountain-Lord Rendan",
 "Totem of Ruumbo",
 "Mack",
 "Grazle",
 "Tenell Leafrunner",
 "Arcanist Delaris",
 "Mazzer Stripscrew",
 "Brivelthwerp",
 "Agnes Flimshale",
 "Griznak",
 "Impsy",
 "Evonice Sootsmoker",
 "Commander Marcus Johnson",
 "Adventure Board",
 "Morgan",
 "High Executioner Nuzrak",
 "Pao'ka Swiftmountain",
 "Eridan Bluewind",
 "Highbank Lieutenant",
 "Captain Keyton",
 "Apothecary Underhill",
 "Spider-Handler Sarus",
 "Greta Mosshoof",
 "Commander Stevens",
 "Jessir Moonbow",
 "Sergeant Parker",
 "Farlus Wildheart",
 "Sun Priest Asaris",
 "Magatha Grimtotem",
 "Rotgrum",
 "Taronn Redfeather",
 "Buunu",
 "Dumass",
 "2nd Lieutenant Wansworth",
 "Warden Stillwater",
 "Mouton Flamestar",
 "Gorzeeki Wildeyes",
 "Stebben Oreknuckle",
 "Marshal Fallows",
 "Shovel",
 "Altsoba Ragetotem",
 "Prolific Writer",
 "Salhet",
 "Flesh-Shaper Arnauld",
 "Sergeant Mehat",
 "Thelaron Direneedle",
 "Johnny Awesome",
 "Kelnir Leafsong",
 "Master Apothecary Lydon",
 "Nivvet Channelock",
 "Huntress Selura",
 "Feronas Sindweller",
 "Seedling Protector",
 "Sapling Protector",
 "Flourishing Protector",
 "Isural Forestsworn",
 "Ella Forgehammer",
 "Bahrum Forgehammer",
 "Quartermaster Kaoshin",
 "Nomarch Teneth",
 "Serge Hinott",
 "General Thorg'izog",
 "Sullah",
 "Sark Ragetotem",
 "Inethven",
 "Champion Cyssa Dawnrose",
 "Tender Puregrove",
 "Malakai Cross",
 "Dragon-Lord Neeralak",
 "High Warlock Xi'lun",
 "Crate of Left Over Supplies",
 "Helcular",
 "Darla Drilldozer",
 "Foreman Pikwik",
 "Master Control Pump",
 "Alton Redding",
 "Nafien",
 "Elessa Starbreeze",
 "Kingslayer Orkus",
 "Hurak Wildhorn",
 "Ferli",
 "Drizle",
 "Fez Hobnob",
 "James Hallow",
 "Denmother Ulrica",
 "Lyros Swiftwind",
 "Russell Brower",
 "Ariok",
 "Thelaron Malaguja",
 "Kibler",
 "Donova Snowden",
 "Winterfall Cauldron",
 "Kelek Skykeeper",
 "Kaldorei Spirit",
 "Keeper Bel'varil",
 "Deathguard Samsa",
 "Deathguard Humbert",
 "Derak Nightfall",
 "Advisor Duskingdawn",
 "Quel'dorei Spirit",
 "Sin'dorei Spirit",
 "Salfa",
 "Witch Doctor Mau'ari",
 "Brett the Bomber",
 "Flashbang Rothman",
 "Ticker",
 "Lieutenant Fawkes",
 "Lilith",
 "Lilith the Lithe",
 "Deez Rocksnitch",
 "Burndl",
 "Tanrir",
 "Brazie the Botanist",
 "Krusk",
 "Nils Beerot",
 "Seril Scourgebane",
 "Umi Rumplesnicker",
 "Echo Three",
 "Captain Jekyll",
 "Captain Ironhill's Ghost",
 "Francis Morcott",
 "Jeb Guthrie",
 "Jez Goodgrub",
 "Grundy MacGraff",
 "Commander Zanoth",
 "Private Garnoth",
 "Drillmaster Razgoth",
 "Staff Sergeant Lazgar",
 "Wynd Nightchaser",
 "Rinno Curtainfire",
 "3rd Officer Kronkar",
 "Commander Larmash",
 "Captain Prug",
 "Private Sarlosk",
 "Remma Curtainfire",
 "Marcy Curtainfire",
 "Sana Curtainfire",
 "Tenaron Stormgrip",
 "Finkle Einhorn",
 "Weathered Nomad",
 "War-Mage Erallier",
 "Arcanist Arman",
 "Lord Raymond George",
 "Itesh",
 "Sergeant Willem",
 "Captain Hadan",
 "Brother Paxton",
 "Earthwarden Yrsa",
 "Jadrag the Slicer",
 "Haleh",
 "Nymn",
 "Farseer Tooranu",
 "Innkeeper Vizzie",
 "Craw MacGraw",
 "Okril'lon Mage",
 "Nethergarde Mage",
 "Snevik the Blade",
 "Malkar",
 "Grot Deathblow",
 "Major Marsden",
 "Colonel Karzag",
 "Hyjal Flame Guardian",
 "Earthen Ring Bonfire",
 "Vashj'ir Flame Guardian",
 "Deepholm Flame Guardian",
 "Brogor",
 "Bwemba",
 "Nagala Whipshank",
 "Balgor Whipshank",
 "Grent Direhammer",
 "Captain Soren Moonfall",
 "Ziradormi",
 "Anachronos",
 "Coridormi",
 "James Stillair",
 "General Taldris Moonfall",
 "Colin Swifthammer",
 "Overseer Blingbang",
 "Treasure Chest",
 "Commander Sharp",
 "Deldren Ravenelm",
 "Bloodslayer T'ara",
 "Marin Bladewing",
 "Tarecgosa",
 "Dorda'en Nightweaver",
 "Thysta",
 "Branch of Nordrassil",
 "Bloodslayer Zala",
 "Briney Boltcutter",
 "Shalis Darkhunter",
 "Dried Acorn",
 "Avrilla",
 "Zombie Survivor",
 "Ayla Shadowstorm",
 "Damek Bloombeard",
 "Varlan Highbough",
 "Elderlimb",
 "Arthorn Windsong",
 "Rabine Saturna",
 "Alegorn",
 "Eunice Burch",
 "Armand Cromwell",
 "Astaia",
 "Cyclonas",
 "Hydrius",
 "Kah Mistrunner",
 "Aska Mistrunner",
 "Jaga",
 "Vin",
 "Angus Stern",
 "Galen Goodward",
 "Galen's Strongbox",
 "Keldran",
 "Emperor Shaohao",
 "Lin Tenderpaw",
 "Pei-Zhi",
 "Lorewalker Cho",
 "Wise Mari\"Waterspeaker\"",
 "Elder Sage Rain-Zhu",
 "Admiral Taylor",
 "Groundskeeper Wu",
 "High Elder Cloudfall",
 "General Nazgrim",
}

Last edited by crzyface : 08-10-14 at 01:46 PM. Reason: fixed some typos
 
08-10-14, 04:55 PM   #6
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
Instead of manually adding all the quest info for Pandaria I would suggest you do one of two things:

(1) Use the quest/NPC info from the addon Grail to create your files for Carbonite automatically since Grail has very accurate data.

(2) Convert Carbonite to use the Grail data instead of its own (but this would require Carbonite to require Grail be present).
 
08-10-14, 06:12 PM   #7
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
how do I get Grail to create the files I need, I am trying to fill in the quest brackets that have been setup.
Like 1-10 and so that carbonite uses for it's quest module.
 
08-10-14, 10:03 PM   #8
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
Grail is available from wowinterface or curse. The quests are in Grail-Quests.lua, and the English versions of their names are in Grail-Quests-enUS.lua and the NPC location information is in Grail-NPCs.lua and their names are in Grail-NPCNames.lua. Note that NPC names are all there (all localizations), but the English ones are at the start of the file. If you need help understanding the format let me know the information you need and I can tell you where that information is.
 
08-29-14, 11:03 PM   #9
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
Nimhfree i am having a hard time figuring out how to gather all the data grail has and placing it into the format carbonite uses. due to my limited coding knowledge, is there a way to easily combine the grail data so it can show the full quest with the npc data with it?

i may not have worded that right but i am trying to get grail to issue the data out so it is something like my above hand typed quest info.
 
09-02-14, 11:23 PM   #10
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
I am not sure what each of the fields means for the Carbonite data. However, if you can explain them I can tell you where that information is in Grail and perhaps an easy way to get it out. Note that Grail does not have any objective information so you will still have to add that manually.
 
09-13-14, 09:37 PM   #11
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
Rythal,

is there a specific tag for auto completion quests or do i just treat them like a standard quest?
 
09-14-14, 03:02 AM   #12
Rythal
Featured Artist
Featured
Join Date: Aug 2012
Posts: 1,458
It's just added the same way, with no end section.
 
09-29-14, 09:03 PM   #13
crzyface
A Deviate Faerie Dragon
Join Date: Oct 2007
Posts: 18
copy the below files to your carbonite.quest/data folder. this is just a test batch of quests, so please give it a go and if the objectives don't show up right let me know. thank you for your input and help


Lua Code:
  1. if not Nx.ModQuests then
  2.     Nx.ModQuests = {}
  3. end
  4.  
  5. local ModQuests={
  6. ------- The Jade Forest Quests --------------
  7. [29619] = {
  8.     Quest = [[A Courteous Guest|0|86|85|26620|48]],
  9.     Start = "3332|806|32|45|25",
  10.     End = "3332|806|32|45|25",
  11.     Objectives = {
  12.       [1] = {
  13.          "Ripe Orange|806|35|45.2|28.5|5.01|6.68",
  14.          "Ripe Orange|806|35|45.8|27.6|5.01|6.68",
  15.         },
  16.     },   
  17.   },
  18. [29756] = {
  19.     Quest = [[A Humble Offering|0|86|85|0|48]],
  20.     Start = "3333|806|32|44.2|15",
  21.     End = "3333|806|32|44.2|15",
  22.     Objectives = {
  23.        [1] = {
  24.           "Tidemist Cap|806|35|38.2|12.2|5.01|6.68",
  25.           "Tidemist Cap|806|35|41.3|10.4|5.01|6.68",
  26.         },
  27.     },
  28.   },
  29. [31132] = {
  30.     Quest = [[A Mile in My Shoes|2|86|85|31134|48]],
  31.     Start = "3334|806|32|27.6|32.6",
  32.     End = "3334|806|32|27.6|32.6",
  33.     Objectives = {
  34.         [1] = {
  35.             "Speak to Lorewalker Cho|806|35|27.6|32.6|5.01|6.68", --[[ on speak to quest should I have an objective
  36.                                                                                             or just leave it blank--]]
  37.         },
  38.     },     
  39.   },
  40. [30011] = {
  41.     Quest = [[A New Vision|0|86|85|0|48]],
  42.     Start = "3335|806|32|57.6|56",
  43.     End = "3336|806|32|58|58.6",
  44.     Objectives = {
  45.         [1] = {
  46.             "Speak to Elder Sage Rain-Zhu|806|35|58.0|58.6|5.01|6.68",
  47.         },
  48.     },     
  49.   },
  50. [29903] = {
  51.     Quest = [[A Perfact Match|1|86|85|29904|48]],
  52.     Start = "3337|806|32|58.8|81.6",
  53.     End = "3337|806|32|58.8|81.6",
  54.     Objectives = {
  55.         [1] = {
  56.             "Speak to Pearlfin Aqualytes and arm them with the proper equipment|806|35|58.3|82.7|5.01|6.68",
  57.         },
  58.         [2] = {
  59.             "Pearlfin Aqualytes equipped|806|35|58.3|82.7|5.01|6.68",
  60.         },
  61.     }
  62.   },
  63. [29627] = {
  64.     Quest = [[A Proper Weapon|0|86|85|0|48]],
  65.     Start = "3338|806|32|41.6|23.6",
  66.     End = "3338|806|32|41.6|23.6",
  67.     Objectives = {
  68.         [1] = {
  69.             "Rattan Switch|806|35|41.8|24.8|5.01|6.68",
  70.         },
  71.         [2] = {
  72.             "Black Walnut Extract|806|35|41.4|24.2|5.01|6.68",
  73.         },
  74.         [3] = {
  75.             "Triple-Bitter Ale|806|35|41.8|24.6|5.01|6.68",
  76.         },
  77.     }
  78.   },
  79. [29629] = {
  80.     Quest = [[A Steady Hand|0|86|85|29646|48]],
  81.     Start = "3338|806|32|41.6|23.6",
  82.     End = "3338|806|32|41.6|23.6",
  83.     Objectives = {
  84.         [1] = {
  85.             "Blushleaf Extract|806|35|34.4|22.0|5.01|6.68",
  86.         },
  87.     }
  88.   },
  89.  [29628] = {
  90.     Quest = [[A Strong Back|0|86|85|29646|48]],
  91.     Start = "3338|806|32|41.6|23.6",
  92.     End = "3338|806|32|41.6|23.6",
  93.     Objectives = {
  94.         [1] = {
  95.             "Boiling Cauldron obtained|806|35|37|17|5.01|6.68",
  96.         }
  97.     },
  98.  },
  99.  [29636] = {
  100.     Quest = [[A Test of Endurance|0|86|85|29637|48]],
  101.     Start = "3341|806|32|43.2|24.6",
  102.     End = "3342|806|32|39|24",
  103.     },
  104.  [31130] = {
  105.     Quest = [[A Visit with Lorewalker Cho|1|86|85|0|48]],
  106.     Start = "3334|806|32|53.6|91.4",
  107.     End = "3334|806|32|53.6|91.4",
  108.     Objectives = {
  109.         [1] = {
  110.             "Trim the Tree|806|35|53.6|91.4|5.01|6.68",
  111.         },
  112.         [2] = {
  113.             "Paint the Wall|806|35|53.6|91.4|5.01|6.68",
  114.         },
  115.         [3] = {
  116.             "Feed the Birds|806|35|53.6|91.4|5.01|6.68",
  117.         }
  118.     },
  119.  },
  120.  [29827] = {
  121.     Quest = [[Acid Rain|2|86|85|0|48]],
  122.     Start = "3343|806|32|28.2|24.8",
  123.     End = "3343|806|32|28.2|24.8|",
  124.     Objectives = {
  125.         [1] = {
  126.             "Hozen Gutripper|806|35|28.6|26.2|5.01|6.68",
  127.         },
  128.         [2] = {
  129.             "Hozen Nibstabber|806|35|26.8|29|5.01|6.68",
  130.         }
  131.     },
  132.  },
  133.  [29925] = {
  134.     Quest = [[All We Can Spare|0|86|85|0|48]],
  135.     Start = "3345|806|32|47|46",
  136.     End = "3334|806|32|50.8|27",
  137.  },
  138.  [29576] = {
  139.     Quest = [[An Air of Worry|0|86|85|29578|48]],
  140.     Start = "3346|806|32|48.2|46",
  141.     End = "3347|806|32|43.4|75.8",
  142.     },
  143.  [29900] = {
  144.     Quest = [[An Ancient Legend|1|86|85|0|48]],
  145.     Start = "3348|806|32|66|79.4",
  146.     End = "3349|806|32|66|79.2",
  147.     Objectives = {
  148.         [1] = {
  149.             "Shade of Ling Heartfist|806|35|67|80.8|5.01|6.68",
  150.         }
  151.     },
  152.  },
  153.  [29749] = {
  154.     Quest = [[An Urgent Plea|0|86|85|29751|48]],
  155.     Start = "3333|806|32|44.2|15",
  156.     End = "3333|806|32|44.2|15",
  157.     },
  158.  [29901] = {
  159.     Quest = [[Anduin's Decision|1|86|85|29903|48]],
  160.     End = "3337|806|32|58.8|81.6",
  161.  [31775]    = {
  162.     Quest = [[Assault on the airstrip|2|86|85|0|48]],
  163.     Start = "3340|806|32|31.6|21.8",
  164.     End = "3340|806|32|31.6|21.8",
  165.     Objectives = {
  166.         [1] = {
  167.             "Strongarm troop slain|806|35|26|24.4|5.01|6.68",
  168.             "Strongarm troop slain|806|35|27.4|25|5.01|6.68",
  169.             "Strongarm troop slain|806|35|27|23.2|5.01|6.68",
  170.             "Strongarm troop slain|806|35|29.4|24.6|5.01|6.68",
  171.         },
  172.     }, 
  173. },
  174. [31134] = {
  175.     Quest = [[If These Stones Could Speak|2|86|85|0|48]],
  176.     Start = "3334|806|32|30.8|34",
  177.     End = "3334|806|32|30.8|34",
  178.     Objectives = {
  179.         [1] = {
  180.             "First Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
  181.         },
  182.         [2] = {
  183.             "Second Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
  184.         },
  185.         [3] = {
  186.             "Third Stone Monolith Translated|806|35|30.8|34|5.01|6.68",
  187.         },
  188.     }, 
  189.   },   
  190. [29822] = {
  191.     Quest = [[Lay of the Land|2|86|85|31121|48]],
  192.     Start = "3340|806|32|28.4|24.8",
  193.     End = "3334|806|32|27.6|32.6",
  194.     Objectives = {
  195.         [1] = {
  196.             "Shrine of the Sun Visited|806|35|31.8|28|5.01|6.68",
  197.         },
  198.         [2] = {
  199.             "Shrine of the Moon Visited|806|35|26.4|32.4|5.01|6.68",
  200.         },
  201.         [3] = {
  202.             "Dook Ookem Slain|806|35|27.76|30.35|5.01|6.68",
  203.         },
  204.     },
  205.  },
  206. [31121] = {
  207.     Quest = [[Stay a While, and Listen|2|86|85|31132|48]],
  208.     Start = "3334|806|32|27.6|32.6",
  209.     End = "3334|806|32|27.6|32.6",
  210.     Objectives = {
  211.         [1] = {
  212.             "Drink from Cho's Teapot|806|35|27.6|32.6|5.01|6.68",
  213.         },
  214.         [2] = {
  215.             "Listen to Lorewalker Cho|806|35|27.6|32.6|5.01|6.68",
  216.         },
  217.     }, 
  218. [29620] = {
  219.     Quest = [[The Great Banquet|0|86|85|0|48]],
  220.     Start = "3332|806|32|45|25",
  221.     End = "3339|806|32|45.2|25",
  222.     Objectives = {
  223.         [1] = {
  224.             "Speak with High Elder Cloudfall|806|35|45.2|25|5.01|6.68",
  225.         },
  226.     },     
  227.  },
  228.  
  229.    
  230.    
  231. }
  232.  
  233. function Nx.ModQuests:Load10 ()
  234.     for key,val in pairs(ModQuests) do
  235.         Nx.Quests[key] = val
  236.     end
  237.     Nx.ModQuests:Clear10()
  238. end
  239.  
  240. function Nx.ModQuests:Clear10 ()
  241.     ModQuests = {}
  242. end


Lua Code:
  1. Nx.QuestStartEnd={
  2.  "Senani Thunderheart",
  3.  "Deputy Rainer",
  4.  "Captain Tarkan",
  5.  "Captain Goggath",
  6.  "Marshal Dughan",
  7.  "Guard Thomas",
  8.  "A half-eaten body",
  9.  "Remy \"Two Times\"",
  10.  "Rolf's corpse",
  11.  "Bounty Board",
  12.  "Marshal McBride",
  13.  "Sara Timberlain",
  14.  "William Pestle",
  15.  "Sealed Crate",
  16.  "Marshal Haggard",
  17.  "\"Auntie\" Bernice Stonefield",
  18.  "Billy Maclure",
  19.  "Ma Stonefield",
  20.  "Maybell Maclure",
  21.  "Tommy Joe Stonefield",
  22.  "Gramma Stonefield",
  23.  "Marshal McCree",
  24.  "Human Orphan",
  25.  "Orphan Matron Battlewail",
  26.  "Orcish Orphan",
  27.  "Wanted Poster",
  28.  "Grelin Whitebeard",
  29.  "Westfall Deed",
  30.  "Lieutenant Horatio Laine",
  31.  "Ajeck Rouack",
  32.  "Sir S. J. Erlgadin",
  33.  "Hemet Nesingwary Jr.",
  34.  "Karang Amakkar",
  35.  "Siege Master Stouthandle",
  36.  "Old Lion Statue",
  37.  "Clarice Foster",
  38.  "Yuriv's Tombstone",
  39.  "Glorin Steelbrow",
  40.  "Jern Hornhelm",
  41.  "Huldar",
  42.  "Prospector Ironband",
  43.  "Unguarded Thunder Ale Barrel",
  44.  "Marleth Barleybrew",
  45.  "Captain Tharran",
  46.  "Rudra Amberstill",
  47.  "Rejold Barleybrew",
  48.  "Pilot Bellowfiz",
  49.  "Renato Gallina",
  50.  "Suzetta Gallina",
  51.  "Harlan Bagley",
  52.  "Rema Schneider",
  53.  "Thurman Schneider",
  54.  "Zardeth of the Black Claw",
  55.  "Homing Robot OOX-17/TN",
  56.  "Grimand Elmore",
  57.  "Mountaineer Stormpike",
  58.  "Ragnar Thunderbrew",
  59.  "Razzle Sprysprocket",
  60.  "Mountaineer Barleybrew",
  61.  "Foreman Stonebrow",
  62.  "Senator Mehr Stonehallow",
  63.  "Pilot Longbeard",
  64.  "Pilot Stonegear",
  65.  "Athridas Bearmantle",
  66.  "Gaerolas Talvethren",
  67.  "Homing Robot OOX-09/HL",
  68.  "Moon Priestess Amara",
  69.  "Zenn Foulhoof",
  70.  "Syral Bladeleaf",
  71.  "Sharlindra",
  72.  "Melisara",
  73.  "Count Remington Ridgewell",
  74.  "Barnil Stonepot",
  75.  "Catelyn the Blade",
  76.  "Musty Scroll",
  77.  "Oglethorpe Obnoticus",
  78.  "Grand Mason Marblesten",
  79.  "Prospector Stormpike",
  80.  "Ruul Eagletalon",
  81.  "Eyahn Eagletalon",
  82.  "Morin Cloudstalker",
  83.  "Sealed Supply Crate",
  84.  "Harken Windtotem",
  85.  "Veren Tallstrider",
  86.  "Skorn Whitecloud",
  87.  "Lorekeeper Raintotem",
  88.  "Ancestral Spirit",
  89.  "Brewmaster Drohn",
  90.  "Mastok Wrilehiss",
  91.  "Je'neu Sancrea",
  92.  "Rezlak",
  93.  "Takrin Pathseeker",
  94.  "Kargal Battlescar",
  95.  "Halga Bloodeye",
  96.  "Sergra Darkthorn",
  97.  "Apothecary Helbrim",
  98.  "Telar Highstrider",
  99.  "Shoe",
  100.  "Regthar Deathgate",
  101.  "Wizzlecrank's Shredder",
  102.  "Sputtervalve",
  103.  "Mebok Mizzyrix",
  104.  "Darsok Swiftdagger",
  105.  "Gazrog",
  106.  "Tonga Runetotem",
  107.  "Mahren Skyseer",
  108.  "Jerrik Highmountain",
  109.  "Wharfmaster Dizzywig",
  110.  "Captain Thalo'thas Brightsun",
  111.  "Control Console",
  112.  "WANTED",
  113.  "Gazlowe",
  114.  "Brak Blusterpipe",
  115.  "Mankrik",
  116.  "Denalan",
  117.  "Rellian Greenspyre",
  118.  "Corithras Moonrage",
  119.  "Strange Fruited Plant",
  120.  "Strange Fronded Plant",
  121.  "Tallonkai Swiftroot",
  122.  "Tarindrella",
  123.  "Sentinel Arynia Cloudsbreak",
  124.  "Mist",
  125.  "Denalan's Planter",
  126.  "Crane Operator Bigglefuzz",
  127.  "Smith Argus",
  128.  "Tharg",
  129.  "Nazeer Bloodpike",
  130.  "Morgan Stern",
  131.  "Melor Stonehoof",
  132.  "\"Stinky\" Ignatz",
  133.  "Jorgen",
  134.  "Elling Trias",
  135.  "Tapoke \"Slim\" Jahn",
  136.  "Mikhail",
  137.  "Commander Samaul",
  138.  "Archmage Tervosh",
  139.  "Private Hendel",
  140.  "Felgur Twocuts",
  141.  "Roetten Stonehammer",
  142.  "Kreldig Ungor",
  143.  "Karnitol's Chest",
  144.  "Orphan Matron Nightingale",
  145.  "Kranal Fiss",
  146.  "Telf Joolam",
  147.  "Tormus Deepforge",
  148.  "Lotherias",
  149.  "Harry Burlguard",
  150.  "Bartleby",
  151.  "Jordan Stilwell",
  152.  "Bailor Stonehand",
  153.  "Doan Karhan",
  154.  "High Sorcerer Andromath",
  155.  "Gnoarn",
  156.  "Bingles Blastenheimer",
  157.  "Falkhaan Isenstrider",
  158.  "Innkeeper Farley",
  159.  "Porthannius",
  160.  "Innkeeper Keldamyr",
  161.  "Master Mathias Shaw",
  162.  "The Discs of Norgannon",
  163.  "High Examiner Tae'thelan Bloodwatcher",
  164.  "Gornek",
  165.  "Frang",
  166.  "Priestess A'moora",
  167.  "Oben Rageclaw",
  168.  "Orokk Omosh",
  169.  "Master Gadrin",
  170.  "The Sparklematic 5200",
  171.  "Talvash del Kissel",
  172.  "Nogg",
  173.  "High Explorer Magellas",
  174.  "Historian Karnik",
  175.  "Sage Truthseeker",
  176.  "Nara Wildmane",
  177.  "Thadius Grimshade",
  178.  "Karranisha",
  179.  "Rwag",
  180.  "Shikrik",
  181.  "Nartok",
  182.  "Rohaku Stonehoof",
  183.  "Harutt Thunderhorn",
  184.  "Lanka Farshot",
  185.  "Meela Dawnstrider",
  186.  "Gart Mistrunner",
  187.  "Shadow Priest Sarvis",
  188.  "Dannal Stern",
  189.  "David Trias",
  190.  "Dark Cleric Duesten",
  191.  "Isabella",
  192.  "Maximillion",
  193.  "Llane Beshere",
  194.  "Brother Sammuel",
  195.  "Jorik Kerridan",
  196.  "Priestess Anetta",
  197.  "Khelden Bremen",
  198.  "Drusilla La Salle",
  199.  "Jona Ironstock",
  200.  "Thran Khorman",
  201.  "Bromos Grummner",
  202.  "Thorgas Grimson",
  203.  "Solm Hargrin",
  204.  "Branstock Khalder",
  205.  "Saripal Smolderbrew",
  206.  "Ilthalaine",
  207.  "Alyissia",
  208.  "Ayanna Everstride",
  209.  "Frahun Shadewhisper",
  210.  "Melithar Staghelm",
  211.  "Shanda",
  212.  "Mardant Strongoak",
  213.  "Felix Whindlebolt",
  214.  "Kadrak",
  215.  "Graham Van Talen",
  216.  "Lilliam Sparkspindle",
  217.  "Nixx Sprocketspring",
  218.  "Tinkmaster Overspark",
  219.  "Springspindle Fizzlegear",
  220.  "Tinkerwiz",
  221.  "Chicken",
  222.  "Wenikee Boltbucket",
  223.  "Large Leather Backpacks",
  224.  "Zukk'ash Pod",
  225.  "Alchemist Pestlezugg",
  226.  "Zilzibin Drumlore",
  227.  "Laris Geardawdle",
  228.  "Beached Sea Turtle",
  229.  "Rivern Frostwind",
  230.  "Kilram",
  231.  "Jinar'Zillen",
  232.  "Bibbly F'utzbuckle",
  233.  "Hegnar Rumbleshot",
  234.  "Supervisor Raelen",
  235.  "Smeed Scrabblescrew",
  236.  "Sentinel Aynasha",
  237.  "Sentinel Onaeya",
  238.  "Roon Wildmane",
  239.  "Cork Gizelton",
  240.  "Yori Crackhelm",
  241.  "Stormpike Quartermaster",
  242.  "Frostwolf Quartermaster",
  243.  "Innkeeper Gryshka",
  244.  "Turak Runetotem",
  245.  "Rigger Gizelton",
  246.  "Meilosh",
  247.  "Kali Remik",
  248.  "Thotar",
  249.  "Tristane Shadowstone",
  250.  "Grif Wildheart",
  251.  "Melizza Brimbuzzle",
  252.  "Hornizz Brimbuzzle",
  253.  "Deathguard Morris",
  254.  "Anette Williams",
  255.  "Gordon Wendham",
  256.  "Michael Garrett",
  257.  "Fidelio",
  258.  "Sister Aquinne",
  259.  "Leora",
  260.  "Nyoma",
  261.  "Varg Windwhisper",
  262.  "Tak",
  263.  "Ahanu",
  264.  "Tal",
  265.  "Grimtak",
  266.  "Burok",
  267.  "Doras",
  268.  "Gremlock Pilsnor",
  269.  "Brolan Galebeard",
  270.  "Pixel",
  271.  "Marukai",
  272.  "Mitsuwa",
  273.  "Ruul Snowhoof",
  274.  "Yama Snowhoof",
  275.  "Kuray'bin",
  276.  "Bragor Bloodfist",
  277.  "Torek",
  278.  "Ertog Ragetusk",
  279.  "Nat Pagle",
  280.  "Lumak",
  281.  "Grimnur Stonebrand",
  282.  "Dirge Quikcleave",
  283.  "Zamja",
  284.  "Daryl Riknussun",
  285.  "Doctor Gregory Victor",
  286.  "Krenk Choplimb",
  287.  "Doctor Gustaf VanHowzen",
  288.  "Nissa Firestone",
  289.  "Muglash",
  290.  "Warsong Runner",
  291.  "Kaymard Copperpinch",
  292.  "Great-father Winter",
  293.  "Strange Snowman",
  294.  "Furmund",
  295.  "Sagorne Creststrider",
  296.  "Frostwolf Stable Master",
  297.  "Whulwert Copperpinch",
  298.  "Wulmort Jinglepocket",
  299.  "Greatfather Winter",
  300.  "Khole Jinglepocket",
  301.  "Nardstrum Copperpinch",
  302.  "Stormpike Stable Master",
  303.  "Baine Bloodhoof",
  304.  "Goli Krumn",
  305.  "Muradin Bronzebeard",
  306.  "Sergeant Durgen Stormpike",
  307.  "Corporal Teeka Bloodsnarl",
  308.  "Mountaineer Boombellow",
  309.  "Jotek",
  310.  "Prospector Stonehewer",
  311.  "Voggah Deathgrip",
  312.  "Warmaster Laggrond",
  313.  "Lieutenant Haggerdin",
  314.  "Murgot Deepforge",
  315.  "Smith Regzar",
  316.  "King Varian Wrynn",
  317.  "Major Mattingly",
  318.  "Spackle Thornberry",
  319.  "Drakkisath's Brand",
  320.  "Field Marshal Afrasiabi",
  321.  "Garrosh Hellscream",
  322.  "Overlord Runthak",
  323.  "Highlord Demitrian",
  324.  "Short John Mithril",
  325.  "Melnan Darkstone",
  326.  "Gelvas Grimegate",
  327.  "Kruban Darkblade",
  328.  "Professor Thaddeus Paleo",
  329.  "Sayge's Fortune ",
  330.  "Field Marshal Oslight",
  331.  "Deathmaster Dwire",
  332.  "Beetix Ficklespragg",
  333.  "Hermit Ortell",
  334.  "Windcaller Proudhorn",
  335.  "Noggle Ficklespragg",
  336.  "Wanted Poster: Deathclasp",
  337.  "Vish Kozus",
  338.  "Geologist Larksbane",
  339.  "Commander Mar'alith",
  340.  "Calandrath",
  341.  "Sandy Cookbook",
  342.  "Rutgar Glyphshaper",
  343.  "Frankal Stonebridge",
  344.  "Bor Wildmane",
  345.  "Huum Wildmane",
  346.  "Magistrix Erona",
  347.  "Lanthan Perilon",
  348.  "Julia Sunstriker",
  349.  "Delios Silverblade",
  350.  "Well Watcher Solanian",
  351.  "Arcanist Ithanas",
  352.  "Arcanist Helion",
  353.  "Outrunner Alarion",
  354.  "Innkeeper Delaniel",
  355.  "Aeldon Sunbrand",
  356.  "Wanted: Thaelis the Hungerer",
  357.  "Sergeant Kan'ren",
  358.  "Kernda",
  359.  "Magister Jaronis",
  360.  "Larianna Riverwind",
  361.  "Ranger Jaela",
  362.  "Lieutenant Dawnrunner",
  363.  "Arathel Sunforge",
  364.  "Ven'jashi",
  365.  "Velendris Whitemorn",
  366.  "Gorn One Eye",
  367.  "Ley-Keeper Velania",
  368.  "Apprentice Mirveda",
  369.  "Runewarden Deryan",
  370.  "Velan Brightoak",
  371.  "Windcaller Yessendra",
  372.  "Keyl Swiftclaw",
  373.  "Warden Haro",
  374.  "Summoner Teli'Larien",
  375.  "Matron Arena",
  376.  "Vethsera",
  377.  "Holly Preserver",
  378.  "Wonderform Operator",
  379.  "Innkeeper Allison",
  380.  "Innkeeper Pala",
  381.  "Lunar Festival Harbinger",
  382.  "Valadar Starsong",
  383.  "Lunar Festival Emissary",
  384.  "Lunar Festival Herald",
  385.  "Hathvelion Sungaze",
  386.  "Captain Kelisendra",
  387.  "Magister Duskwither",
  388.  "Apprentice Loralthalis",
  389.  "Magister Duskwither's Journal",
  390.  "Ranger Degolien",
  391.  "Groundskeeper Wyllithen",
  392.  "Ley-Keeper Caidanis",
  393.  "Apprentice Ralen",
  394.  "Apprentice Meledor",
  395.  "Instructor Antheol",
  396.  "Lord Saltheril",
  397.  "Sathiel",
  398.  "Skymaster Brightdawn",
  399.  "Sathren Azuredawn",
  400.  "Skymistress Gloaming",
  401.  "Arcanist Vandril",
  402.  "Ranger Valanna",
  403.  "Magistrix Landra Dawnstrider",
  404.  "Courier Dawnstrider",
  405.  "Ranger Lethvalin",
  406.  "Captain Helios",
  407.  "Apothecary Thedra",
  408.  "Apothecary Renzithen",
  409.  "Magister Darenis",
  410.  "Magister Idonis",
  411.  "Rathis Tomber",
  412.  "Deathstalker Rathiel",
  413.  "Geranis Whitemorn",
  414.  "Farstrider Sedina",
  415.  "Dame Auriferous",
  416.  "Ranger Vynna",
  417.  "Dusty Journal",
  418.  "Arcanist Janeda",
  419.  "Magister Sylastor",
  420.  "Magister Kaendris",
  421.  "Master Chef Mouldier",
  422.  "High Executor Mavren",
  423.  "Lady Sylvanas Windrunner",
  424.  "Deathstalker Maltendis",
  425.  "Advisor Valwyn",
  426.  "Apprentice Shatharia",
  427.  "Magister Quallestis",
  428.  "Ranger Lilatha",
  429.  "Wanted Poster: Kel'gash the Wicked",
  430.  "Magistrix Aminel",
  431.  "Ranger Sareyn",
  432.  "Ardeyn Riverwind",
  433.  "Ranger Krenn'an",
  434.  "Apothecary Venustus",
  435.  "Farstrider Solanna",
  436.  "Megelon",
  437.  "Proenitus",
  438.  "Apprentice Vor'el",
  439.  "Zalduun",
  440.  "Botanist Taerix",
  441.  "Vindicator Aldar",
  442.  "Technician Zhanaa",
  443.  "Tolaan",
  444.  "Technician Dyvuun",
  445.  "Aeun",
  446.  "Caregiver Chellan",
  447.  "Dying Blood Elf",
  448.  "Lor'themar Theron ",
  449.  "Ranger Captain Venn'ren",
  450.  "Grelag",
  451.  "Legassi",
  452.  "\"Screaming\" Screed Luckheed",
  453.  "Foreman Biggums",
  454.  "Marniel Amberlight",
  455.  "Ryathen the Somber",
  456.  "Thiah Redmane",
  457.  "Magistrix Carinda",
  458.  "Wounded Blood Elf Pilgrim",
  459.  "Taleris Dawngazer",
  460.  "Falconer Drenna Riverwind",
  461.  "Elsaana",
  462.  "Gremni Longbeard",
  463.  "Apothecary Azethen",
  464.  "Anchorite Obadei",
  465.  "Sedai's Corpse",
  466.  "Pathstalker Kariel",
  467.  "Ranger Sallina",
  468.  "Arcanist Calesthris Dawnstar",
  469.  "Scout Vanura",
  470.  "Ikan",
  471.  "Nazgrel",
  472.  "Fel Orc Corpse",
  473.  "Far Seer Regulkut",
  474.  "Gorkan Bloodfist",
  475.  "Warlord Dar'toon",
  476.  "Lieutenant General Orion",
  477.  "Rifleman Torrig",
  478.  "Marshal Bluewall",
  479.  "Scout Bloodfist",
  480.  "General Kirika",
  481.  "Aeranas",
  482.  "Mirren Longbeard",
  483.  "Makuru",
  484.  "Amaan the Wise",
  485.  "Nemeth Hawkeye",
  486.  "Balandar Brightstar",
  487.  "Diktynna",
  488.  "Acteon",
  489.  "Exarch Menelaous",
  490.  "Anchorite Fateema",
  491.  "Daedal",
  492.  "Eralan",
  493.  "Force Commander Danath Trollbane",
  494.  "Field Commander Romus",
  495.  "Magus Zabraxis",
  496.  "Shadow Hunter Ty'jin",
  497.  "Martik Tor'seldori",
  498.  "Admiral Odesyus",
  499.  "\"Cookie\" McWeaksauce",
  500.  "Priestess Kyleen Il'dinare",
  501.  "Archaeologist Adamant Ironheart",
  502.  "Magwin",
  503.  "Voidstone",
  504.  "Cryptographer Aurren",
  505.  "Totem of Akida",
  506.  "Totem of Coo",
  507.  "Totem of Tikti",
  508.  "Totem of Yor",
  509.  "Totem of Vark",
  510.  "Arugoo of the Stillpine",
  511.  "Clopper Wizbang",
  512.  "Battered Ancient Book",
  513.  "Anchorite Paetheus",
  514.  "Sid Limbardi",
  515.  "High Chief Stillpine",
  516.  "Moordo",
  517.  "Mound of Dirt",
  518.  "Gurf",
  519.  "Blood Crystal",
  520.  "Vindicator Aalesia",
  521.  "Kurz the Revelator",
  522.  "Stone Guard Stok'ton",
  523.  "Caza'rez",
  524.  "Stillpine the Younger",
  525.  "Morae",
  526.  "Lieutenant Chadwick",
  527.  "Gunny",
  528.  "Galaen's Corpse",
  529.  "Tracker Lyceon",
  530.  "Harbinger Mikolaas",
  531.  "Ruada",
  532.  "Zaldaan",
  533.  "Nurguni",
  534.  "Stephanos",
  535.  "Telenus",
  536.  "Draenei Cartographer",
  537.  "Torallius the Pack Handler",
  538.  "Aonar",
  539.  "Vorkhan the Elekk Herder",
  540.  "Archmage Alturus",
  541.  "Kalynna Lathred",
  542.  "Huntress Kella Nightbow",
  543.  "Mack Diver",
  544.  "K. Lee Smallfry",
  545.  "Vindicator Boros",
  546.  "Jessera of Mac'Aree",
  547.  "Kessel",
  548.  "Princess Stillpine",
  549.  "Stillpine Ambassador Frasaboo",
  550.  "Exarch Admetius",
  551.  "Achelus",
  552.  "Researcher Cornelius",
  553.  "Captain Edward Hanes",
  554.  "Jesthenis Sunstriker",
  555.  "Prince Toreth",
  556.  "Interrogator Elysia",
  557.  "Lethyn Moonfire",
  558.  "Watcher Leesa'oh",
  559.  "Prophet Velen",
  560.  "Vindicator Kuros",
  561.  "Slain Outrunner",
  562.  "Galaen's Journal",
  563.  "Gzhun'tt",
  564.  "Ysiel Windsinger",
  565.  "T'shu",
  566.  "Khn'nix",
  567.  "Amythiel Mistwalker",
  568.  "Warden Hamoot",
  569.  "Fhwoor",
  570.  "Watcher Jhang",
  571.  "Fahssn",
  572.  "Vindicator Aesom",
  573.  "Scout Loryi",
  574.  "Ikeyen",
  575.  "Kayra Longmane",
  576.  "Demolitionist Legoso",
  577.  "Vindicator Corin",
  578.  "Magasha",
  579.  "Reavij",
  580.  "Zurai",
  581.  "Scout Jyoba",
  582.  "Shadow Hunter Denjai",
  583.  "Anchorite Ahuurn",
  584.  "Ikuti",
  585.  "Ruam",
  586.  "Noraani",
  587.  "Haalrun",
  588.  "Vindicator Idaar",
  589.  "Windcaller Blackhoof",
  590.  "Hemet Nesingwary",
  591.  "Nahuud",
  592.  "Andarl",
  593.  "Timothy Daniels",
  594.  "Kialon Nightblade",
  595.  "Nekthar",
  596.  "Mokasa",
  597.  "Messenger Gazgrigg",
  598.  "Captain Kroghan",
  599.  "Apprentice Vishael",
  600.  "Elementalist Lo'ap",
  601.  "Lauranna Thar'well",
  602.  "Gshaff",
  603.  "Msshi'fn",
  604.  "Witch Doctor Tor'gash",
  605.  "Elementalist Untrag",
  606.  "Gordawg",
  607.  "Archmage Cedric",
  608.  "Khadgar",
  609.  "Puluu",
  610.  "Maktu",
  611.  "Gambarinka",
  612.  "Zurjaya",
  613.  "Seer Janidi",
  614.  "Shado 'Fitz' Farstrider",
  615.  "Harold Lane",
  616.  "Elementalist Morgh",
  617.  "Farseer Kurkush",
  618.  "Farseer Corhuk",
  619.  "Saurfang the Younger",
  620.  "Farseer Margadesh",
  621.  "Mag'har Captive",
  622.  "Garrosh",
  623.  "Elementalist Ioki",
  624.  "Elementalist Sharvak",
  625.  "Elementalist Yal'hah",
  626.  "Arechron",
  627.  "Otonbu the Sage",
  628.  "Poli'lukluk the Wiser",
  629.  "Kurenai Captive",
  630.  "Gezhe",
  631.  "Jorin Deadeye",
  632.  "Kilrath",
  633.  "Unkor the Ruthless",
  634.  "Prospector Conall",
  635.  "Kristen Dipswitch",
  636.  "Zerid",
  637.  "Elkay'gan the Mystic",
  638.  "Consortium Recruiter",
  639.  "Shadrek",
  640.  "Huntress Bintook",
  641.  "Mo'mor the Breaker",
  642.  "Corki",
  643.  "Lantresor of the Blade",
  644.  "Garadar Bulletin Board",
  645.  "Warden Bullrok",
  646.  "Telaar Bulletin Board",
  647.  "Warden Moi'bff Jill",
  648.  "Matron Drakia",
  649.  "Elder Yorley",
  650.  "Elder Ungriz",
  651.  "Warden Treelos",
  652.  "Huntress Kima",
  653.  "Earthbinder Tavgren",
  654.  "Tooki",
  655.  "Jenai Starwhisper",
  656.  "Gurgthock",
  657.  "Wodin the Troll-Servant",
  658.  "Empoor",
  659.  "Wind Trader Lathrai",
  660.  "Altruis the Sufferer",
  661.  "Matron Celestine",
  662.  "Thander",
  663.  "Rokag",
  664.  "Ros'eleth",
  665.  "Rakoria",
  666.  "Lieutenant Meridian",
  667.  "Sergeant Chawni",
  668.  "Bertelm",
  669.  "Theloria Shadecloak",
  670.  "Kurgatok",
  671.  "Shadowstalker Kaide",
  672.  "Sal'salabim",
  673.  "Fel Orc Plans",
  674.  "Sha'nir",
  675.  "Malukaz",
  676.  "Ishanah",
  677.  "Arcanist Adyria",
  678.  "Soolaveen",
  679.  "Ramdor the Mad",
  680.  "Taela Everstride",
  681.  "Mawg Grimshot",
  682.  "Seth",
  683.  "Lieutenant Gravelhammer",
  684.  "Private Weeks",
  685.  "Advisor Faila",
  686.  "Scout Neftis",
  687.  "Greatmother Geyah",
  688.  "Warp-Scryer Kryv",
  689.  "Honor Guard Wesilow",
  690.  "Isla Starmane",
  691.  "Captain Auric Sunchaser",
  692.  "Dumphry",
  693.  "Father Malgor Devidicus",
  694.  "Prospector Nachlan",
  695.  "Scout Jorli",
  696.  "Defender Sorli",
  697.  "Chief Researcher Amereldine",
  698.  "Chief Researcher Kartos",
  699.  "Mother Kashur",
  700.  "Megzeg Nukklebust",
  701.  "Spymistress Mehlisah Highcrown",
  702.  "Field Commander Mahfuun",
  703.  "Isfar",
  704.  "K'ure",
  705.  "A'dal",
  706.  "Warrant Officer Tracy Proudwell",
  707.  "Wazat",
  708.  "Battlecryer Blackeye",
  709.  "\"Shotgun\" Jones",
  710.  "Ohlorn Farstrider",
  711.  "Watch Commander Relthorn Netherwane",
  712.  "Commander Duron",
  713.  "Vlagga Freyfeather",
  714.  "Sergeant Shatterskull",
  715.  "Forward Commander To'arch",
  716.  "Tola'thion",
  717.  "Amish Wildhammer",
  718.  "Marshal Isildor",
  719.  "Sergeant Altumus",
  720.  "Forward Commander Kingston",
  721.  "Mahuram Stouthoof",
  722.  "Lieutenant Amadi",
  723.  "Wing Commander Gryphongar",
  724.  "Greatfather Aldrimus",
  725.  "Nexus-Prince Haramad",
  726.  "Whitebark's Spirit",
  727.  "Ravandwyr",
  728.  "Image of Archmage Vargoth",
  729.  "Archmage Vargoth",
  730.  "Spy Grik'tha",
  731.  "Oloraak",
  732.  "Custodian Dieworth",
  733.  "Netherologist Coppernickels",
  734.  "Rocket-Chief Fuselage",
  735.  "Spymaster Thalodien",
  736.  "Bot-Specialist Alley",
  737.  "Maxx A. Million Mk. V",
  738.  "Veronia",
  739.  "Caledis Brightdawn",
  740.  "Boots",
  741.  "Magistrix Larynna",
  742.  "Magister Theledorn",
  743.  "Lead Sapper Blastfizzle",
  744.  "Nether-Stalker Khay'ji",
  745.  "Papa Wheeler",
  746.  "Haggard War Veteran",
  747.  "Artificer Morphalius",
  748.  "Emissary Mordiba",
  749.  "Chief Engineer Trep",
  750.  "Ha'lei",
  751.  "Ezekiel",
  752.  "Althen the Historian",
  753.  "\"Dirty\" Larry",
  754.  "Lieutenant-Sorcerer Morran",
  755.  "Mama Wheeler",
  756.  "Foreman Razelcraz",
  757.  "Exarch Orelis",
  758.  "Apothecary Zelana",
  759.  "Apothecary Albreck",
  760.  "Anchorite Karja",
  761.  "B'naar Control Console",
  762.  "Doctor Vomisa, Ph.T.",
  763.  "Nitrin the Learned",
  764.  "Commander Hogarth",
  765.  "Gahruj",
  766.  "Image of Nexus-Prince Haramad",
  767.  "Dealer Hazzin",
  768.  "Wind Trader Marid",
  769.  "Image of Wind Trader Marid",
  770.  "Shrouded Figure",
  771.  "Tyri",
  772.  "Wind Trader Tuluman",
  773.  "Andormu",
  774.  "Ogath the Mad",
  775.  "Steward of Time",
  776.  "Magister Aledis",
  777.  "General Krakork",
  778.  "Zuben Elgenubi",
  779.  "N. D. Meancamp",
  780.  "Drijya",
  781.  "Necromantic Focus",
  782.  "Nether-Stalker Oazul",
  783.  "Foreman Sundown",
  784.  "Adyen the Lightwarden",
  785.  "Apprentice Andrethan",
  786.  "Thadell",
  787.  "Bessy",
  788.  "Zephyrion",
  789.  "Nether-Stalker Nauthis",
  790.  "Commander Ameer",
  791.  "Image of Commander Ameer",
  792.  "Runetog Wildhammer",
  793.  "Agent Araxes",
  794.  "Gryphoneer Windbellow",
  795.  "Wing Commander Brack",
  796.  "Mehrdad",
  797.  "Earthbinder Galandria Nightbreeze",
  798.  "Behomat",
  799.  "Agent Ya-six",
  800.  "Naladu",
  801.  "Kaylaan",
  802.  "Field Marshal Brock",
  803.  "Magister Bloodhawk",
  804.  "Akoru the Firecaller",
  805.  "Researcher Navuud",
  806.  "Magistrix Fyalenn",
  807.  "Voren'thal the Seer",
  808.  "Flesh Handler Viridius",
  809.  "Ghabar",
  810.  "Captured Protectorate Vanguard",
  811.  "Aurine Moonblaze",
  812.  "Dulvi",
  813.  "Tashar",
  814.  "Shauly Pore",
  815.  "Audi the Needle",
  816.  "Professor Dabiri",
  817.  "Soridormi",
  818.  "Vurtok Axebreaker",
  819.  "Earthmender Wilda",
  820.  "Earthmender Torlok",
  821.  "Rina Moonspring",
  822.  "Arazmodu",
  823.  "Corporal Ironridge",
  824.  "Gor'drek",
  825.  "Tor'chunk Twoclaws",
  826.  "Commander Skyshadow",
  827.  "Bronwyn Stouthammer",
  828.  "Borgrim Stouthammer",
  829.  "Oronok Torn-heart",
  830.  "Vindicator Vuuleen",
  831.  "Grom'tor, Son of Oronok",
  832.  "Rokgah Bloodgrip",
  833.  "Ar'tor, Son of Oronok",
  834.  "Spirit of Ar'tor",
  835.  "T'chali the Witch Doctor",
  836.  "Borak, Son of Oronok",
  837.  "Tobias the Filth Gorger",
  838.  "Daranelle",
  839.  "Lashh'an Tome",
  840.  "Tally Zapnabber",
  841.  "Wing Commander Nuainn",
  842.  "Dertrok",
  843.  "Timeon",
  844.  "Anchorite Ceyla",
  845.  "Gryphonrider Kieran",
  846.  "Stormer Ewan Wildwing",
  847.  "Sanoru",
  848.  "R-3D0",
  849.  "Toshley",
  850.  "Exarch Onaala",
  851.  "Nickwinkle the Metro-Gnome",
  852.  "Blood Guard Gulmok",
  853.  "Scout Zagran",
  854.  "Plexi",
  855.  "Fizit \"Doc\" Clocktock",
  856.  "Nakansi",
  857.  "Rexxar",
  858.  "Leoroxx",
  859.  "Taerek",
  860.  "Silmara",
  861.  "Vindicator Aluumen",
  862.  "Dizzy Dina",
  863.  "Ordinn Thunderfist",
  864.  "Grokom Deatheye",
  865.  "Chief Apothecary Hildagard",
  866.  "Akama",
  867.  "Razak Ironsides",
  868.  "Ancient Shadowmoon Spirit",
  869.  "Zorus the Judicator",
  870.  "Warcaller Sardon Truslice",
  871.  "Warcaller Beersnout",
  872.  "Researcher Tiorus",
  873.  "Gnomus",
  874.  "David Wayne",
  875.  "Earthmender Sophurus",
  876.  "Earthmender Splinthoof",
  877.  "Tree Warden Chawn",
  878.  "Arcanist Thelis",
  879.  "Larissa Sunstrike",
  880.  "Overlord Or'barokh",
  881.  "Thane Yoregar",
  882.  "O'Mally Zapnabber",
  883.  "Baron Sablemane",
  884.  "Samia Inkling",
  885.  "Garm Wolfbrother",
  886.  "Watcher Moonshade",
  887.  "Archmage Leryda",
  888.  "Kurdran Wildhammer",
  889.  "Kor'kron Wind Rider",
  890.  "Faradrella",
  891.  "Rohok",
  892.  "Parshah",
  893.  "Sergeant Kargrul",
  894.  "Mosswood the Ancient",
  895.  "Wildhammer Gryphon Rider",
  896.  "Crystal Prison",
  897.  "Captain Darkhowl",
  898.  "Commander Haephus Stonewall",
  899.  "Lieutenant Fairweather",
  900.  "Mordenai",
  901.  "Varen the Reclaimer",
  902.  "Neltharaku",
  903.  "Wildlord Antelarion",
  904.  "Zezzak",
  905.  "Legion Communicator",
  906.  "Battlemage Vyara",
  907.  "Harbinger Saronen",
  908.  "Treebole",
  909.  "Apothecary Antonivich",
  910.  "Kirrik the Awakened",
  911.  "High Priest Orglum",
  912.  "Rilak the Redeemed",
  913.  "Spiritcaller Dohgar",
  914.  "Ethan",
  915.  "Karynaku",
  916.  "Matron Varah",
  917.  "Lady Dena Kennedy",
  918.  "Scout Navrin",
  919.  "Oakun",
  920.  "Mekeda",
  921.  "Defender Grashna",
  922.  "Akuno",
  923.  "Wing Commander Dabir'ee",
  924.  "Lakotae",
  925.  "Skywing",
  926.  "Zarevhi",
  927.  "Lorokeem",
  928.  "Assistant Klatu",
  929.  "Evergrove Druid",
  930.  "Alchemist Gribble",
  931.  "Commander Ra'vaj",
  932.  "Vekax",
  933.  "Vindicator Haylen",
  934.  "Chief Archaeologist Letoll",
  935.  "Dwarfowitz",
  936.  "Sab'aoth",
  937.  "Sentinel Moonwhisper",
  938.  "Grunt Grahk",
  939.  "Orphan Matron Mercy",
  940.  "Blood Elf Orphan",
  941.  "Draenei Orphan",
  942.  "Xi'ri",
  943.  "O'ros",
  944.  "Protectorate Advisor Rahim",
  945.  "Grok",
  946.  "Mog'dorg the Wizened",
  947.  "V'eru",
  948.  "Chort",
  949.  "Severin",
  950.  "Sky Commander Adaris",
  951.  "Sky Sergeant Doryn",
  952.  "Chu'a'lor",
  953.  "Sky Sergeant Vanderlip",
  954.  "Overlord Mor'ghor",
  955.  "Taskmaster Varkule Dragonbreath",
  956.  "Yarzill the Merc",
  957.  "Hazzik",
  958.  "Torkus",
  959.  "Old Orok",
  960.  "Seer Nakha",
  961.  "Vindicator Aeus",
  962.  "Arcanist Raestan",
  963.  "Bossi Pentapiston",
  964.  "Seer Jovar",
  965.  "Rip Pedalslam",
  966.  "Brunn Flamebeard",
  967.  "Fantei",
  968.  "Agadai",
  969.  "Dama Wildmane",
  970.  "Kronk",
  971.  "Chief Overseer Mudlump",
  972.  "Sky Commander Keller",
  973.  "Murg \"Oldie\" Muckjaw",
  974.  "Ja'y Nosliw",
  975.  "Skyguard Khatie",
  976.  "Trope the Filth-Belcher",
  977.  "Corlok the Vet",
  978.  "Wing Commander Ichman",
  979.  "Wing Commander Mulverick",
  980.  "Captain Skyshatter",
  981.  "Mistress of the Mines",
  982.  "Dragonmaw Foreman",
  983.  "Gahk",
  984.  "Ronag the Slave Driver",
  985.  "Skyguard Prisoner",
  986.  "Illidari Lord Balthas",
  987.  "Jho'nass",
  988.  "Skyguard Handler Deesak",
  989.  "Commander Hobb",
  990.  "Yuula",
  991.  "Commander Arcus",
  992.  "Barthamus",
  993.  "Aether-tech Apprentice",
  994.  "Ahab Wheathoof",
  995.  "Griftah",
  996.  "Budd Nedreck",
  997.  "Bombardier Petrov",
  998.  "Engineer Feknut",
  999.  "Chef Kettleblack",
  1000.  "Captain Adams",
  1001.  "Prigmon",
  1002.  "Apothecary Lysander",
  1003.  "Old Man Stonemantle",
  1004.  "Overseer Irena Stonemantle",
  1005.  "Steel Gate Chief Archaeologist",
  1006.  "Ember Clutch Ancient",
  1007.  "Mage-Lieutenant Malister",
  1008.  "Cannoneer Ely",
  1009.  "Scout Knowles",
  1010.  "Moxie Steelgrille",
  1011.  "Drazzit Dripvalve",
  1012.  "Tabetha",
  1013.  "Guard Byron",
  1014.  "Apprentice Tasserel",
  1015.  "Sapper Steelring",
  1016.  "High Executor Anselm",
  1017.  "Explorer Abigail",
  1018.  "Pontius",
  1019.  "Macalroy",
  1020.  "Vice Admiral Keller",
  1021.  "Captain Harker",
  1022.  "Father Levariol",
  1023.  "Dark Ranger Lyana",
  1024.  "Apothecary Hanes",
  1025.  "Westguard Sergeant",
  1026.  "Scout Valory",
  1027.  "Defender Mordun",
  1028.  "Dragonskin Scroll",
  1029.  "Chieftain Ashtotem",
  1030.  "Winterhoof Brave",
  1031.  "Greatmother Ankha",
  1032.  "Dark Ranger Marrah",
  1033.  "Celea Frozenmane",
  1034.  "Gil Grisert",
  1035.  "Ahota Whitefrost",
  1036.  "Beltrand McSorf",
  1037.  "Pulroy the Archaeologist",
  1038.  "Zedd",
  1039.  "Nokoma Snowseer",
  1040.  "Glorenfeld",
  1041.  "Plaguebringer Tillinghast",
  1042.  "Sergeant Gorth",
  1043.  "Foreman Colbey",
  1044.  "Sage Mistwalker",
  1045.  "Ares the Oathbound",
  1046.  "Lord Irulon Trueblade",
  1047.  "Trapper Jethan",
  1048.  "Longrunner Skycloud",
  1049.  "Junat the Wanderer",
  1050.  "Apothecary Malthus",
  1051.  "Daegarn",
  1052.  "Apothecary Grick",
  1053.  "Lieutenant Maeve",
  1054.  "Lurielle",
  1055.  "Lydell",
  1056.  "Chief Plaguebringer Harris",
  1057.  "\"Hacksaw\" Jenny",
  1058.  "Wind Tamer Kagan",
  1059.  "Watcher Moonleaf",
  1060.  "Ulfang",
  1061.  "Peppy Wrongnozzle",
  1062.  "Christopher Sloan",
  1063.  "Thoralius the Wise",
  1064.  "Prospector Belvar",
  1065.  "Longrunner Pembe",
  1066.  "Wind Trader Zhareem",
  1067.  "Researcher Aderan",
  1068.  "Nether-Stalker Mah'duun",
  1069.  "Sage Edan",
  1070.  "The Rokk",
  1071.  "Explorer Jaren",
  1072.  "Apothecary Anastasia",
  1073.  "Quartermaster Brevin",
  1074.  "Cormath the Courier",
  1075.  "Guard Captain Zorek",
  1076.  "Lieutenant Icehammer",
  1077.  "Old Icefin",
  1078.  "Scribe Seguine",
  1079.  "Handsome Terry",
  1080.  "Harold Lagras",
  1081.  "Stanwad",
  1082.  "Alicia",
  1083.  "Caylee Dak",
  1084.  "Elder Atuik",
  1085.  "Zeh'gehn",
  1086.  "Taruk",
  1087.  "Scuttle Frostprow",
  1088.  "Annie Bonn",
  1089.  "Anuniaq",
  1090.  "Walt",
  1091.  "Donny",
  1092.  "Exarch Larethor",
  1093.  "Dathris Sunstriker",
  1094.  "Lakoor",
  1095.  "Karrtog",
  1096.  "Orfus of Kamagua",
  1097.  "Exorcist Sullivan",
  1098.  "Exorcist Vaisha",
  1099.  "Grezzix Spindlesnap",
  1100.  "\"Silvermoon\" Harry",
  1101.  "Exarch Nasuun",
  1102.  "Magistrix Seyla",
  1103.  "Captain Ellis",
  1104.  "Mar'nah",
  1105.  "Captain Theris Dawnhearth",
  1106.  "Vindicator Xayann",
  1107.  "Battlemage Arynna",
  1108.  "Tradesman Portanuus",
  1109.  "Smith Hauthaa",
  1110.  "Harbinger Inuuro",
  1111.  "Magister Ilastar",
  1112.  "Captain Valindria",
  1113.  "Vindicator Kaalan",
  1114.  "Astromancer Darnarian",
  1115.  "Anchorite Ayuri",
  1116.  "Anchorite Kairthos",
  1117.  "King Mrgl-Mrgl",
  1118.  "Ahlurglgr",
  1119.  "Brglmurgl",
  1120.  "Mrmrglmr",
  1121.  "Cleaver Bmurglbrm",
  1122.  "Glrglrglr",
  1123.  "Lurgglbr",
  1124.  "Lunk-tusk",
  1125.  "Endorah",
  1126.  "Librarian Donathan",
  1127.  "Midge",
  1128.  "Librarian Garren",
  1129.  "Warsong Recruitment Officer",
  1130.  "Overlord Bor'gorok",
  1131.  "Grunt Ragefist",
  1132.  "Longrunner Proudhoof",
  1133.  "High Overlord Saurfang",
  1134.  "Overlord Razgor",
  1135.  "Leryssa",
  1136.  "William Allerton",
  1137.  "James Deacon",
  1138.  "Old Man Colburn",
  1139.  "Private Brau",
  1140.  "Elder Atkanok",
  1141.  "Quartermaster Holgoth",
  1142.  "Foreman Mortuus",
  1143.  "Etaruk",
  1144.  "Karuk",
  1145.  "Shadowstalker Barthus",
  1146.  "Shadowstalker Luther",
  1147.  "Shadowstalker Ickoris",
  1148.  "Veehja",
  1149.  "Spirit Talker Snarlfang",
  1150.  "Imperean",
  1151.  "Chieftain Wintergale",
  1152.  "Wind Master To'bor",
  1153.  "Farseer Grimwalker's Spirit",
  1154.  "Gorge the Corpsegrinder",
  1155.  "Ortrosh",
  1156.  "Durm Icehide",
  1157.  "Mobu",
  1158.  "Crafty Wobblesprocket",
  1159.  "Librarian Normantis",
  1160.  "Sage Aeire",
  1161.  "Snow Tracker Grumm",
  1162.  "Waltor of Pal'ea",
  1163.  "Master Fire Eater",
  1164.  "Snow Tracker Junek",
  1165.  "Mootoo the Younger",
  1166.  "Elder Mootoo",
  1167.  "Old Man Barlo",
  1168.  "Recruitment Officer Blythe",
  1169.  "General Arlos",
  1170.  "Bonker Togglevolt",
  1171.  "Fizzcrank Fullthrottle",
  1172.  "Greatmother Taiga",
  1173.  "Sage Highmesa",
  1174.  "Shadowstalker Canarius",
  1175.  "Longrunner Bristlehorn",
  1176.  "Surristrasz",
  1177.  "Warmage Anzim",
  1178.  "Archmage Evanor",
  1179.  "Greatfather Mahan",
  1180.  "Wind Tamer Barah",
  1181.  "Farmer Torp",
  1182.  "Mordle Cogspinner",
  1183.  "Bixie Wrenchshanker",
  1184.  "Tinky Wickwhistle",
  1185.  "Supply Master Taz'ishi",
  1186.  "Shadowstalker Getry",
  1187.  "Airman Skyhopper",
  1188.  "Jinky Wingnut",
  1189.  "Warden Nork Bloodfrenzy",
  1190.  "Scout Tungok",
  1191.  "Abner Fizzletorque",
  1192.  "Bloodmage Laurith",
  1193.  "Primal Mighthorn",
  1194.  "Massive Glowing Egg",
  1195.  "Iggy \"Tailspin\" Cogtoggle",
  1196.  "Sergeant Hammerhill",
  1197.  "Archmage Berinand",
  1198.  "Medic Hawthorn",
  1199.  "Cultist Shrine",
  1200.  "Captain \"Lefty\" Lugsail",
  1201.  "Admiral Cantlebree",
  1202.  "Harbinger Vurenn",
  1203.  "Vindicator Yaala",
  1204.  "Zaza",
  1205.  "Arch Druid Lathorius",
  1206.  "Hierophant Cenius",
  1207.  "Hierophant Liandra",
  1208.  "Emissary Mordin",
  1209.  "Lord Torvos",
  1210.  "Khu'nok the Behemoth",
  1211.  "Harbinger Haronem",
  1212.  "Fezzix Geartwist",
  1213.  "Fire Eater",
  1214.  "Killinger the Den Watcher",
  1215.  "Earthen Ring Elder",
  1216.  "Crashed Recon Pilot",
  1217.  "Ambassador Talonga",
  1218.  "Sage Earth and Sky",
  1219.  "Earthen Ring Guide",
  1220.  "Dorain Frosthoof",
  1221.  "Gerald Green",
  1222.  "Plagued Grain",
  1223.  "Iron Eyes",
  1224.  "Jeremiah Hawning",
  1225.  "Librarian Serrah",
  1226.  "Wendy Darren",
  1227.  "Flame Eater",
  1228.  "Master Flame Eater",
  1229.  "Raelorasz",
  1230.  "Mark Hanes",
  1231.  "Mother Tauranook",
  1232.  "Wartook Iceborn",
  1233.  "Ataika",
  1234.  "Thassarian",
  1235.  "Corporal Venn",
  1236.  "Utaik",
  1237.  "Keristrasza",
  1238.  "Elder Muahit",
  1239.  "Elder Ko'nani",
  1240.  "Trapper Mau'i",
  1241.  "Hilda Stoneforge",
  1242.  "Festival Loremaster",
  1243.  "Festival Talespinner",
  1244.  "Human Commoner",
  1245.  "Orc Commoner",
  1246.  "Emissary Brighthoof",
  1247.  "Senior Sergeant Juktok",
  1248.  "Blood Guard Roh'kill",
  1249.  "Fallen Earthen Warrior",
  1250.  "Kurun",
  1251.  "Samir",
  1252.  "Battered Journal",
  1253.  "Torthen Deepdig",
  1254.  "Drakuru",
  1255.  "Image of Drakuru",
  1256.  "Emissary Skyhaven",
  1257.  "Image of Archmage Modera",
  1258.  "Envoy Ripfang",
  1259.  "Image of Archmage Aethas Sunreaver",
  1260.  "Captain Gryan Stoutmantle",
  1261.  "Brugar Stoneshear",
  1262.  "Ethenial Moonshadow",
  1263.  "Overlord Agmar",
  1264.  "Tua'kea",
  1265.  "Surveyor Orlond",
  1266.  "Wrecked Crab Trap",
  1267.  "Sage Paluna",
  1268.  "Emily",
  1269.  "Squire Walter",
  1270.  "Toalu'u the Mystic",
  1271.  "Mack Fearsen",
  1272.  "Elder Mana'loa",
  1273.  "Messenger Torvus",
  1274.  "Kurzel",
  1275.  "Borus Ironbender",
  1276.  "Kilix the Unraveler",
  1277.  "Heart of the Ancients",
  1278.  "Narf",
  1279.  "Xink",
  1280.  "Zivlix",
  1281.  "Captain Gort",
  1282.  "Greatmother Icemist",
  1283.  "Banthok Icemist",
  1284.  "Commander Saia Azuresteel",
  1285.  "Valnok Windrager",
  1286.  "Scout Vor'takh",
  1287.  "Zort",
  1288.  "Ko'char the Unbreakable",
  1289.  "Gavrock",
  1290.  "Harrison Jones",
  1291.  "Harkor",
  1292.  "Wanted!",
  1293.  "Sarendryana",
  1294.  "Rokhan",
  1295.  "Earthwarden Grife",
  1296.  "Mage-Commander Evenstar",
  1297.  "Soar Hawkfury",
  1298.  "Doctor Sintar Malefious",
  1299.  "Lieutenant Dumont",
  1300.  "Koltira Deathweaver",
  1301.  "Kraz",
  1302.  "Hotawa",
  1303.  "Tariolstrasz",
  1304.  "Gan'jo",
  1305.  "Alexstrasza the Life-Binder",
  1306.  "Raegar Breakbrow",
  1307.  "Sasha",
  1308.  "Counselor Talbot",
  1309.  "Duane",
  1310.  "Kontokanis",
  1311.  "Aurastrasza",
  1312.  "Private Casey",
  1313.  "Courier Lanson",
  1314.  "Petrov",
  1315.  "Private Arun",
  1316.  "Ruuna the Blind",
  1317.  "Tormak the Scarred",
  1318.  "Prospector Rokar",
  1319.  "Warden Jodi Moonsong ",
  1320.  "Raider Captain Kronn",
  1321.  "Palena Silvercloud",
  1322.  "High Commander Halford Wyrmbane",
  1323.  "Hidetrader Jun'ik",
  1324.  "Conqueror Krenna",
  1325.  "Mountaineer Kilian",
  1326.  "Tobias Sarkhoff",
  1327.  "Chief Plaguebringer Middleton",
  1328.  "High Executor Wroth",
  1329.  "Apothecary Vicky Levine",
  1330.  "Windseer Grayhorn",
  1331.  "Sergeant Thurkin",
  1332.  "Quartermaster Bartlett",
  1333.  "Master Woodsman Anderhol",
  1334.  "Hansel Bauer",
  1335.  "Hierophant Thayreen",
  1336.  "Woodsman Drake",
  1337.  "Amberseed",
  1338.  "Deathguard Molder",
  1339.  "Spy Mistress Repine",
  1340.  "Gryphon Commander Urik",
  1341.  "Agent Skully",
  1342.  "Synipus",
  1343.  "Sergeant Nazgrim",
  1344.  "Commander Lynore Windstryke",
  1345.  "Serinar",
  1346.  "Nalice",
  1347.  "Pipthwack",
  1348.  "Highlord Leoric Von Zeldig",
  1349.  "Grekk",
  1350.  "Siege Engineer Quarterflash",
  1351.  "Slinkin the Demo-gnome",
  1352.  "Hugh Glass",
  1353.  "Lurz",
  1354.  "Zelig the Visionary",
  1355.  "Commander Bargok",
  1356.  "Orik Trueheart",
  1357.  "Aumana",
  1358.  "Sergeant Hartsman",
  1359.  "Ivan",
  1360.  "Envoy Ducal",
  1361.  "Rheanna",
  1362.  "Greer Orehammer",
  1363.  "Sergei",
  1364.  "Captured Trapper",
  1365.  "Caged Prisoner",
  1366.  "Surveyor Hansen",
  1367.  "Katja",
  1368.  "Cavalier Durkon",
  1369.  "Flesh-bound Tome",
  1370.  "Baron Freeman",
  1371.  "General Khazgar",
  1372.  "Lieutenant Stuart",
  1373.  "Centurion Kaggrum",
  1374.  "Inquisitor Hallard",
  1375.  "Sergeant Downey",
  1376.  "Stone Guard Ragetotem",
  1377.  "Duke August Foehammer",
  1378.  "Ambo Cash",
  1379.  "Lord Afrasastrasz",
  1380.  "Anya",
  1381.  "Squire Percy",
  1382.  "Soulok Stormfury",
  1383.  "Ceristrasz",
  1384.  "Krasus",
  1385.  "Gorgonna",
  1386.  "Grennix Shivwiggle",
  1387.  "Bookie Vel'jen",
  1388.  "General Gorlok",
  1389.  "Gurtor",
  1390.  "Provisioner Lorkran",
  1391.  "Commander Howser",
  1392.  "Vas the Unstable",
  1393.  "Rodney Wells",
  1394.  "Barblefink",
  1395.  "Scout Captain Carter",
  1396.  "Vargastrasz",
  1397.  "Nishera the Garden Keeper",
  1398.  "Lord Itharius",
  1399.  "Lauriel Trueblade",
  1400.  "Golluck Rockfist",
  1401.  "Yord \"Calamity\" Icebeard",
  1402.  "Plunderbeard",
  1403.  "Commander Eligor Dawnbringer",
  1404.  "Legion Commander Tyralion",
  1405.  "Nozzlerust Supply Runner",
  1406.  "Chromie",
  1407.  "Captured Tuskarr Prisoner",
  1408.  "Legion Commander Yorik",
  1409.  "Highlord Bolvar Fordragon",
  1410.  "Ranger Captain Areiel",
  1411.  "Sauranok the Mystic",
  1412.  "Monte Muzzleshot",
  1413.  "Torastrasza",
  1414.  "Commander Kunz",
  1415.  "Captain Brandon",
  1416.  "Commander Falstaav",
  1417.  "Sergeant Stackhammer",
  1418.  "Hexxer Ubungo",
  1419.  "Corporal Maga",
  1420.  "Captain Rupert",
  1421.  "Dr. Rogers",
  1422.  "Don Carlos",
  1423.  "Darkmoon Fortune Teller",
  1424.  "Captain Grondel",
  1425.  "Archmage Pentarus",
  1426.  "Weslex Quickwrench",
  1427.  "Debaar",
  1428.  "Oracle Soo-rahm",
  1429.  "Apprentice Pestlepot",
  1430.  "Alchemist Finklestein",
  1431.  "Tracker Gekgek",
  1432.  "High-Shaman Rakjak",
  1433.  "Goregek the Gorilla Hunter",
  1434.  "Elder Harkek",
  1435.  "Zepik the Gorloc Hunter",
  1436.  "Injured Rainspeaker Oracle",
  1437.  "Tilda Darathan",
  1438.  "Crusader Valus",
  1439.  "Avatar of Freya",
  1440.  "The Etymidian",
  1441.  "Buck Cantwell",
  1442.  "Sergeant Moonshard",
  1443.  "Specialist Cogwheel",
  1444.  "Sub-Lieutenant Jax",
  1445.  "Zim'Abwa",
  1446.  "Longrunner Nanik",
  1447.  "High-Oracle Soo-say",
  1448.  "Lafoo",
  1449.  "Mistcaller Soo-gan",
  1450.  "Moodle",
  1451.  "Artruis's Phylactery",
  1452.  "Eitrigg",
  1453.  "Drostan",
  1454.  "The Lich King",
  1455.  "Instructor Razuvious",
  1456.  "Dorian Drakestalker",
  1457.  "Zootfizzle",
  1458.  "Cultist Corpse",
  1459.  "Captain Arnath",
  1460.  "Witch Doctor Khufu",
  1461.  "Zim'Torga",
  1462.  "Scalper Ahunae",
  1463.  "Chad",
  1464.  "Har'koa",
  1465.  "Stefan Vadu",
  1466.  "Grimbooze Thunderbrew",
  1467.  "Chronicler To'kini",
  1468.  "Element-Tamer Dagoda",
  1469.  "Spirit of Rhunok",
  1470.  "Tamara Wobblesprocket",
  1471.  "Gristlegut",
  1472.  "Zim'Rhuk",
  1473.  "Highlord Darion Mograine",
  1474.  "Overlord Drakuru",
  1475.  "Quetz'lun's Spirit",
  1476.  "Scourge Commander Thalanor",
  1477.  "Prince Valanar",
  1478.  "Pilot Vic",
  1479.  "Orithos the Sky Darkener",
  1480.  "Salanar the Horseman",
  1481.  "Colvin Norrington",
  1482.  "Engineer Helice",
  1483.  "Timeworn Coffer",
  1484.  "Jaloot",
  1485.  "Professor Calvert",
  1486.  "Gothik the Harvester",
  1487.  "Vekgar",
  1488.  "Shaman Jakjek",
  1489.  "Oracle Soo-dow",
  1490.  "Lightningcaller Soo-met",
  1491.  "Prince Keleseth",
  1492.  "Noth the Plaguebringer",
  1493.  "Plague Cauldron",
  1494.  "Baron Rivendare",
  1495.  "Orbaz Bloodbane",
  1496.  "Oracle Soo-nee",
  1497.  "Olrun the Battlecaller",
  1498.  "Knight Commander Plaguefist",
  1499.  "High General Abbendis",
  1500.  "Sergeant Riannah",
  1501.  "Archmage Celindra",
  1502.  "Magistrix Kaelana",
  1503.  "Bloodrose Datura",
  1504.  "Magister Teronus III",
  1505.  "Korg the Cleaver",
  1506.  "Baron Sliver",
  1507.  "Lord-Commander Arete",
  1508.  "Setaal Darkmender",
  1509.  "Uzo Deathcaller",
  1510.  "Jeer Sparksocket",
  1511.  "Ricket",
  1512.  "Gino",
  1513.  "Tore Rumblewrench",
  1514.  "Injured Goblin Miner",
  1515.  "Aurochs Grimbane",
  1516.  "Lok'lira the Crone",
  1517.  "Gretchen Fizzlespark",
  1518.  "Brijana",
  1519.  "Archaeologist Andorin",
  1520.  "Chief Rageclaw",
  1521.  "Elder Shaman Moky",
  1522.  "Rork Sharpchin",
  1523.  "Lagnus",
  1524.  "Glorthal Stiffbeard",
  1525.  "Fjorlin Frostbrow",
  1526.  "Inventor's Library Console",
  1527.  "Yorg Stormheart",
  1528.  "Drom Frostgrip",
  1529.  "Creteus",
  1530.  "The Guardian's Charge",
  1531.  "Brann Bronzebeard",
  1532.  "Olut Alegut",
  1533.  "Orders From Drakuru",
  1534.  "Crusader Lord Lantinga",
  1535.  "Bouldercrag the Rockshaper",
  1536.  "Gretta the Arbiter",
  1537.  "Thorim",
  1538.  "SCRAP-E",
  1539.  "Prototype Console",
  1540.  "Crusader MacKellar",
  1541.  "Boktar Bloodfury",
  1542.  "Astrid Bjornrittar",
  1543.  "Engineer Reed",
  1544.  "Gerk",
  1545.  "Mildred the Cruel",
  1546.  "Khaliisi",
  1547.  "Gymer",
  1548.  "Moteha Windborn ",
  1549.  "Fjorn's Anvil",
  1550.  "Njormeld",
  1551.  "Thyra Kvinnshal",
  1552.  "Duke Lankral",
  1553.  "Iva the Vengeful",
  1554.  "Vaelen the Flayed",
  1555.  "Harpoon Crate",
  1556.  "The Leaper",
  1557.  "Timothy Jones",
  1558.  "King Jokkum",
  1559.  "Velog Icebellow",
  1560.  "Hodir's Horn",
  1561.  "Bruor Ironbane",
  1562.  "Vile",
  1563.  "Frostworg Denmother",
  1564.  "The Bone Witch",
  1565.  "Bloodguard Lorga",
  1566.  "Lorekeeper Randvir",
  1567.  "Hodir's Spear",
  1568.  "Hodir's Helm",
  1569.  "Crusade Commander Entari",
  1570.  "Xarantaur",
  1571.  "Highlord Tirion Fordring",
  1572.  "Chieftain Swiftspear",
  1573.  "Crusader Lord Dalfors",
  1574.  "Father Gustav",
  1575.  "Penumbrius",
  1576.  "Arngrim the Insatiable",
  1577.  "Tracker Val'zij",
  1578.  "Bethod Feigr",
  1579.  "Crusader Bridenbrad",
  1580.  "Siegemaster Fezzik",
  1581.  "Keeper Remulos",
  1582.  "Bridenbrad's Possessions",
  1583.  "Brom Brewbaster",
  1584.  "Rollick MacKreel",
  1585.  "Thomas Kolichio",
  1586.  "Orn Tenderhoof",
  1587.  "Tol'mar",
  1588.  "Chronicler Bah'Kini",
  1589.  "Katherine Lee",
  1590.  "Orton Bennet",
  1591.  "Arille Azuregaze",
  1592.  "Ranid Glowergold",
  1593.  "The Ebon Watcher",
  1594.  "Darkrider Arly",
  1595.  "Awilo Lon'gomba",
  1596.  "Belgaristrasz",
  1597.  "Image of Belgaristrasz",
  1598.  "Crusade Architect Silas",
  1599.  "Brigg Smallshanks",
  1600.  "Crusade Engineer Spitzpatrick",
  1601.  "Crusader Olakin Sainrith",
  1602.  "Vereth the Cunning",
  1603.  "Sorceress Kaylana",
  1604.  "Bowyer Randolph",
  1605.  "Keritose Bloodblade",
  1606.  "Anchorite Tessa",
  1607.  "Rhonin",
  1608.  "Warden Alturas",
  1609.  "Commander Zanneth",
  1610.  "Commander Dardosh",
  1611.  "Tactical Officer Ahbramis",
  1612.  "Tactical Officer Kilrath",
  1613.  "Lieutenant Murp",
  1614.  "Senior Demolitionist Legoso",
  1615.  "Siegesmith Stronghoof",
  1616.  "Hoodoo Master Fu'jin",
  1617.  "Vieron Blazefeather",
  1618.  "Primalist Mulfort",
  1619.  "Geirrvif",
  1620.  "Gjonner the Merciless",
  1621.  "Father Kamaros",
  1622.  "Absalan the Pious",
  1623.  "Warlord Hork Strongbrow",
  1624.  "Sky-Reaver Korm Blackscar",
  1625.  "Marshal Ivalius",
  1626.  "High Captain Justin Bartlett",
  1627.  "Brother Keltan",
  1628.  "Dying Berserker",
  1629.  "Dying Soldier",
  1630.  "Matthias Lehner",
  1631.  "Chief Engineer Copperclaw",
  1632.  "Sergeant Kregga",
  1633.  "Saronite Bomb Stack",
  1634.  "Pulsing Crystal",
  1635.  "Frazzle Geargrinder",
  1636.  "Blast Thunderbomb",
  1637.  "Skybreaker Squad Leader",
  1638.  "Ground Commander Koup",
  1639.  "Chief Engineer Boltwrench",
  1640.  "Kor'kron Squad Leader",
  1641.  "Ground Commander Xutjja",
  1642.  "Wrecked Demolisher",
  1643.  "Darkspeaker R'khem",
  1644.  "Warbringer Davos Rioht",
  1645.  "Knight-Captain Drosche",
  1646.  "Fringe Engineer Tezzla",
  1647.  "Kibli Killohertz",
  1648.  "Captain Kendall",
  1649.  "Corastrasza",
  1650.  "Officer Van Rossem",
  1651.  "Sky-Reaver Klum",
  1652.  "Calder",
  1653.  "Spring Gatherer",
  1654.  "Spring Collector",
  1655.  "Forsaken Commoner",
  1656.  "Noblegarden Vendor",
  1657.  "Noblegarden Merchant",
  1658.  "Sentinel Tysha Moonblade",
  1659.  "Balthule Shadowstrike",
  1660.  "Lieutenant Morra Starbreeze",
  1661.  "Alanndarian Nightsong",
  1662.  "Kerlonian Evershade",
  1663.  "Huntress Sandrya Moonfall",
  1664.  "Dentaria Silverglade",
  1665.  "Sentinel Lendra",
  1666.  "Serendia Oakwhisper",
  1667.  "Wizbang Cranktoggle",
  1668.  "Buzzbox 413",
  1669.  "Ranger Glynda Nal'Shea",
  1670.  "Moon Priestess Tharill",
  1671.  "Foriel Broadleaf",
  1672.  "Elder Brolg",
  1673.  "Buzzbox 723",
  1674.  "Tharnariun Treetender",
  1675.  "Johnathan Staats",
  1676.  "Sentinel Selarin",
  1677.  "Corvine Moonrise",
  1678.  "Yalda",
  1679.  "Ha'wana",
  1680.  "Gorbold Steelhand",
  1681.  "Arya Autumnlight",
  1682.  "Cerellean Whiteclaw",
  1683.  "Volcor",
  1684.  "Keeper Karithus",
  1685.  "Seraphine",
  1686.  "Gren Tornfur",
  1687.  "Malfurion Stormrage",
  1688.  "Elder Brownpaw",
  1689.  "Aroom",
  1690.  "Selenn",
  1691.  "Thessera",
  1692.  "Sir Marcus Barlowe",
  1693.  "Marshal Jacob Alerius",
  1694.  "Sentinel Shyela",
  1695.  "Bathran",
  1696.  "Priestess Alinya",
  1697.  "Shindrell Swiftfire",
  1698.  "Archivum Console",
  1699.  "Archaeologist Hollee",
  1700.  "Elisa Steelhand",
  1701.  "Prospector Doren",
  1702.  "Dinah Halfmoon",
  1703.  "Truun",
  1704.  "Talen",
  1705.  "Gorat",
  1706.  "Evenar Stillwhisper",
  1707.  "Orendil Broadleaf",
  1708.  "Scout Shalyndria",
  1709.  "Gorka",
  1710.  "Moon Priestess Maestra",
  1711.  "Liladris Moonriver",
  1712.  "Crusader Rhydalla",
  1713.  "Pilot Hammerfoot",
  1714.  "Captain Rugelfuss",
  1715.  "Mountaineer Kadrell",
  1716.  "Keeper Heartwise",
  1717.  "Raene Wolfrunner",
  1718.  "Sentinel Avana",
  1719.  "Sentinel Luara",
  1720.  "Magmar Fellhew",
  1721.  "Marek Ironheart",
  1722.  "Magistrate Bluntnose",
  1723.  "Stolen Explorers' League Document",
  1724.  "Torren Squarejaw",
  1725.  "Captain Joseph Holley",
  1726.  "Arcanist Taelis",
  1727.  "Justicar Mariel Trueheart",
  1728.  "Magister Edien Sunhollow",
  1729.  "Avareth Swiftstrike",
  1730.  "Amariel Sunsworn",
  1731.  "Galathia Brightdawn",
  1732.  "Eadric the Pure",
  1733.  "Anchorite Buurq",
  1734.  "Ambrose Boltspark",
  1735.  "Jaelyne Evensong",
  1736.  "Colosos",
  1737.  "Mokra the Skullcrusher",
  1738.  "Zul'tore",
  1739.  "Runok Wildmane",
  1740.  "Deathstalker Visceri",
  1741.  "Eressea Dawnsinger",
  1742.  "Sentinel Luciel Starwhisper",
  1743.  "Lana Stouthammer",
  1744.  "Rollo Sureshot",
  1745.  "Clara Tumblebrew",
  1746.  "Tickin Gearspanner",
  1747.  "Flickin Gearspanner",
  1748.  "Durak",
  1749.  "Saandos",
  1750.  "Ranii",
  1751.  "Illestria Bladesinger",
  1752.  "Airae Starseeker",
  1753.  "Akinos",
  1754.  "Gnarl",
  1755.  "Morah Worgsister",
  1756.  "Shadow Hunter Mezil-kree",
  1757.  "Gahju",
  1758.  "Dern Ragetotem",
  1759.  "Anka Clawhoof",
  1760.  "Sarah Chalke",
  1761.  "Handler Dretch",
  1762.  "Kethiel Sunlance",
  1763.  "Aneera Thuron",
  1764.  "Crok Scourgebane",
  1765.  "Cellian Daybreak",
  1766.  "Luuri",
  1767.  "Zor'be the Bloodletter",
  1768.  "Gaivan Shadewalker",
  1769.  "Illyrie Nightfall",
  1770.  "Locke Okarr",
  1771.  "Krokk",
  1772.  "Prospector Loren",
  1773.  "Marcia Chase",
  1774.  "Disgusting Workbench",
  1775.  "Olisarra the Kind",
  1776.  "Mathas Wildwood",
  1777.  "Squire Artie",
  1778.  "Commander Grimfang",
  1779.  "Sentinel Thenysil",
  1780.  "Mor'vek",
  1781.  "Kulg Gorespatter",
  1782.  "Overseer Gorthak",
  1783.  "Hephaestus Pilgrim",
  1784.  "Guardian Menerin",
  1785.  "Guardian Gurtar",
  1786.  "Vear Darksnout",
  1787.  "Sabina Pilgrim",
  1788.  "Dorak",
  1789.  "Broyk",
  1790.  "Stikwad",
  1791.  "Core",
  1792.  "Kathrena Winterwisp",
  1793.  "Dagrun Ragehammer",
  1794.  "Arctanus",
  1795.  "The Vortex",
  1796.  "Venomhide Hatchling",
  1797.  "Balren of the Claw",
  1798.  "Archaeologist Groff",
  1799.  "Larien",
  1800.  "Onu",
  1801.  "Aros",
  1802.  "Felros",
  1803.  "Warlord Wrathspine",
  1804.  "Prospector Remtravel",
  1805.  "Jr. Archaeologist Ferd",
  1806.  "Huntress Jalin",
  1807.  "Pelturas Whitemoon",
  1808.  "Avrus Illwhisper",
  1809.  "Avrus the Redeemed",
  1810.  "Orphan Matron Aria",
  1811.  "Sentinel Melyria Frostshadow",
  1812.  "Halannia",
  1813.  "Oracle Orphan",
  1814.  "Wolvar Orphan",
  1815.  "Tweedle",
  1816.  "Sentinel Kyra Starsong",
  1817.  "Darkscale Assassin",
  1818.  "Thagg",
  1819.  "Togrik",
  1820.  "Sentinel Velene Starstrike",
  1821.  "Faldreas Goeth'Shael",
  1822.  "Benjari Edune",
  1823.  "Grol'dom Kodo",
  1824.  "Una Wolfclaw",
  1825.  "Flooz",
  1826.  "Rocco Whipshank",
  1827.  "Thork",
  1828.  "Bolyun",
  1829.  "Foreman Jinx",
  1830.  "The Bomb",
  1831.  "Big Baobob",
  1832.  "Krolg",
  1833.  "Ta'jari",
  1834.  "Gorgal Angerscar",
  1835.  "Sashya",
  1836.  "Geargrinder Gizmo",
  1837.  "Sassy Hardwrench",
  1838.  "Bamm Megabomb",
  1839.  "Fizz Lighter",
  1840.  "Sister Goldskimmer",
  1841.  "Slinky Sharpshiv",
  1842.  "Maxx Avalanche",
  1843.  "Evol Fingers",
  1844.  "Warrior-Matic NX-01",
  1845.  "Foreman Dampwick",
  1846.  "Night Elf Commoner",
  1847.  "Gregory Tabor",
  1848.  "Jasper Moore",
  1849.  "Edward Winslow",
  1850.  "Isaac Allerton",
  1851.  "Goblin Commoner",
  1852.  "Miles Standish",
  1853.  "William Mullins",
  1854.  "Tyrande Whisperwind",
  1855.  "Francis Eaton",
  1856.  "Dokin Farplain",
  1857.  "Baron Longshore",
  1858.  "Caitrin Ironkettle",
  1859.  "Tony Two-Tusk",
  1860.  "Ellen Moore",
  1861.  "Mary Allerton",
  1862.  "Roberta Carter",
  1863.  "Mahara Goldwheat",
  1864.  "Ondani Greatmill",
  1865.  "Bountiful Table Hostess",
  1866.  "Bountiful Feast Hostess",
  1867.  "Kala'ma",
  1868.  "Megs Dreadshredder",
  1869.  "Narasi Snowdawn",
  1870.  "Savinia Loresong",
  1871.  "Prince Liam Greymane",
  1872.  "Lieutenant Walden",
  1873.  "Tylos Dawnrunner",
  1874.  "Gwen Armstead",
  1875.  "Crusader Silverdawn",
  1876.  "High Crusader Adelard",
  1877.  "FBoK Bank Teller",
  1878.  "Candy Cane",
  1879.  "Chip Endale",
  1880.  "Trade Prince Gallywix",
  1881.  "Ag'tor Bloodfist",
  1882.  "Claims Adjuster",
  1883.  "Malynea Skyreaver",
  1884.  "Labor Captain Grabbit",
  1885.  "Kalec",
  1886.  "Ergll",
  1887.  "Girana the Blooded",
  1888.  "Linzy Blackbolt",
  1889.  "Lord Darius Crowley",
  1890.  "King Genn Greymane",
  1891.  "Captain Broderick",
  1892.  "Josiah Avery",
  1893.  "Horzak Zignibble",
  1894.  "Furien",
  1895.  "Cerelia",
  1896.  "Sorrem",
  1897.  "Ancient Tablets",
  1898.  "Headquarters Radio",
  1899.  "Weapons Cabinet",
  1900.  "Cup of Elune",
  1901.  "Ancient Vortex Runestone",
  1902.  "Foreman Fisk",
  1903.  "Custer Clubnik",
  1904.  "Lorna Crowley",
  1905.  "Tobias Mistmantle",
  1906.  "Elune's Brazier",
  1907.  "Elune's Handmaiden",
  1908.  "Image of Archmage Xylem",
  1909.  "Teresa Spireleaf",
  1910.  "Dead Orc Scout",
  1911.  "Aggra",
  1912.  "Kilag Gorefang",
  1913.  "Scout Brax",
  1914.  "Gyrochoppa",
  1915.  "Thrall",
  1916.  "Cenarion Embassador Thunk",
  1917.  "Smouldering Stone",
  1918.  "Will Robotronic",
  1919.  "Tharkul Ironskull",
  1920.  "Bizby",
  1921.  "Cenarion Researcher Korrah",
  1922.  "Bombardier Captain Smooks",
  1923.  "Valishj",
  1924.  "Feno Blastnoggin",
  1925.  "Torg Twocrush",
  1926.  "Quarla Whistlebreak",
  1927.  "Sergeant Cleese",
  1928.  "Naga Power Stone",
  1929.  "Loren the Fence",
  1930.  "Vitus Darkwalker",
  1931.  "Huntsman Blake",
  1932.  "Myriam Spellwaker",
  1933.  "Sister Almyra",
  1934.  "Celestine of the Harvest",
  1935.  "Lord Hydronis",
  1936.  "Lord Godfrey",
  1937.  "Jellix Fuselighter",
  1938.  "Joanna",
  1939.  "Karnum Marshweaver",
  1940.  "Thressa Amberglen",
  1941.  "Botanist Ferrah",
  1942.  "Assistant Greely",
  1943.  "Secret Lab Squawkbox",
  1944.  "Garren Darkwind",
  1945.  "Khan Leh'Prah",
  1946.  "Krennan Aranas",
  1947.  "Khan Kammah",
  1948.  "Crate of Mandrake Essence",
  1949.  "Slain Watchman",
  1950.  "Twistex Happytongs",
  1951.  "Khan Shodo",
  1952.  "Kherrah",
  1953.  "Broken Relic",
  1954.  "Mai'Lahii",
  1955.  "Taiga Wisemane",
  1956.  "Maurin Bonesplitter",
  1957.  "Sorata Firespinner",
  1958.  "Nataka Longhorn",
  1959.  "Vahlarriel Demonslayer",
  1960.  "Captain Pentigast",
  1961.  "Corporal Melkins",
  1962.  "Melinda Hammond",
  1963.  "Thargad",
  1964.  "Dumti",
  1965.  "Hobart Grapplehammer",
  1966.  "Officer Jankie",
  1967.  "Spirit of Azuregos",
  1968.  "Azuregos",
  1969.  "Grandma Wahl",
  1970.  "Sebastian Hayward",
  1971.  "Teemo",
  1972.  "Subject Nine",
  1973.  "Andorel Sunsworn",
  1974.  "Upper Scrying Stone",
  1975.  "Lower Scrying Stone",
  1976.  "Haggrum Bloodfist",
  1977.  "Ahmo Thunderhorn",
  1978.  "Caladis Brightspear",
  1979.  "Arcanist Tybalin",
  1980.  "Chief Hawkwind",
  1981.  "Grull Hawkwind",
  1982.  "Adana Thunderhorn",
  1983.  "Chawg",
  1984.  "Queen Mia Greymane",
  1985.  "Private Worcester",
  1986.  "Commander Molotov",
  1987.  "Glix Grindlock",
  1988.  "Xiz \"The Eye\" Salvoblast",
  1989.  "Kroum",
  1990.  "Wrenchmen Recruitment Poster",
  1991.  "Captain Desoto",
  1992.  "Lieutenant Drex",
  1993.  "Sergeant Zelks",
  1994.  "Recruiter Burns",
  1995.  "Erunak Stonespeaker",
  1996.  "Detective Snap Snagglebolt",
  1997.  "Tora Halotrix",
  1998.  "Captain Tork",
  1999.  "Mull Thunderhorn",
  2000.  "Zarlman Two-Moons",
  2001.  "Una Wildmane",
  2002.  "Dyami Windsoar",
  2003.  "Neeru Fireblade",
  2004.  "Jr. Bombardier Hackel",
  2005.  "Christi Stockton",
  2006.  "Lorekeeper's Summoning Stone",
  2007.  "Sergeant Hort",
  2008.  "Ruckus",
  2009.  "Uncle Bedlam",
  2010.  "Magister Hathorel",
  2011.  "Bleenik Fizzlefuse",
  2012.  "Kalecgos",
  2013.  "Joren Ironstock",
  2014.  "Sten Stoutarm",
  2015.  "Grundel Harkin",
  2016.  "Coach Crosscheck",
  2017.  "Apprentice Soren",
  2018.  "Hands Springsprocket",
  2019.  "Milo Geartwinge",
  2020.  "Tharek Blackstone",
  2021.  "Teo Hammerstorm",
  2022.  "Teegli Merrowith",
  2023.  "Gurlorn",
  2024.  "Lady Jaina Proudmoore",
  2025.  "Martin Victus",
  2026.  "Nura Pathfinder",
  2027.  "Tunawa Stillwind",
  2028.  "Onatay",
  2029.  "Dark Ranger Vorel",
  2030.  "Gorkun Ironskull",
  2031.  "Apprentice Nelphi",
  2032.  "Holgom",
  2033.  "Oltarg",
  2034.  "Makaba Flathoof",
  2035.  "Kilrok Gorehammer",
  2036.  "Halduron Brightwing",
  2037.  "Lane Tallgrass",
  2038.  "Naralex",
  2039.  "Tawane",
  2040.  "Kirge Sternhorn",
  2041.  "Runeforge",
  2042.  "Tatternack Steelforge",
  2043.  "Warlord Bloodhilt",
  2044.  "Jorn Skyseer",
  2045.  "Myralion Sunblaze",
  2046.  "Muyoh",
  2047.  "Winnoa Pineforest",
  2048.  "Roka",
  2049.  "Warlord Gar'dul",
  2050.  "Belrysa Starbreeze",
  2051.  "Archmage Lan'dalock",
  2052.  "Kwee Q. Peddlefeet",
  2053.  "Mahka",
  2054.  "Jin'thala",
  2055.  "Nortet",
  2056.  "Calder Gray",
  2057.  "Moraya",
  2058.  "Kijara",
  2059.  "Tegashi",
  2060.  "Vassandra Stormclaw",
  2061.  "Public Relations Agent",
  2062.  "Tomusa",
  2063.  "Gann Stonespire",
  2064.  "Vol'jin",
  2065.  "Crawgol",
  2066.  "Inspector Snip Snagglebolt",
  2067.  "Marion Sutton",
  2068.  "Tauna Skychaser",
  2069.  "Marcus",
  2070.  "Magda Whitewall",
  2071.  "Weezil Slipshadow",
  2072.  "Garl Stormclaw",
  2073.  "Ithis Moonwarden",
  2074.  "Williden Marshal",
  2075.  "Quixxil",
  2076.  "Hol'anyee Marshal",
  2077.  "Gremix",
  2078.  "Un'Goro Examinant",
  2079.  "Nablya",
  2080.  "Nolen Tacker",
  2081.  "Spark Nilminer",
  2082.  "Tara",
  2083.  "Doreen",
  2084.  "Maximillian of Northshire",
  2085.  "Karna Remtravel",
  2086.  "A-Me 01",
  2087.  "J.D. Collie",
  2088.  "Torwa Pathfinder",
  2089.  "Spraggle Frock",
  2090.  "Ringo's Sack",
  2091.  "Ringo",
  2092.  "Shizzle",
  2093.  "Krakle",
  2094.  "Soratha",
  2095.  "Nekali",
  2096.  "Zen'tabra",
  2097.  "Legati",
  2098.  "Ortezza",
  2099.  "Tunari",
  2100.  "Vereesa Windrunner",
  2101.  "Archmage Aethas Sunreaver",
  2102.  "Dark Ranger Loralen",
  2103.  "Junior Inspector",
  2104.  "Junior Detective",
  2105.  "Morakki",
  2106.  "Zen'Aliri",
  2107.  "Brett \"Coins\" McQuid",
  2108.  "Commander Walpole",
  2109.  "Janice Mattingly",
  2110.  "Crate of Foodstuffs",
  2111.  "Research Equipment",
  2112.  "Zeke Bootscuff",
  2113.  "Sherm",
  2114.  "Anchorite Avuun",
  2115.  "Dockmaster Lewis",
  2116.  "Admiral Aubrey",
  2117.  "Izzy",
  2118.  "Narain Soothfancy",
  2119.  "Captain Fisher",
  2120.  "Cannoneer Smythe",
  2121.  "Thomas Paxton",
  2122.  "Paxton's Field Cannon",
  2123.  "Tolliver Houndstooth",
  2124.  "Agatha",
  2125.  "Undertaker Mordo",
  2126.  "Caretaker Caice",
  2127.  "Novice Elreth",
  2128.  "Xavier the Huntsman",
  2129.  "Executor Arren",
  2130.  "Darnell",
  2131.  "Deathguard Simmer",
  2132.  "Sedrick Calston",
  2133.  "Apothecary Johaan",
  2134.  "Captured Scarlet Zealot",
  2135.  "Executor Zygand",
  2136.  "Deathguard Dillinger",
  2137.  "Magistrate Sevren",
  2138.  "Deathguard Linnea",
  2139.  "Gretchen Dedmar",
  2140.  "Junior Apothecary Holland",
  2141.  "Apothecary Jerrod",
  2142.  "Captured Mountaineer",
  2143.  "Apprentice Crispin",
  2144.  "Jeffrey Long",
  2145.  "Goucho",
  2146.  "Mangled Body",
  2147.  "Corporal Teegan",
  2148.  "Coleman Farthing",
  2149.  "High Executor Derrington",
  2150.  "Lieutenant Sanders",
  2151.  "Timothy Cunningham",
  2152.  "Apothecary Dithers",
  2153.  "Sandscraper's Chest",
  2154.  "Examiner Andoren Dawnrise",
  2155.  "Mazoga",
  2156.  "Hannah Bridgewater",
  2157.  "Trenton Lighthammer",
  2158.  "Ambassador Gaines",
  2159.  "Tortunga",
  2160.  "Tora'jin",
  2161.  "Gordo",
  2162.  "Sam Trawley",
  2163.  "General Hawthorne",
  2164.  "Kelsey Steelspark",
  2165.  "Krog",
  2166.  "Dr. Dealwell",
  2167.  "Katrina Turner",
  2168.  "Antediluvean Chest",
  2169.  "Commander Roberts",
  2170.  "Mizzy Pistonhammer",
  2171.  "Logan Talonstrike",
  2172.  "Dorn Redearth",
  2173.  "General Twinbraid",
  2174.  "Deathguard Saltain",
  2175.  "Driz Plunkbow",
  2176.  "Hurlston Stonesthrow",
  2177.  "Marley Twinbraid",
  2178.  "Isabel Jones",
  2179.  "Dakk Blunderblast",
  2180.  "Mine Cart",
  2181.  "Canaga Earthcaller",
  2182.  "Hana'zua",
  2183.  "Zureetha Fargaze",
  2184.  "Foreman Thazz'ril",
  2185.  "Galgar",
  2186.  "Acrypha",
  2187.  "Kaltunk",
  2188.  "Bael'dun Survivor",
  2189.  "Marith Lazuria",
  2190.  "Wounded Bael'dun Officer",
  2191.  "Farseer Gadra",
  2192.  "Bom'bay",
  2193.  "Lar Prowltusk",
  2194.  "Gar'Thok",
  2195.  "Gail Nozzywig",
  2196.  "Advisor Belgrum",
  2197.  "Big Nasty Plunger",
  2198.  "Commander Singleton",
  2199.  "Thonk",
  2200.  "Grandmatron Tekla",
  2201.  "Raggaran",
  2202.  "Nibb Spindlegear",
  2203.  "Horton Gimbleheart",
  2204.  "Misha Tor'kren",
  2205.  "Zen'Taji",
  2206.  "Orgnil Soulscar",
  2207.  "Gor the Enforcer",
  2208.  "Ace",
  2209.  "Platform Control Panel",
  2210.  "Shin Stonepillar",
  2211.  "Estulan",
  2212.  "Silvia",
  2213.  "Orhan Ogreblade",
  2214.  "Konu Runetotem",
  2215.  "Mountaineer Grugelm",
  2216.  "Felora Firewreath",
  2217.  "The Great Sambino",
  2218.  "Earthmender Duarn",
  2219.  "Caretaker Movra",
  2220.  "Toshe Chaosrender",
  2221.  "Condenna the Pitiless",
  2222.  "Jadi Falaryn",
  2223.  "Watcher Dodds",
  2224.  "Oomla Whitehorn",
  2225.  "Vek'nag",
  2226.  "Spiketooth",
  2227.  "Margoz",
  2228.  "Ak'Zeloth",
  2229.  "Kor'kron Loyalist",
  2230.  "Ian Duran",
  2231.  "Takrik Ragehowl",
  2232.  "Elementalist Ortell",
  2233.  "Instructor Mylva",
  2234.  "Nato Raintree",
  2235.  "Alto Stonespire",
  2236.  "Instructor Devoran",
  2237.  "Outhouse Hideout",
  2238.  "Rio Duran",
  2239.  "Twilight Cauldron",
  2240.  "Royce Duskwhisper",
  2241.  "Eye of Twilight",
  2242.  "The Twilight Apocrypha",
  2243.  "Shandris Feathermoon",
  2244.  "Tambre",
  2245.  "Commander Jarod Shadowsong",
  2246.  "Emissary Windsong",
  2247.  "Ysera",
  2248.  "Alysra",
  2249.  "Scout Larandia",
  2250.  "Captain Saynna Stormrunner",
  2251.  "Kristoff Manheim",
  2252.  "Instructor Cargall",
  2253.  "Spirit of Farseer Gadra",
  2254.  "Gombana",
  2255.  "Witch Doctor Uzer'i",
  2256.  "Talo Thornhoof",
  2257.  "Swar'jan",
  2258.  "Chief Spirithorn",
  2259.  "Vestia Moonspear",
  2260.  "Lost Apprentice",
  2261.  "Jawn Highmesa",
  2262.  "Kanati Greycloud",
  2263.  "Captain Taylor",
  2264.  "Felice",
  2265.  "Krueg Skullsplitter",
  2266.  "Hadoken Swiftstrider",
  2267.  "Woodpaw Battle Map",
  2268.  "Sensiria",
  2269.  "Tholo Whitehoof",
  2270.  "Moanah Stormhoof",
  2271.  "Nordu",
  2272.  "Arch Druid Hamuul Runetotem",
  2273.  "Sunken Horde Chest",
  2274.  "Ysondre",
  2275.  "Laina Nightsky",
  2276.  "Mylune",
  2277.  "Sunken Crate",
  2278.  "Adarrah",
  2279.  "Telaron Windflight",
  2280.  "Mountaineer Rharen",
  2281.  "Matoclaw",
  2282.  "Tyrus Blackhorn",
  2283.  "Handler Tessina",
  2284.  "Subjugated Inferno Lord",
  2285.  "Prospector Gunstan",
  2286.  "Adella",
  2287.  "Windspeaker Tamila",
  2288.  "Erina Willowborn",
  2289.  "Pratt McGrubben",
  2290.  "Jangdor Swiftstrider",
  2291.  "Anren Shadowseeker",
  2292.  "Keeper Taldros",
  2293.  "Zorbin Fandazzle",
  2294.  "Half-buried Footlocker",
  2295.  "Handler Jesana",
  2296.  "Homing Robot OOX-22/FE",
  2297.  "Nyse",
  2298.  "Thyssiana",
  2299.  "Caryssia Moonhunter",
  2300.  "Falfindel Waywarder",
  2301.  "Rendow",
  2302.  "Motega Firemane",
  2303.  "Fizzle Brassbolts",
  2304.  "Pozzik",
  2305.  "Rayne Feathersong",
  2306.  "Sandy Mound",
  2307.  "Jinky Twizzlefixxit",
  2308.  "Razzeric",
  2309.  "Tortolla",
  2310.  "Rizzle Brassbolts",
  2311.  "Zamek",
  2312.  "Gus Rustflutter",
  2313.  "Farden Talonshrike",
  2314.  "Submerged Outhouse",
  2315.  "Wavespeaker Valoren",
  2316.  "Divemaster Birmingham",
  2317.  "Engineer Hexascrub",
  2318.  "Cenarius",
  2319.  "Aronus",
  2320.  "Mazoga's Spirit",
  2321.  "Jordan Olafson",
  2322.  "Yargra Blackscar",
  2323.  "Admiral Dvorek",
  2324.  "Levia Dreamwaker",
  2325.  "Enormous Skull",
  2326.  "Drag Master Miglen",
  2327.  "Rugfizzle",
  2328.  "Wizzle Brassbolts",
  2329.  "Legionnaire Nazgrim",
  2330.  "Captain Vilethorn",
  2331.  "Fiasco Sizzlegrin",
  2332.  "Wavespeaker Tulra",
  2333.  "Synge",
  2334.  "Captain Samir",
  2335.  "Professor Xakxak Gyromate",
  2336.  "Gnombus the X-Terminator",
  2337.  "Kalen Trueshot",
  2338.  "Sentinel Heliana",
  2339.  "Fathom-Stalker Azjentus",
  2340.  "Lady Naz'jar",
  2341.  "Fathom-Lord Zin'jatar",
  2342.  "Broken Bottle",
  2343.  "Boog the \"Gear Whisperer\"",
  2344.  "Sage Palerunner",
  2345.  "Empty Pedestal",
  2346.  "Pure Twilight Egg",
  2347.  "Minx",
  2348.  "Budd",
  2349.  "Lord Fallowmere",
  2350.  "Thisalee Crow",
  2351.  "Sira'kess Tide Priestess",
  2352.  "Spirit of Tony Two-Tusk",
  2353.  "Ajamon Ghostcaller",
  2354.  "Huntress Illiona",
  2355.  "Choluna",
  2356.  "Mysterious Winged Spirit",
  2357.  "Quartermaster Glynna",
  2358.  "Alice",
  2359.  "Okrilla",
  2360.  "Master Aitokk",
  2361.  "Rofilian Dane",
  2362.  "Tak'arili",
  2363.  "Bloodmage Lynnore",
  2364.  "Loramus Thalipedes",
  2365.  "Watcher Wazzik",
  2366.  "Bloodmage Drazial",
  2367.  "Rohan Sunveil",
  2368.  "Salt-Flop",
  2369.  "Neptool",
  2370.  "Enohar Thunderbrew",
  2371.  "Quartermaster Lungertz",
  2372.  "Leyan Steelson",
  2373.  "Buttonwillow McKittrick",
  2374.  "Watcher Mahar Ba",
  2375.  "Elijah Dawnflight",
  2376.  "Forba Slabchisel",
  2377.  "Surveyor Thurdan",
  2378.  "Dunlor Marblebeard",
  2379.  "STAY OUT!",
  2380.  "Ol' Irongoat",
  2381.  "Northwatch Captain Kosak",
  2382.  "Skylord Omnuron",
  2383.  "Alithia Fallowmere",
  2384.  "Crazzle Sprysprocket",
  2385.  "Riznek",
  2386.  "Skycaller Vrakthris",
  2387.  "Codex of Shadows",
  2388.  "Force Commander Valen",
  2389.  "Arcanist Valdurian",
  2390.  "Neophyte Starcrest",
  2391.  "Scout Commander Barus",
  2392.  "Kum'isha the Collector",
  2393.  "Captain Stoutfist",
  2394.  "Khan Ablinh",
  2395.  "Khan Blizh",
  2396.  "Steeltoe McGee",
  2397.  "Karl Boran",
  2398.  "Damaged Crate",
  2399.  "Sealed Barrel",
  2400.  "Half-buried Barrel",
  2401.  "Lieutenant Paulson",
  2402.  "Aviana",
  2403.  "Corporal Wocard",
  2404.  "Morthis Whisperwing",
  2405.  "Private Pollard",
  2406.  "First Mate Fitzsimmons",
  2407.  "First Mate Snellig",
  2408.  "Intrepid's Locked Strongbox",
  2409.  "Derina Rumdnul",
  2410.  "Vision of Ysera",
  2411.  "Quentin",
  2412.  "Thalia Amberhide",
  2413.  "Delber Cranktoggle",
  2414.  "Slamp Wobblecog",
  2415.  "Ton Windbow",
  2416.  "Grundig Darkcloud",
  2417.  "Prospector Whelgar",
  2418.  "Ormer Ironbraid",
  2419.  "Merrin Rockweaver",
  2420.  "Fradd Swiftgear",
  2421.  "James Halloran",
  2422.  "Lady Sira'kess",
  2423.  "Executioner Verathress",
  2424.  "Naz'jar Honor Guard",
  2425.  "Crucible of Nazsharin",
  2426.  "Shilah Slabchisel",
  2427.  "Brienna Starglow",
  2428.  "Rau Cliffrunner",
  2429.  "Montarr",
  2430.  "\"Goblin\" Pump Controller",
  2431.  "Scout Mistress Yvonia",
  2432.  "Master Thal'darah",
  2433.  "Niden",
  2434.  "Captain Irontree",
  2435.  "Sergeant Flinthammer",
  2436.  "Naga Tridents",
  2437.  "Rendel Firetongue",
  2438.  "Jorlan Trueblade",
  2439.  "Logram",
  2440.  "Veron Amberstill",
  2441.  "Garunda Mountainpeak",
  2442.  "Elder Sareth'na",
  2443.  "Sentinel Mistress Geleneth",
  2444.  "Commander Thorak",
  2445.  "Hierophant Malyk",
  2446.  "Rethiel the Greenwarden",
  2447.  "Salsbury the \"Help\"",
  2448.  "Houndmaster Jonathan",
  2449.  "Prospector Drugan",
  2450.  "Ferilon Leafborn",
  2451.  "Blood Guard Aldo Rockrain",
  2452.  "Saurboz",
  2453.  "Alliance S.E.A.L. Equipment",
  2454.  "Lieutenant \"Foxy\" Topper",
  2455.  "Elendri Goldenbrow",
  2456.  "Broken Prong",
  2457.  "Bloodguard Toldrek",
  2458.  "Sergeant Gertrude",
  2459.  "Sergeant Bahrum",
  2460.  "Khurgorn Singefeather",
  2461.  "Tiala Whitemane",
  2462.  "Commander Stonebreaker",
  2463.  "Gurrok",
  2464.  "Blastgineer Fuzzwhistle",
  2465.  "Overlord Krom'gar",
  2466.  "Spy-Mistress Anara",
  2467.  "Captain Glovaal",
  2468.  "Chief Blastgineer Bombgutz",
  2469.  "Dark Ranger Alina",
  2470.  "Galen Trollbane",
  2471.  "Wanted Board",
  2472.  "Captain Nials",
  2473.  "Clarissa",
  2474.  "Deathstalker Maudria",
  2475.  "Skuerto",
  2476.  "Apprentice Kryten",
  2477.  "Shards of Myzrael",
  2478.  "Iridescent Shards",
  2479.  "Stone of Inner Binding",
  2480.  "Keystone",
  2481.  "Sergeant Dontrag",
  2482.  "Scout Utvoch",
  2483.  "Blastgineer Igore",
  2484.  "Professor Phizzlethorpe",
  2485.  "Doctor Draxlegauge",
  2486.  "Shakes O'Breen",
  2487.  "General Marcus Jonathan",
  2488.  "Captain Steelgut",
  2489.  "Witch Doctor Jin'Zil",
  2490.  "Darn Talongrip",
  2491.  "Denni'ka",
  2492.  "Subjugator Devo",
  2493.  "Jibbly Rakit",
  2494.  "General Grebo",
  2495.  "Goutgut",
  2496.  "Lolo the Lookout",
  2497.  "Gor'mul",
  2498.  "Captain \"Jewels\" Verne",
  2499.  "Orako",
  2500.  "High Chieftain Cliffwalker",
  2501.  "Orthus Cliffwalker",
  2502.  "Masha Cliffwalker",
  2503.  "Quae",
  2504.  "Moira Thaurissan",
  2505.  "Commander Amaren",
  2506.  "Kinelory",
  2507.  "Huntress Iczelia",
  2508.  "Thargas Anvilmar",
  2509.  "L'ghorek",
  2510.  "Mountaineer Cobbleflint",
  2511.  "Mountaineer Wallbang",
  2512.  "Robby Flay",
  2513.  "Kasim Sharim",
  2514.  "Watcher Grimeo",
  2515.  "Mayor Charlton Connisport",
  2516.  "Cenarion Observer Shayana",
  2517.  "Maur Raincaller",
  2518.  "Longbraid the Grim",
  2519.  "Nevin Twistwrench",
  2520.  "Bipsi Frostflinger",
  2521.  "\"Doc\" Cogspin",
  2522.  "Alamar Grimm",
  2523.  "Drill Sergeant Steamcrank",
  2524.  "Engineer Grindspark",
  2525.  "High Tinker Mekkatorque",
  2526.  "Katoom the Angler",
  2527.  "Lard",
  2528.  "Two-Shoed Lou",
  2529.  "Marogg",
  2530.  "Huntsman Markhor",
  2531.  "Grognard",
  2532.  "Jimb \"Candles\" McHannigan",
  2533.  "Mama Celeste",
  2534.  "Farmer Saldean",
  2535.  "Elder Torntusk",
  2536.  "Mystic Yayo'jin",
  2537.  "Salma Saldean",
  2538.  "Seer Kormo",
  2539.  "Maruut Stonebinder",
  2540.  "Captain's Log",
  2541.  "Stormcaller Mylra",
  2542.  "First Mate Moody",
  2543.  "Forgemaster's Log",
  2544.  "Tock Sprysprocket",
  2545.  "Corporal Fizzwhistle",
  2546.  "Hope Saldean",
  2547.  "Voldreka",
  2548.  "Commander Aggro'gosh",
  2549.  "Malcom Fendelson",
  2550.  "Jessup McCree",
  2551.  "Marshal Gryan Stoutmantle",
  2552.  "Captain Danuvin",
  2553.  "Agent Kearnen",
  2554.  "Captain Alpert",
  2555.  "Foreman Glibbs",
  2556.  "Nimboya",
  2557.  "Bubbling Cauldron",
  2558.  "Kin'weelay",
  2559.  "Kil'karil",
  2560.  "Primal Torntusk",
  2561.  "Eliza Darkgrin",
  2562.  "Earthcaller Torunscar",
  2563.  "Earthmender Norsala",
  2564.  "Captain Tread Sparknozzle",
  2565.  "Far Seer Mok'thardin",
  2566.  "Lashtail Hatchling",
  2567.  "Warlord Krogg",
  2568.  "Diamant the Patient",
  2569.  "Hinkles Fastblast",
  2570.  "Bloodlord Mandokir",
  2571.  "Foebreaker Blueprints",
  2572.  "Jarvi Shadowstep",
  2573.  "Drizzlik",
  2574.  "Captain Grayson",
  2575.  "Priestess Hu'rala",
  2576.  "Captain's Footlocker",
  2577.  "Broken Barrel",
  2578.  "Old Jug",
  2579.  "Locked Chest",
  2580.  "Kotonga",
  2581.  "Captain Krazz",
  2582.  "Fleep",
  2583.  "Watch Captain Parker",
  2584.  "Scout Galiaan",
  2585.  "Quartz Stonetender",
  2586.  "Ciara Deepstone",
  2587.  "Innkeeper Belm",
  2588.  "Darkcleric Marnal",
  2589.  "Apothecary Surlis",
  2590.  "Sentinel Cordressa Briarbow",
  2591.  "Genn Greymane",
  2592.  "Surkhan",
  2593.  "Friz Groundspin",
  2594.  "Admiral Stonefist",
  2595.  "Milly Osworth",
  2596.  "Bartlett the Brave",
  2597.  "Osric Strang",
  2598.  "Dungar Longdrink",
  2599.  "Skeezy Whillzap",
  2600.  "Earthcaller Yevaa",
  2601.  "Initiate Goldmine",
  2602.  "Catherine Leland",
  2603.  "Cromula",
  2604.  "Bort",
  2605.  "Deathstalker Lookout",
  2606.  "Genavie Callow",
  2607.  "Drum Fel",
  2608.  "Flem Gizzix",
  2609.  "Garley Lightrider",
  2610.  "Kor the Immovable",
  2611.  "Berracite",
  2612.  "Vindicator Vedaar",
  2613.  "Valusha",
  2614.  "Stone Guard Towhide",
  2615.  "Vindicator Palanaar",
  2616.  "Architect Nemos",
  2617.  "Kayneth Stillwind",
  2618.  "Sentinel Farsong",
  2619.  "Kerr Ironsight",
  2620.  "Teronis' Corpse",
  2621.  "Illiyana",
  2622.  "Anilia",
  2623.  "Shael'dryn",
  2624.  "Crag Rockcrusher",
  2625.  "Dron Blastbrew",
  2626.  "Mixmaster Jasper",
  2627.  "Chabal",
  2628.  "Doran Steelwing",
  2629.  "Earthbreaker Dolomite",
  2630.  "Gravel Longslab",
  2631.  "Clay Mudaxle",
  2632.  "Magistrate Solomon",
  2633.  "Darcy Parker",
  2634.  "Shawn",
  2635.  "Nida",
  2636.  "Martie Jainrose",
  2637.  "Bailiff Conacher",
  2638.  "Marshal Marris",
  2639.  "Fraggar Thundermantle",
  2640.  "Ettin Control Orb",
  2641.  "Gilda Cloudcaller",
  2642.  "Wildhammer Lookout",
  2643.  "Gryphon Master Talonaxe",
  2644.  "Gregor",
  2645.  "Ornak",
  2646.  "Hero's Call Board",
  2647.  "Razgar",
  2648.  "Zaela",
  2649.  "Messner",
  2650.  "Jorgensen",
  2651.  "Krakauer",
  2652.  "Danforth",
  2653.  "Colonel Troteman",
  2654.  "John J. Keeshan",
  2655.  "Foreman Oslow",
  2656.  "Gorsik the Tumultuous",
  2657.  "Windspeaker Lorvarius",
  2658.  "Ruberick",
  2659.  "Earthmender Deepvein",
  2660.  "\"Sea Wolf\" MacKinley",
  2661.  "\"Shaky\" Phillipe",
  2662.  "Corporal Jeyne",
  2663.  "Fin Fizracket",
  2664.  "Captain Hecklebury Smotts",
  2665.  "Half-Buried Bottle",
  2666.  "Princess Poobah",
  2667.  "First Mate Crazz",
  2668.  "Bloodsail Correspondence",
  2669.  "Baron Revilgaz",
  2670.  "Deeg",
  2671.  "Dizzy One-Eye",
  2672.  "Fleet Master Seahorn",
  2673.  "Commander Althea Ebonlocke",
  2674.  "Chef Grual",
  2675.  "Yancey Grillsen",
  2676.  "Abercrombie",
  2677.  "Captain Keelhaul",
  2678.  "Peak Grindstone",
  2679.  "Pyrium Lodestone",
  2680.  "Garr Salthoof",
  2681.  "\"Pretty Boy\" Duncan",
  2682.  "Brubaker",
  2683.  "Gotura Fourwinds",
  2684.  "Fleet Master Firallon",
  2685.  "Ironpatch",
  2686.  "\"Dead-Eye\" Drederick McGumm",
  2687.  "Captain Stillwater's Charts",
  2688.  "Madame Eva",
  2689.  "Blind Mary",
  2690.  "Tavernkeep Smitts",
  2691.  "Clerk Daltry",
  2692.  "Barrel of Doublerum",
  2693.  "Lord Ello Ebonlocke",
  2694.  "Viktori Prism'Antras",
  2695.  "Captain Garran Vimes",
  2696.  "Calor",
  2697.  "Jonathan Carevin",
  2698.  "Gim'hila",
  2699.  "Calia Hastings",
  2700.  "Apprentice Fess",
  2701.  "Therazane",
  2702.  "Pyrite Stonetender",
  2703.  "Oliver Harris",
  2704.  "Jitters",
  2705.  "Lightforged Arch",
  2706.  "Lightforged Crest",
  2707.  "Sven Yorgen",
  2708.  "Sister Elsington",
  2709.  "Lightforged Rod",
  2710.  "Emerine Junis",
  2711.  "Brother Nimetz",
  2712.  "Lieutenant Doren",
  2713.  "Corporal Sethman",
  2714.  "Corporal Kaleb",
  2715.  "Krazek",
  2716.  "Berrin Burnquill",
  2717.  "Osborn Obnoticus",
  2718.  "Priestess Thaalia",
  2719.  "Sergeant Yohwa",
  2720.  "Nozzlepot",
  2721.  "Flint Oremantle",
  2722.  "Ghaliri",
  2723.  "Kinnel",
  2724.  "Livingston Marshal",
  2725.  "Wulfred Harrys",
  2726.  "Artesh",
  2727.  "Slate Quicksand",
  2728.  "A Weathered Grave",
  2729.  "Sirra Von'Indi",
  2730.  "Watcher Ladimore",
  2731.  "Bronwyn Hewstrike",
  2732.  "Linzi Hewstrike",
  2733.  "Maywiki",
  2734.  "Dask \"The Flask\" Gobfizzle",
  2735.  "Airwyn Bantamflax",
  2736.  "Goris",
  2737.  "Boden the Imposing",
  2738.  "Terrath the Steady",
  2739.  "Rhyanda",
  2740.  "Scout Dorli",
  2741.  "A Dwarven Corpse",
  2742.  "Stone Guard Kurjack",
  2743.  "Vidra Hearthstove",
  2744.  "Seer Galekk",
  2745.  "Bovaal Whitehorn",
  2746.  "Cannary Caskshot",
  2747.  "Gigantic Painite Cluster",
  2748.  "Ebru",
  2749.  "Nalpak",
  2750.  "Ashelan Northwood",
  2751.  "Scout Thaelrid",
  2752.  "Sentinel Aluwyn",
  2753.  "Relwyn Shadestar",
  2754.  "Sentinel-trainee Issara",
  2755.  "Zeya",
  2756.  "Flinn",
  2757.  "Flaming Eradicator",
  2758.  "Auld Stonespire",
  2759.  "Willix the Importer",
  2760.  "Spirit of Agamaggan",
  2761.  "Zaruk",
  2762.  "Ashley Blank",
  2763.  "Jearl Donald",
  2764.  "Lindsay Ravensun",
  2765.  "Shadow Priestess Vandis",
  2766.  "Field Agent Kaartish",
  2767.  "Nathaniel Dumah",
  2768.  "Murd Doc",
  2769.  "B.E Barechus",
  2770.  "Face",
  2771.  "Hann Ibal",
  2772.  "Dark Ranger Velonara",
  2773.  "Argent Officer Garush",
  2774.  "Adrine Towhide",
  2775.  "Selyria Groenveld",
  2776.  "Del Gahrron",
  2777.  "Kore",
  2778.  "Keilnei",
  2779.  "Grand Executor Mortuus",
  2780.  "Aurelon",
  2781.  "Valaatu",
  2782.  "Firmanvaar",
  2783.  "Joseph the Awakened",
  2784.  "Joseph the Crazed",
  2785.  "Supply Sergeant Graves",
  2786.  "Joseph the Insane",
  2787.  "Major Samuelson",
  2788.  "Apothecary Witherbloom",
  2789.  "Dominic",
  2790.  "High Apothecary Shana T'veen",
  2791.  "Anduin Wrynn",
  2792.  "Explorer Mowi",
  2793.  "Examiner Rowe",
  2794.  "Prospector Brewer",
  2795.  "Reliquary Jes'ca Darksun",
  2796.  "Koristrasza",
  2797.  "Kelly Dumah",
  2798.  "Seer Ravenfeather",
  2799.  "Sunwalker Helaku",
  2800.  "Daryl the Youngling",
  2801.  "Belnistrasz",
  2802.  "Belnistrasz's Brazier",
  2803.  "Safety Warden Pipsy",
  2804.  "Rusted Skystrider",
  2805.  "Ando Blastenheimer",
  2806.  "Vyrin Swiftwind",
  2807.  "Fargo Flintlocke",
  2808.  "Deathstalker Commander Belmont",
  2809.  "Abandoned Outhouse",
  2810.  "Farmer Wollerton",
  2811.  "Felsen the Enduring",
  2812.  "Scourge Cauldron",
  2813.  "Admiral Hatchet",
  2814.  "Chief Engineer Bilgewhizzle",
  2815.  "Jack Bauden",
  2816.  "Warlord Torok",
  2817.  "Ashlan Stonesmirk",
  2818.  "Tran'rek",
  2819.  "Apothecary Wormcrud",
  2820.  "Damion Steel",
  2821.  "Lurid",
  2822.  "Pile of Explosives",
  2823.  "Maziel's Journal",
  2824.  "Furgus Warpwood",
  2825.  "\"Ambassador\" Dagg'thol",
  2826.  "Shen'dralar Watcher",
  2827.  "Shen'dralar Ancient",
  2828.  "Treasure of the Shen'dralar",
  2829.  "Knot Thimblejack",
  2830.  "Captain Kromcrush",
  2831.  "Guard Mol'dar",
  2832.  "Druid of the Talon",
  2833.  "Stonemaul Ogre",
  2834.  "Alexi Barov",
  2835.  "Weldon Barov",
  2836.  "Eva Sarkhoff",
  2837.  "Lucien Sarkhoff",
  2838.  "Daria L'Rayne",
  2839.  "Lieutenant Myner",
  2840.  "Commander Ashlam Valorfist",
  2841.  "Lang Loosegrip",
  2842.  "Thurman Grant",
  2843.  "High Priestess MacDonnell",
  2844.  "High Priest Thel'danis",
  2845.  "Broken Weapons Crate",
  2846.  "Argent Officer Pureheart",
  2847.  "Elaborate Disc",
  2848.  "Simon Chandler",
  2849.  "Draz'Zilb",
  2850.  "\"Swamp Eye\" Jarl",
  2851.  "Master Craftsman Wilhelm",
  2852.  "Mordant Grimsby",
  2853.  "Packmaster Stonebruiser",
  2854.  "Durnt Brightfalcon",
  2855.  "Ephram Hardstone",
  2856.  "Farseer Krogar",
  2857.  "Crusade Commander Eligor Dawnbringer",
  2858.  "Lieutenant Aden",
  2859.  "Captain Wymor",
  2860.  "Sergeant Amelyn",
  2861.  "Babs Fizzletorque",
  2862.  "\"Dirty\" Michael Crowe",
  2863.  "Major Mills",
  2864.  "Arias'ta Bladesinger",
  2865.  "Ander Germaine",
  2866.  "Crusade Commander Korfax",
  2867.  "Horde Communication Panel",
  2868.  "Renn McGill",
  2869.  "Sergeant Lukas",
  2870.  "Loose Dirt",
  2871.  "Inspector Tarem",
  2872.  "Black Shield",
  2873.  "Do'gol",
  2874.  "Mosarn",
  2875.  "Suspicious Hoofprint",
  2876.  "Theramore Guard Badge",
  2877.  "Ogron",
  2878.  "Adjutant Tesoran",
  2879.  "Valgar Highforge",
  2880.  "Lord Grayson Shadowbreaker",
  2881.  "Jeen'ra Nightrunner",
  2882.  "Wulf Hansreim",
  2883.  "Erion Shadewhisper",
  2884.  "Osborne the Night Man",
  2885.  "High Priest Rohan",
  2886.  "High Priestess Laurena",
  2887.  "Priestess Alathea",
  2888.  "Farseer Javad",
  2889.  "Farseer Umbrua",
  2890.  "Nittlebur Sparkfizzle",
  2891.  "Maginor Dumas",
  2892.  "Alexander Calder",
  2893.  "Demisette Cloyce",
  2894.  "Sheldras Moontree",
  2895.  "Loganaar",
  2896.  "Chief Surgeon Gashweld",
  2897.  "Feralas Sentinel",
  2898.  "Freewind Brave",
  2899.  "Kaelystia Hatebringer",
  2900.  "Ureda",
  2901.  "Apolos",
  2902.  "Ormak Grimshot",
  2903.  "Zelanis",
  2904.  "Gordul",
  2905.  "Beram Skychaser",
  2906.  "Kardris Dreamseeker",
  2907.  "Alsudar the Bastion",
  2908.  "Grezz Ragefist",
  2909.  "Kaal Soulreaper",
  2910.  "Zevrost",
  2911.  "Sesebi",
  2912.  "Caz Twosprocket",
  2913.  "Balos Jacken",
  2914.  "Champion Bachi",
  2915.  "Master Pyreanor",
  2916.  "Aponi Brightmane",
  2917.  "Sunwalker Atohmo",
  2918.  "The Rattle of Bones",
  2919.  "Forward Commander Onslaught",
  2920.  "Lakota Windsong",
  2921.  "Aelthalyste",
  2922.  "Shadow-Walker Zuru",
  2923.  "Aldrae",
  2924.  "Tyelis",
  2925.  "Apprentice Garion",
  2926.  "Therum Deepforge",
  2927.  "Lieutenant Emry",
  2928.  "Apprentice Morlann",
  2929.  "Frederick Stover",
  2930.  "Captain Rutsak",
  2931.  "Lord Tony Romano",
  2932.  "Lucan Cordell",
  2933.  "Narianna",
  2934.  "Archmage Angela Dosantos",
  2935.  "Saru Steelfury",
  2936.  "Fiona",
  2937.  "Gidwin Goldbraids",
  2938.  "Tarenar Sunstrike",
  2939.  "Lachlan MacGraff",
  2940.  "Mallia",
  2941.  "Argus Highbeacon",
  2942.  "Carlin Redpath",
  2943.  "Pamela Redpath",
  2944.  "Joseph's Chest",
  2945.  "Naraat the Earthspeaker",
  2946.  "Godan",
  2947.  "Brogg",
  2948.  "Gizzix Grimegurgle",
  2949.  "Overlord Mok'Morokk",
  2950.  "Rayne",
  2951.  "Argent Officer Irizarry",
  2952.  "Captain Darill",
  2953.  "Urk Gagbaz",
  2954.  "Seer Liwatha",
  2955.  "Dark Cleric Cecille",
  2956.  "Acride",
  2957.  "Brother Silverhallow",
  2958.  "Vex'tul",
  2959.  "Frederick Calston",
  2960.  "Betina Bigglezink",
  2961.  "Rimblat Earthshatter",
  2962.  "Smokey LaRue",
  2963.  "Leonid Barthalomew the Revered",
  2964.  "Crusader's Flare",
  2965.  "Lord Maxwell Tyrosus",
  2966.  "Master Craftsman Omarion",
  2967.  "Ragged John",
  2968.  "Overseer Oilfist",
  2969.  "Helendis Riverhorn",
  2970.  "Daschla",
  2971.  "Dalar Dawnweaver",
  2972.  "Gamella Cracklefizz",
  2973.  "Deacon Andaal",
  2974.  "Calen",
  2975.  "Cassius the White",
  2976.  "Lady Cozwynn",
  2977.  "Warlord Zaela",
  2978.  "Velastrasza",
  2979.  "Baleflame",
  2980.  "Lirastrasza",
  2981.  "High Warlord Cromush",
  2982.  "Ambermill Dimensional Portal",
  2983.  "Thordun Hammerblow",
  2984.  "Decrepit Skeleton",
  2985.  "General Ammantep",
  2986.  "Prince Nadun",
  2987.  "Kirkian Dawnshield",
  2988.  "Corpseburner Tim",
  2989.  "Crusader Kevin Frost",
  2990.  "Argent Apothecary Judkins",
  2991.  "Augustus the Touched",
  2992.  "Trade Baron Silversnap",
  2993.  "Talaa",
  2994.  "Baron Ashbury",
  2995.  "Lord Walden",
  2996.  "Jalinda Sprig",
  2997.  "Kevin Dawson",
  2998.  "Oralius",
  2999.  "Prospector Seymour",
  3000.  "Mayara Brightwing",
  3001.  "Mountaineer Orfus",
  3002.  "Marshal Maxwell",
  3003.  "Patch",
  3004.  "Thal'trak Proudtusk",
  3005.  "Lexlort",
  3006.  "Galamav the Marksman",
  3007.  "Razal'blade",
  3008.  "Gralok",
  3009.  "Hierophant Theodora Mulvadania",
  3010.  "Fergus Gearchum",
  3011.  "Thunderheart",
  3012.  "Warlord Goretooth",
  3013.  "Brono Goodgroove",
  3014.  "Prophet Hadassi",
  3015.  "Maxwort Uberglint",
  3016.  "Crazy Larry",
  3017.  "Sand-Covered Hieroglyphs",
  3018.  "Tinkee Steamboil",
  3019.  "Rok'tar",
  3020.  "Keegan Firebeard",
  3021.  "Juice Gnugat",
  3022.  "Anchorite Traska",
  3023.  "King Phaoris",
  3024.  "Vizier Tanotep",
  3025.  "High Priest Amet",
  3026.  "High Commander Kamses",
  3027.  "Gaffer Coilspring",
  3028.  "Technician Braggle",
  3029.  "Garona Halforcen",
  3030.  "Keely Dunwald",
  3031.  "Flynn Dunwald",
  3032.  "Donnelly Dunwald",
  3033.  "Eoin Dunwald",
  3034.  "Cayden Dunwald",
  3035.  "Countess Verrall",
  3036.  "Pierre Fishflay",
  3037.  "Carvo Blastbolt",
  3038.  "Lead Prospector Durdin",
  3039.  "Kand Sandseeker",
  3040.  "Auctioneer Chilton",
  3041.  "Olga Runesworn",
  3042.  "Lidia Sunglow",
  3043.  "Aoren Sunglow",
  3044.  "Suja",
  3045.  "Narkrall Rakeclaw",
  3046.  "Baba Bogbrew",
  3047.  "Zaetar's Spirit",
  3048.  "Stone Slab",
  3049.  "Marble Slab",
  3050.  "Theldurin the Lost",
  3051.  "Lucien Tosselwrench",
  3052.  "Martek the Exiled",
  3053.  "Warchief's Command Board",
  3054.  "Tracker Yoro",
  3055.  "Rifle Commander Coe",
  3056.  "Nurse Lillian",
  3057.  "Warden Thelwater",
  3058.  "Twilight Rune of Earth",
  3059.  "High Executor Darthalia",
  3060.  "Harkkan",
  3061.  "Griff",
  3062.  "Low Shaman Blundy",
  3063.  "Fanny Thundermar",
  3064.  "Colin Thundermar",
  3065.  "Sun Prophet Tumet",
  3066.  "A. I. D.A. Terminal",
  3067.  "Gek Nozzlerocket",
  3068.  "Eddie Flofizzle",
  3069.  "Dolph Blastus",
  3070.  "Rhea",
  3071.  "Rheastrasza",
  3072.  "Dr. Hieronymus Blam",
  3073.  "Garyanne Fleezlebop",
  3074.  "The Hammer of Twilight",
  3075.  "Trove of the Watchers",
  3076.  "Joanna Blueheart",
  3077.  "Cailin Longfellow",
  3078.  "Iain Firebeard",
  3079.  "Duglas Mullan",
  3080.  "Keeland Doyle",
  3081.  "Mackay Firebeard",
  3082.  "Edana Mullan",
  3083.  "Brom Forgehammer",
  3084.  "Sigrun Ironhew",
  3085.  "Victoria Dolen",
  3086.  "Eric \"The Swift\"",
  3087.  "Olaf",
  3088.  "Terrance Storm",
  3089.  "Baelog",
  3090.  "Holaaru",
  3091.  "Kagtha",
  3092.  "Miss Mayhem",
  3093.  "Dispatch Commander Ruag",
  3094.  "Aidan Summerwind",
  3095.  "Gorn",
  3096.  "Amakkar",
  3097.  "Jurrix Whitemane",
  3098.  "Gargal",
  3099.  "Titan Mechanism",
  3100.  "Neeka Bloodscar",
  3101.  "Packleader Ivar Bloodfang",
  3102.  "Belloc Brightblade",
  3103.  "Rhea's Final Note",
  3104.  "Stonefather Oremantle",
  3105.  "Commander Schnottz",
  3106.  "Camp Coordinator Brack",
  3107.  "Lieutenant Farnsworth",
  3108.  "Lunk",
  3109.  "Prisanne Dustcropper",
  3110.  "Burrian Coalpart",
  3111.  "Jack Rockleg",
  3112.  "Sergeant Gray",
  3113.  "Hansel Heavyhands",
  3114.  "Taskmaster Scrange",
  3115.  "Lookout Captain Lolo Longstriker",
  3116.  "Master Smith Burninate",
  3117.  "Zamael Lunthistle",
  3118.  "Mountain-Lord Rendan",
  3119.  "Totem of Ruumbo",
  3120.  "Mack",
  3121.  "Grazle",
  3122.  "Tenell Leafrunner",
  3123.  "Arcanist Delaris",
  3124.  "Mazzer Stripscrew",
  3125.  "Brivelthwerp",
  3126.  "Agnes Flimshale",
  3127.  "Griznak",
  3128.  "Impsy",
  3129.  "Evonice Sootsmoker",
  3130.  "Commander Marcus Johnson",
  3131.  "Adventure Board",
  3132.  "Morgan",
  3133.  "High Executioner Nuzrak",
  3134.  "Pao'ka Swiftmountain",
  3135.  "Eridan Bluewind",
  3136.  "Highbank Lieutenant",
  3137.  "Captain Keyton",
  3138.  "Apothecary Underhill",
  3139.  "Spider-Handler Sarus",
  3140.  "Greta Mosshoof",
  3141.  "Commander Stevens",
  3142.  "Jessir Moonbow",
  3143.  "Sergeant Parker",
  3144.  "Farlus Wildheart",
  3145.  "Sun Priest Asaris",
  3146.  "Magatha Grimtotem",
  3147.  "Rotgrum",
  3148.  "Taronn Redfeather",
  3149.  "Buunu",
  3150.  "Dumass",
  3151.  "2nd Lieutenant Wansworth",
  3152.  "Warden Stillwater",
  3153.  "Mouton Flamestar",
  3154.  "Gorzeeki Wildeyes",
  3155.  "Stebben Oreknuckle",
  3156.  "Marshal Fallows",
  3157.  "Shovel",
  3158.  "Altsoba Ragetotem",
  3159.  "Prolific Writer",
  3160.  "Salhet",
  3161.  "Flesh-Shaper Arnauld",
  3162.  "Sergeant Mehat",
  3163.  "Thelaron Direneedle",
  3164.  "Johnny Awesome",
  3165.  "Kelnir Leafsong",
  3166.  "Master Apothecary Lydon",
  3167.  "Nivvet Channelock",
  3168.  "Huntress Selura",
  3169.  "Feronas Sindweller",
  3170.  "Seedling Protector",
  3171.  "Sapling Protector",
  3172.  "Flourishing Protector",
  3173.  "Isural Forestsworn",
  3174.  "Ella Forgehammer",
  3175.  "Bahrum Forgehammer",
  3176.  "Quartermaster Kaoshin",
  3177.  "Nomarch Teneth",
  3178.  "Serge Hinott",
  3179.  "General Thorg'izog",
  3180.  "Sullah",
  3181.  "Sark Ragetotem",
  3182.  "Inethven",
  3183.  "Champion Cyssa Dawnrose",
  3184.  "Tender Puregrove",
  3185.  "Malakai Cross",
  3186.  "Dragon-Lord Neeralak",
  3187.  "High Warlock Xi'lun",
  3188.  "Crate of Left Over Supplies",
  3189.  "Helcular",
  3190.  "Darla Drilldozer",
  3191.  "Foreman Pikwik",
  3192.  "Master Control Pump",
  3193.  "Alton Redding",
  3194.  "Nafien",
  3195.  "Elessa Starbreeze",
  3196.  "Kingslayer Orkus",
  3197.  "Hurak Wildhorn",
  3198.  "Ferli",
  3199.  "Drizle",
  3200.  "Fez Hobnob",
  3201.  "James Hallow",
  3202.  "Denmother Ulrica",
  3203.  "Lyros Swiftwind",
  3204.  "Russell Brower",
  3205.  "Ariok",
  3206.  "Thelaron Malaguja",
  3207.  "Kibler",
  3208.  "Donova Snowden",
  3209.  "Winterfall Cauldron",
  3210.  "Kelek Skykeeper",
  3211.  "Kaldorei Spirit",
  3212.  "Keeper Bel'varil",
  3213.  "Deathguard Samsa",
  3214.  "Deathguard Humbert",
  3215.  "Derak Nightfall",
  3216.  "Advisor Duskingdawn",
  3217.  "Quel'dorei Spirit",
  3218.  "Sin'dorei Spirit",
  3219.  "Salfa",
  3220.  "Witch Doctor Mau'ari",
  3221.  "Brett the Bomber",
  3222.  "Flashbang Rothman",
  3223.  "Ticker",
  3224.  "Lieutenant Fawkes",
  3225.  "Lilith",
  3226.  "Lilith the Lithe",
  3227.  "Deez Rocksnitch",
  3228.  "Burndl",
  3229.  "Tanrir",
  3230.  "Brazie the Botanist",
  3231.  "Krusk",
  3232.  "Nils Beerot",
  3233.  "Seril Scourgebane",
  3234.  "Umi Rumplesnicker",
  3235.  "Echo Three",
  3236.  "Captain Jekyll",
  3237.  "Captain Ironhill's Ghost",
  3238.  "Francis Morcott",
  3239.  "Jeb Guthrie",
  3240.  "Jez Goodgrub",
  3241.  "Grundy MacGraff",
  3242.  "Commander Zanoth",
  3243.  "Private Garnoth",
  3244.  "Drillmaster Razgoth",
  3245.  "Staff Sergeant Lazgar",
  3246.  "Wynd Nightchaser",
  3247.  "Rinno Curtainfire",
  3248.  "3rd Officer Kronkar",
  3249.  "Commander Larmash",
  3250.  "Captain Prug",
  3251.  "Private Sarlosk",
  3252.  "Remma Curtainfire",
  3253.  "Marcy Curtainfire",
  3254.  "Sana Curtainfire",
  3255.  "Tenaron Stormgrip",
  3256.  "Finkle Einhorn",
  3257.  "Weathered Nomad",
  3258.  "War-Mage Erallier",
  3259.  "Arcanist Arman",
  3260.  "Lord Raymond George",
  3261.  "Itesh",
  3262.  "Sergeant Willem",
  3263.  "Captain Hadan",
  3264.  "Brother Paxton",
  3265.  "Earthwarden Yrsa",
  3266.  "Jadrag the Slicer",
  3267.  "Haleh",
  3268.  "Nymn",
  3269.  "Farseer Tooranu",
  3270.  "Innkeeper Vizzie",
  3271.  "Craw MacGraw",
  3272.  "Okril'lon Mage",
  3273.  "Nethergarde Mage",
  3274.  "Snevik the Blade",
  3275.  "Malkar",
  3276.  "Grot Deathblow",
  3277.  "Major Marsden",
  3278.  "Colonel Karzag",
  3279.  "Hyjal Flame Guardian",
  3280.  "Earthen Ring Bonfire",
  3281.  "Vashj'ir Flame Guardian",
  3282.  "Deepholm Flame Guardian",
  3283.  "Brogor",
  3284.  "Bwemba",
  3285.  "Nagala Whipshank",
  3286.  "Balgor Whipshank",
  3287.  "Grent Direhammer",
  3288.  "Captain Soren Moonfall",
  3289.  "Ziradormi",
  3290.  "Anachronos",
  3291.  "Coridormi",
  3292.  "James Stillair",
  3293.  "General Taldris Moonfall",
  3294.  "Colin Swifthammer",
  3295.  "Overseer Blingbang",
  3296.  "Treasure Chest",
  3297.  "Commander Sharp",
  3298.  "Deldren Ravenelm",
  3299.  "Bloodslayer T'ara",
  3300.  "Marin Bladewing",
  3301.  "Tarecgosa",
  3302.  "Dorda'en Nightweaver",
  3303.  "Thysta",
  3304.  "Branch of Nordrassil",
  3305.  "Bloodslayer Zala",
  3306.  "Briney Boltcutter",
  3307.  "Shalis Darkhunter",
  3308.  "Dried Acorn",
  3309.  "Avrilla",
  3310.  "Zombie Survivor",
  3311.  "Ayla Shadowstorm",
  3312.  "Damek Bloombeard",
  3313.  "Varlan Highbough",
  3314.  "Elderlimb",
  3315.  "Arthorn Windsong",
  3316.  "Rabine Saturna",
  3317.  "Alegorn",
  3318.  "Eunice Burch",
  3319.  "Armand Cromwell",
  3320.  "Astaia",
  3321.  "Cyclonas",
  3322.  "Hydrius",
  3323.  "Kah Mistrunner",
  3324.  "Aska Mistrunner",
  3325.  "Jaga",
  3326.  "Vin",
  3327.  "Angus Stern",
  3328.  "Galen Goodward",
  3329.  "Galen's Strongbox",
  3330.  "Keldran",
  3331.  "Emperor Shaohao",
  3332.  "Lin Tenderpaw",
  3333.  "Pei-Zhi",
  3334.  "Lorewalker Cho",
  3335.  "Wise Mari\"Waterspeaker\"",
  3336.  "Elder Sage Rain-Zhu",
  3337.  "Admiral Taylor",
  3338.  "Groundskeeper Wu",
  3339.  "High Elder Cloudfall",
  3340.  "General Nazgrim",
  3341.  "Master Stone Fist",
  3342.  "Instructor Myang",
  3343.  "Shademaster Kiryn",
  3344.  "Shattered Destroyer",
  3345.  "Toya",
  3346.  "Old Man Misteye",
  3347.  "Shao the Defiant",
  3348.  "Lina Whitepaw",
  3349.  "Ren Whitepaw",
  3350. }


Lua Code:
  1. Nx.QuestCategory={
  2.  "Druid",
  3.  "Shaman",
  4.  "Children's Week",
  5.  "Special",
  6.  "Cooking",
  7.  "Herbalism",
  8.  "Paladin",
  9.  "Warlock",
  10.  "Warrior",
  11.  "Engineering",
  12.  "Blacksmithing",
  13.  "Fishing",
  14.  "Alchemy",
  15.  "Leatherworking",
  16.  "Seasonal",
  17.  "Rogue",
  18.  "Mage",
  19.  "Treasure Map",
  20.  "Hunter",
  21.  "Priest",
  22.  "Tailoring",
  23.  "First Aid",
  24.  "Legendary",
  25.  "Darkmoon Faire",
  26.  "REUSE - old wailing caverns",
  27.  "Battlegrounds",
  28.  "Epic",
  29.  "Ahn'Qiraj War",
  30.  "Lunar Festival",
  31.  "Reputation",
  32.  "Invasion",
  33.  "Midsummer",
  34.  "Brewfest",
  35.  "Inscription",
  36.  "Death Knight",
  37.  "Jewelcrafting",
  38.  "Noblegarden",
  39.  "Tournament",
  40.  "Day of the Dead",
  41.  "Pilgrim's Bounty",
  42.  "Love is in the Air",
  43.  "Cataclysm",
  44.  "Archaeology",
  45.  "Northern Stranglethorn",
  46.  "Firelands Invasion",
  47.  "Uncategorized",
  48.  "Pandaria",
  49. }
 
 

WoWInterface » Featured Projects » Carbonite » Carbonite Archive » Questing

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off