56

His Dad [09-28-18 - 03:17]
56

Signed-off-by: His Dad <John@hisdad.org>
Filename
Doc/Changelog.txt
HistOffline.lua
HistOfflineBeta.lua
data/de/de.lua
data/en/en.lua
data/fr/fr.lua
data/ru/ru-data.lua
data/ru/ru.lua
data/utility.lua
diff --git a/Doc/Changelog.txt b/Doc/Changelog.txt
index 90669ab..ea7d563 100644
--- a/Doc/Changelog.txt
+++ b/Doc/Changelog.txt
@@ -1,3 +1,8 @@
+
+2018-09-28 version 55
+	Backported WorldBoss and SkillQuest code from Beta.
+	Please report bugs
+
 2018-09-17 version 54
 	fix for DE and FR skillquests, Imperial City

diff --git a/HistOffline.lua b/HistOffline.lua
index f80a391..e867286 100644
--- a/HistOffline.lua
+++ b/HistOffline.lua
@@ -5,18 +5,18 @@

 -- Configuration ==========
 --local dateformat = "%Y-%m-%d, %H:%M"
-local dateformat_log = "%Y-%m-%d, %H:%M:%S"
-local FG_Colour_Not_Complete = "#FFB67D"
-local FG_Colour_Complete = "#000000"
-local BG_Colour_Not_Complete = "#FFB67D"
-local BG_Colour_Complete = "#A4FF5A"
-local Colour_Heading_Complete = "#58FA58"
+dateformat_log = "%Y-%m-%d, %H:%M:%S"
+FG_Colour_Not_Complete = "#FFB67D"
+FG_Colour_Complete = "#000000"
+BG_Colour_Not_Complete = "#FFB67D"
+BG_Colour_Complete = "#A4FF5A"
+Colour_Heading_Complete = "#58FA58"
 local dname, key, count, ccount, colour, bgcolour

---force_lang = "fr"  --	or "de" or "fr"  for debugging
+--force_lang = "de"  --	or "de" or "fr"  for debugging

 -- ========================
-version= "54"
+version= "55"
 require( "iuplua" )
 require( "iupluacontrols" )
 iup.SetGlobal("UTF8MODE","YES")
@@ -41,9 +41,9 @@ dofile "./data/DLC.lua"			--Achievement to Grid lookup, language independent
 dofile "./data/Group1.lua"		-- Grp Mode 1 data, N, V, VH
 dofile "./data/Group2.lua"		-- Grp Mode 2 data, N, V, VH
 dofile "./data/Public.lua"
-dofile "./data/Quest.lua"
+dofile "./data/Quest2.lua"
 dofile "./data/Veteran.lua"		-- Auxiliary Achievements for Vet Dungeons
-dofile "./data/WB.lua"
+dofile "./data/WB2.lua"
 dofile "./data/Trials.lua"
 dofile "./data/Special.lua"		-- Record of non standard Achievement ID's we need to keep.
 dofile "./data/utility.lua"		-- utility functions
@@ -87,38 +87,6 @@ end



-
---SQ_Dat loaded  from Quest.lua
-SQ_Info= {} -- keyed by "LC" string as the  ZONE Identifier
-for id,_ in pairs (SQ_dat) do  -- Load all Quest Data by Achievement ID
-		local L = SQ_dat[id].L
-		local C = SQ_dat[id].C
-		local key = tostring(L) .. tostring(C)	-- make name key
-
-		if SQ_Info[key] == nil then
-			SQ_Info[key] = {}
-			SQ_Info[key].ids = {}	--Array of Achievement ID's
-		end
-		table.insert(SQ_Info[key].ids,id)
-end
-
---WB_Dat loaded  from WB.lua
-WB_Info= {} -- keyed by "LC" string as the  ZONE Identifier
-for id,_ in pairs (WB_dat) do  -- Load all WB Data by Achievement ID
-		local L = WB_dat[id].L
-		local C = WB_dat[id].C
-		local key = tostring(L) .. tostring(C)	-- make name key
-
-		if WB_Info[key] == nil then
-			WB_Info[key] = {}
-			WB_Info[key].ids = {}	--Array of Achievement ID's
-		end
-		table.insert(WB_Info[key].ids,id)
-end
-
-
-
-
 accounts = {}
 accounts_list = {}		-- String list for selection dialog
 playerNames = {}		-- Get name from ID.
@@ -215,7 +183,7 @@ for acc,_ in pairs(History_SV["Default"]) do
 		end

 		-- a quick link to my Achievements
-		me.Ach = thischar.Ach
+		me.ach = thischar.ach
 	end

 	table.sort(accounts[acc].playerIDs,function(a,b)  return (playerNames[a] < playerNames[b]) end)
@@ -746,227 +714,19 @@ end
 			end
 		Line= Line +1
 		end
--- Create WorldBoss Achievements Box==========================
-		me.WB_box= iup.matrix {numcol=4, numcol_visible=4,  numlin=5, widthdef=110}
-
-		for i=1, 4 do  -- Load headings, not Trials
-			me.WB_box:setcell(0,i, Area_names[i].long)
-		end
-		me.WB_box:setcell(0,0, L.Zone)
-		me.WB_box:setcell(1,0, "1")
-		me.WB_box:setcell(2,0, "2")
-		me.WB_box:setcell(3,0, "3")
-		me.WB_box:setcell(4,0, "4")
-		me.WB_box:setcell(5,0, "5")
-		iup.SetAttribute(me.WB_box, "READONLY", "YES")
-		iup.SetAttribute(me.WB_box, "ALIGNMENT0", "ACENTER")
-
-
-		-- Need to keep track of multiple achievements for WB in Zones. Index them by zone LineColumn.
-		WB_Area={}
-    local dname, key, count, ccount
--- Scan over all Slots, see what we have
-		for C=1, 4 do
-			ccount = 0		-- per column
-			for L = 1, 5 do
-				key = tostring(L) .. tostring(C)	-- make name key
-				dname = Locations[key]				-- Zone Locations
-				if dname == nil then
-					break	-- only 1 in Coldharbour,1 morrowind, not worry about empty slots
-				end
-
-				count = 0
-				if WB_Info[key] == nil then
-					break	-- Some Locations not necessarily have WB
-				end
-				for _, id in ipairs (WB_Info[key].ids) do	-- get the WB of the zone
-
-					if  thischar.ach[id] ~= nil then	-- Have we got it?
-						count =count +1
-					end
-				end
-				ccount = ccount + count		-- Track the faction (Column)
-				me.WB_box:setcell(L,C,dname .. " (" .. tostring(count) .. ")")
-
-				colour = "FGCOLOR" .. L .. ":" .. C
-				bgcolour = "BGCOLOR" .. L .. ":" .. C
-				if count == #WB_Info[key].ids then		-- Got them all??
-					iup.SetAttribute(me.WB_box, colour   , FG_Colour_Complete)  -- Yup
-					iup.SetAttribute(me.WB_box, bgcolour , BG_Colour_Complete)
-				end
-			end   -- L

-			--Set Column Heading Colours
-			if ccount >= 15 then
-				iup.SetAttribute(me.WB_box, "BGCOLOR0:" .. tostring(C), Colour_Heading_Complete)
-			end
-		end		-- C
----
--- Create WorldBoss Achievements Detail Boxes=======================
-
-		me.WB_Detail_box = {}
-		me.WB_Detail_Zbox = iup.zbox{}
-
-
-		for key, dat  in pairs(WB_Info) do	-- for each zone
-			me.WB_Detail_box[key]= iup.matrix {numcol=2, numcol_visible=2,  numlin=#dat.ids}
-
-			me.WB_Detail_box[key]:setcell(0,0, L.Ach_ID)
-			me.WB_Detail_box[key]:setcell(0,1, L.Name)
-			me.WB_Detail_box[key]:setcell(0,2, L.Detail)
-			iup.SetAttribute(me.WB_Detail_box[key], "READONLY", "YES")
-			iup.SetAttribute(me.WB_Detail_box[key], "ALIGNMENT0", "ACENTER")
-			iup.SetAttribute(me.WB_Detail_box[key], "ALIGNMENTLIN0", "ALEFT")
-			iup.SetAttribute(me.WB_Detail_box[key], "ALIGNMENT1", "ALEFT")
-			iup.SetAttribute(me.WB_Detail_box[key], "ALIGNMENT2", "ALEFT")
-			iup.SetAttribute(me.WB_Detail_box[key],"WIDTH0", "30")
-			iup.SetAttribute(me.WB_Detail_box[key],"WIDTH1", "150")
-			iup.SetAttribute(me.WB_Detail_box[key],"WIDTH2", "300")
-			for line, id in ipairs (dat.ids) do	-- get the Ach of zone
-				me.WB_Detail_box[key]:setcell(line,0, tostring(id))
-
-				if Ach_Detail[id] == nil then
-					name = "UNKN"
-					Desc = ""
-				else
-					name = Ach_Detail[id].name
-					Desc = Ach_Detail[id].description
-				end
-				me.WB_Detail_box[key]:setcell(line,1, name)
-				me.WB_Detail_box[key]:setcell(line,2, Desc)
-
-				-- Set Detail Colours on achievement
-				if thischar.ach[id] == nil  then
-					iup.SetAttribute(me.WB_Detail_box[key],"FGCOLOR" .. tostring(line) .. ":*", FG_Colour_Not_Complete)	-- Nope
-				else
-					iup.SetAttribute(me.WB_Detail_box[key],"BGCOLOR" .. tostring(line) .. ":*", BG_Colour_Complete)		-- Yes
-				end
-			end
-			iup.Append(me.WB_Detail_Zbox, me.WB_Detail_box[key])
-		end
-
-
-		function me.WB_box:enteritem_cb(L,C)
-			me.WB_Detail_Zbox.value = me.WB_Detail_box[tostring(L) .. tostring(C)]
-		end
+-- Create WorldBoss Achievements Box==========================

+		me.WB_box= Location_Box()
+		Populate_Dat(me.WB_box, WB_dat,me.ach)


 -- Create SkillQuest Achievements Box==========================

-		me.SQ_box= iup.matrix {numcol=5, numcol_visible=5,  numlin=5, widthdef=110}
-		for i=1, 4 do  -- Load headings
-			me.SQ_box:setcell(0,i, Area_names[i].long)
-		end
-		me.SQ_box:setcell(0,5, Area_names[4].long)	--	Common
-		me.SQ_box:setcell(0,0, L.Zone)
-		me.SQ_box:setcell(1,0, "1")
-		me.SQ_box:setcell(2,0, "2")
-		me.SQ_box:setcell(3,0, "3")
-		me.SQ_box:setcell(4,0, "4")
-		me.SQ_box:setcell(5,0, "5")
-		iup.SetAttribute(me.SQ_box, "READONLY", "YES")
-		iup.SetAttribute(me.SQ_box, "ALIGNMENT0", "ACENTER")
-
-		iup.SetAttribute(me.SQ_box,  "FGCOLOR*:1", FG_Colour_Not_Complete)
-		iup.SetAttribute(me.SQ_box,  "FGCOLOR*:2", FG_Colour_Not_Complete)
-		iup.SetAttribute(me.SQ_box,  "FGCOLOR*:3", FG_Colour_Not_Complete)
-		iup.SetAttribute(me.SQ_box,  "FGCOLOR*:4", FG_Colour_Not_Complete)
-		iup.SetAttribute(me.SQ_box,  "FGCOLOR*:5", FG_Colour_Not_Complete)
-
-		-- Need to keep track of multiple achievements for SQ in Zones. Index them by zone LineColumn.
-
-		for C=1, 5 do
-			ccount = 0		-- per column
-			for L = 1, 5 do
-				key = tostring(L) .. tostring(C)	-- make name key
-				dname = Locations[key]				-- Zone Locations
-				if dname == nil then
-					break	-- only 1 in Coldharbour,1 morrowind not worry about empty slots
-				end
-
-				count = 0
-				if SQ_Info[key] == nil then
-					break	-- Some Locations not necessarily have Skill Quests
-				end
-				for _, id in ipairs (SQ_Info[key].ids) do	-- get the quests of the zone
+		me.SQ_box= Location_Box()
+		Populate_Dat(me.SQ_box, SQ_dat,me.ach)

-					if  thischar.ach[id] ~= nil then	-- Have we got it?
-						count =count +1
-					end
-				end
-				ccount = ccount + count		-- Track the faction (Column)
-				me.SQ_box:setcell(L,C,dname .. " (" .. tostring(count) .. ")")
-
-				colour = "FGCOLOR" .. L .. ":" .. C
-				bgcolour = "BGCOLOR" .. L .. ":" .. C
-				if count == #SQ_Info[key].ids then		-- Got them all??
-					iup.SetAttribute(me.SQ_box, colour   , FG_Colour_Complete)  -- Yup
-					iup.SetAttribute(me.SQ_box, bgcolour , BG_Colour_Complete)
-				end
-			end   -- L

-			--Set Column Heading Colours
-			if ccount >= 15 then
-				iup.SetAttribute(me.SQ_box, "BGCOLOR0:" .. tostring(C), Colour_Heading_Complete)
-			end
-		end		-- C
----
--- Create SkillQuest Achievements Detail Boxes=======================
-
-		me.SQ_Detail_box = {}
-		me.SQ_Detail_Zbox = iup.zbox{}
-
-		local  link
-		for key, dat in pairs(SQ_Info) do	-- for each zone
-			me.SQ_Detail_box[key]= iup.matrix {numcol=2, numcol_visible=2,  numlin=#dat.ids}
-
-			me.SQ_Detail_box[key]:setcell(0,0, L.Ach_ID)
-			me.SQ_Detail_box[key]:setcell(0,1, L.Name)
-			me.SQ_Detail_box[key]:setcell(0,2, L.Link)
-			iup.SetAttribute(me.SQ_Detail_box[key], "READONLY", "YES")
-			iup.SetAttribute(me.SQ_Detail_box[key], "ALIGNMENT0", "ACENTER")
-			iup.SetAttribute(me.SQ_Detail_box[key], "ALIGNMENTLIN0", "ALEFT")
-			iup.SetAttribute(me.SQ_Detail_box[key], "ALIGNMENT1", "ALEFT")
-			iup.SetAttribute(me.SQ_Detail_box[key], "ALIGNMENT2", "ALEFT")
-			iup.SetAttribute(me.SQ_Detail_box[key],"WIDTH0", "30")
-			iup.SetAttribute(me.SQ_Detail_box[key],"WIDTH1", "150")
-			iup.SetAttribute(me.SQ_Detail_box[key],"WIDTH2", "250")
-			for line, id in ipairs (dat.ids) do	-- get the quests of the zone
-				me.SQ_Detail_box[key]:setcell(line,0, tostring(id))
-
-				if Ach_Detail[id] == nil then
-					name = "UNKN"
-				else
-					name = Ach_Detail[id].name
-				end
-				link = SQ_dat[id].link1
-				me.SQ_Detail_box[key]:setcell(line,1, name)
-				me.SQ_Detail_box[key]:setcell(line,2, link)
-				-- Set Detail Colours on achievement
-				if thischar.ach[id] == nil  then
-					iup.SetAttribute(me.SQ_Detail_box[key],"FGCOLOR" .. tostring(line) .. ":*", FG_Colour_Not_Complete)	-- Nope
-				else
-					iup.SetAttribute(me.SQ_Detail_box[key],"BGCOLOR" .. tostring(line) .. ":*", BG_Colour_Complete)		-- Yes
-				end
-
-			iup.Append(me.SQ_Detail_Zbox, me.SQ_Detail_box[key])
-			end
-		-- Click on Link,
-		local thisSQDetail = me.SQ_Detail_box[key]	-- The function def below doesn't like the [key]
-		function thisSQDetail:click_cb(L,C)
-				if C == 2 then
-					iup.Help(self:getcell(L,C))		-- Launch Browser
-				else
-					return IUP_IGNORE
-				end
-			end
-
-		end
-
-		function me.SQ_box:enteritem_cb(L,C)
-			me.SQ_Detail_Zbox.value = me.SQ_Detail_box[tostring(L) .. tostring(C)]
-		end
 --========== DLC

 		me.DLC_box= iup.matrix {numcol=6, numcol_visible=6,  numlin=4, widthdef=105}
@@ -1079,7 +839,7 @@ end
 												iup.label{title=L.WBLab,expand="HORIZONTAL"},
 												me.WB_box,
 												iup.label{title=L.WB_Detail},
-												me.WB_Detail_Zbox,
+												me.WB_box.Detail_zbox,
 												iup.fill{}
 											})

@@ -1087,7 +847,7 @@ end
 												iup.label{title=L.SkillLab,expand="HORIZONTAL"},
 												me.SQ_box,
 												iup.label{title=L.SQ_Detail},
-												me.SQ_Detail_Zbox,
+												me.SQ_box.Detail_zbox,
 												iup.fill{}
 											})
 		iup.Append(me.data_tabs, iup.vbox {	["tabtitle"] =L.DLC,
diff --git a/HistOfflineBeta.lua b/HistOfflineBeta.lua
index 1305fe0..0fa0367 100644
--- a/HistOfflineBeta.lua
+++ b/HistOfflineBeta.lua
@@ -88,7 +88,6 @@ load_lang = function (lang)
 	lingua[lang].Ach_Detail = Ach_Detail
 end

-
 accounts = {}
 accounts_list = {}		-- String list for selection dialog
 playerNames = {}		-- Get name from ID.
@@ -614,6 +613,7 @@ end

 		-- Create Pub Dungeon Achievements Box==========================
 		me.Pub_box = iup.matrix {READONLY="YES",numcol=4, numcol_visible=4,  numlin=5, widthdef=100}
+		iup.SetAttribute(me.Pub_box, "READONLY", "YES")
 		me.Pub_box.dat = Pub_Dat_Char
 		me.Pub_box.ach = thischar.ach
 		me.Pub_box.mousemove_cb = box_mousemove_cb
@@ -721,6 +721,7 @@ end
 -- Create WorldBoss Achievements Box==========================

 		me.WB_box= Location_Box()
+		print("Done WB Box")
 		Populate_Dat(me.WB_box, WB_dat,me.ach)


diff --git a/data/de/de.lua b/data/de/de.lua
index d960421..f6c5bb2 100644
--- a/data/de/de.lua
+++ b/data/de/de.lua
@@ -44,6 +44,9 @@ Area_names = {
 	[14] = { short= "Wolf",
 			medium = "Wolfhunter",
 			long = "Wolfhunter"},
+	[15] = { short= "Murk",
+			medium = "Murkmire",
+			long = "Murkmire"},
 }

 L = {
@@ -298,7 +301,7 @@ Locations2 = {   -- Used for WB and SQ,
 { name="Ostmarsch", Grp="Direfrost Keep", Pub="Hall of the Dead"},
 { name="Rift", Grp="Blessed Crucible", Pub="Lion's Den"},
 --DC
-{ kname="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},
+{ name="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},
 { name="Sturmhafen", Grp="Wayrest Sewers", Pub="Bonesnap Ruins"},
 { name="Kluftspitze", Grp="Crypt of Hearts", Pub="Obsidian Scar"},
 { name="Alik'r Wüste", Grp="Volenfell", Pub="Lost City"},
@@ -319,6 +322,7 @@ Locations2 = {   -- Used for WB and SQ,
 { name="Orsinium"},
 { name="Stadt der Uhrwerke"},
 { name="Sommersend"},
+{ name="Murkmire"},	--24

 }

diff --git a/data/en/en.lua b/data/en/en.lua
index 26ef611..7cff294 100644
--- a/data/en/en.lua
+++ b/data/en/en.lua
@@ -1,13 +1,16 @@

+
 dateformat = "%Y-%m-%d, %H:%M"

 Area_names = {
 	[1] = { short= "EP",
 			medium = "Pact",
 			long = "Ebonheart Pact"},
+
 	[2] = { short= "DC",
 			medium = "Covenant",
 			long = "Daggerfall Covenant"},
+
 	[3] = { short= "AD",
 			medium = "Dominion",
 			long = "Aldmeri Dominion"},
@@ -27,6 +30,7 @@ Area_names = {
 	[8] = { short= "IC",
 			medium = "Imperial City",
 			long = "Imperial City"},
+
 	[9] = { short= "Hist",
 			medium = "Hist",
 			long = "Shadows of the Hist"},
@@ -42,6 +46,7 @@ Area_names = {
 	[13] = { short= "Summer",
 			medium = "Summerset Isle",
 			long = "Summerset Isle"},
+
 	[14] = { short= "Wolf",
 			medium = "Wolfhunter",
 			long = "Wolfhunter"},
@@ -73,6 +78,10 @@ L = {
 	GrpLab = "Levels are Minimum, scales to leader",
 	PubLab = "Conqueror Achievement",
 	VetLab = "All are V1-V12 except City of Ash which is V13-V14",
+
+
+
+
 	WBLab = "",
 	LogTab = "System Log",
 	TStamp = "Time Stamp" ,
@@ -86,6 +95,7 @@ L = {
 	Zone = "Zone",
 	SkillQuests = "SkillQuests",
 	SkillLab = "Quests Awarding a Skill Point. Click for Detail",
+
 	Ach_ID = "Ach ID",

 	Name = "Name",
@@ -101,6 +111,9 @@ L = {
 	Vet = "Veteran",
 	Vanquisher="Vanquisher",
 	Conqueror="Conqueror",
+
+
+
 	Achievements = "Achievements",
 	DLC="DLC",
 	DLCLab="Downloadable Content",
@@ -110,6 +123,7 @@ L = {
 	About = "About",
 	Delete = "Delete",
 	NoAccount ="Only 1 account, can't delete that.",
+
 	ChooseAccounttoDelete = "Choose Account to Delete",
 	ChooseChartoDelete = "Choose Character to Delete",
 	ChooseWorld ="Choose Server",
@@ -141,10 +155,12 @@ pub_names = {

 	["21"]= "Forgotten Crypts",
 	["31"]= "Sanguine's Demesne",
+
 	["41"]= "Hall of the Dead" ,
 	["51"]= "Lion's Den",
 --DC
 	["12"]= "Bad Man's Hallows" ,
+
 	["22"]= "Bonesnap Ruins" ,
 	["32"]= "Obsidian Scar" ,
 	["42"]= "Lost City" ,
@@ -152,12 +168,14 @@ pub_names = {
 --AD
 	["13"]= "Toothmall Gully" ,
 	["23"]= "Root Sunder Ruins" ,
+
 	["33"]= "Rulanyil's Fall" ,
 	["43"]= "Crimson Cove" ,

 	["53"]= "The Vile Manse" ,
 --Coldharbour
 	["14"]= "Village of the Lost" ,
+
 --Vvardenfell
 	["24"]= "Forgotten Wastes",
 	["34"]= "Nchuleftingth",
@@ -171,6 +189,7 @@ grp_names = {
 	["21"]= "Darkshade Caverns",
 	["31"]= "Arx Corinum",
 	["41"]= "Direfrost Keep",
+
 	["51"]= "Blessed Crucible",
 --DC
 	["12"]= "Spindleclutch",
@@ -193,8 +212,10 @@ Trials_Names= {}
 Trials_Names["N"] = {
 	["11"] = "Craglorn: Hel Ra Citadel Completed",
 	["21"] = "Craglorn: Aetherian Archive Completed",
+
 	["31"] = "Craglorn: Sanctum Ophidia Completed",
 	["41"] = "Craglorn: Dragonstar Arena Champion",
+
 	["51"] = "Vvardenfell: Halls of Fabrication Completed",
 	["61"] = "Theives Guild: Maw of Lorkhaj Completed",
 	["71"] = "Summerset: Cloudrest Completed",
@@ -204,6 +225,7 @@ Trials_Names["N"] = {
 	["111"] = "Clockwork City: Asylum Sanctorium Completed",
 	["121"] = "Clockwork City: Asylum Sanctorium Contender",
 }
+
 Trials_Names["V"] = {
 	["11"] = "Craglorn: Hel Ra Citadel Conqueror",
 	["21"] = "Craglorn: Aetherian Archive Conqueror",
@@ -300,8 +322,6 @@ Locations = {   -- Used for WB and SQ

 }

-
-
 Locations2 = {   -- Used for WB and SQ,

 --EP
@@ -328,16 +348,12 @@ Locations2 = {   -- Used for WB and SQ,
 { name="Thieves Guild"},	--18
 { name="Imperial City"},	--19
 { name="VVardenfell"},	--20
-
 { name="Orsinium"},--21
 { name="Clockwork City"},	--22
 { name="Summerset"},	--23
 { name="Murkmire"},	--24
-
 }

-
-
 DLC_Location_names = {
 ["11"]	= "Rkindaleft",
 ["21"]	= "Old Orsinum",
diff --git a/data/fr/fr.lua b/data/fr/fr.lua
index b2679f2..f8b25aa 100644
--- a/data/fr/fr.lua
+++ b/data/fr/fr.lua
@@ -44,6 +44,9 @@ Area_names = {
 	[14] = { short= "Wolf",
 			medium = "Wolfhunter",
 			long = "Wolfhunter"},
+	[15] = { short= "Murk",
+			medium = "Murkmire",
+			long = "Murkmire"},
 }

 L = {
@@ -257,8 +260,6 @@ Trials_Names["VH"] = {
 	["61"] = "Craglorn Trials Conqueror",
 }

-
-
 Locations = {
 --EP
 		["11"] = "Stonefalls",
@@ -290,7 +291,6 @@ Locations = {
 		["35"] = "Summerset",
 }

-
 Locations2 = {   -- Used for WB and SQ,

 --EP
@@ -300,7 +300,7 @@ Locations2 = {   -- Used for WB and SQ,
 { name="Eastmarch", Grp="Direfrost Keep", Pub="Hall of the Dead"},
 { name="The Rift", Grp="Blessed Crucible", Pub="Lion's Den"},
 --DC
-{ kname="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},
+{ name="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},
 { name="Stormhaven", Grp="Wayrest Sewers", Pub="Bonesnap Ruins"},
 { name="Rivenspire", Grp="Crypt of Hearts", Pub="Obsidian Scar"},
 { name="Alik'r Desert", Grp="Volenfell", Pub="Lost City"},
@@ -317,12 +317,12 @@ Locations2 = {   -- Used for WB and SQ,
 { name="Thieves Guild"},
 { name="Imperial City"},
 { name="VVardenfell"},
-
 { name="Orsinium"},
 { name="Cité mécanique"},
 { name="Summerset"},
-
+{ name="Murkmire"},	--24
 }
+
 DLC_Location_names = {
 ["11"]	= "Rkindaleft",
 ["21"]	= "D'Orsinium-la-Vieille",
@@ -354,4 +354,4 @@ DLC_Location_names = {

 --Our Naming

-DLC_Names= {"Thieves Guild", "Dark Brotherhood", "Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Clockwork City", "Morrowind", "Summerset", "Wolfhunter", "Murkmire"}
+DLC_Names= {"Thieves Guild", "Dark Brotherhood", "Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Cité mécanique", "Morrowind", "Summerset", "Wolfhunter", "Murkmire"}
diff --git a/data/ru/ru-data.lua b/data/ru/ru-data.lua
index cad5383..6fe629f 100644
--- a/data/ru/ru-data.lua
+++ b/data/ru/ru-data.lua
@@ -1,14563 +1,22811 @@
 --Obtained from the game, Don't edit.
 Ach_Detail ={
-	[2048] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Treasure of the Brass Fortress",
-		["description"] = "Travel to the Brass Fortress in Clockwork City.",
-	},
-	[2049] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Hero of Clockwork City",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Clockwork City.",
-	},
-	[2050] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Land of Gears and Cogs",
-		["description"] = "Complete the \"To the Clockwork City\" quest.",
-	},
-	[2058] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Clockwork Citizen",
-		["description"] = "Complete the \"In Search of a Sponsor\" quest.",
-	},
-	[11] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Elden Hollow I Vanquisher",
-		["description"] = "Defeat Akash gra-Mal, Chokethorn, and Canonreeve Oraneth in Elden Hollow I.",
-	},
-	[12] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Level 10 Hero",
-		["description"] = "Reach Level 10.",
-	},
-	[13] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Level 20 Hero",
-		["description"] = "Reach Level 20.",
-	},
-	[14] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Level 30 Hero",
-		["description"] = "Reach Level 30.",
-	},
-	[15] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Level 40 Hero",
-		["description"] = "Reach Level 40.",
-	},
-	[16] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Level 50 Hero",
-		["description"] = "Reach Level 50.",
-	},
-	[17] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Superior Ransacker",
-		["description"] = "Acquire a Superior quality item.",
-	},
-	[18] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Epic Acquirer",
-		["description"] = "Acquire an Epic quality item.",
-	},
-	[19] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Treasure Chest Spotter",
-		["description"] = "Loot any 10 Treasure Chests.",
-	},
-	[20] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Treasure Chest Seeker",
-		["description"] = "Loot any 50 Treasure Chests.",
-	},
-	[21] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Treasure Chest Stalker",
-		["description"] = "Loot any 100 Treasure Chests.",
-	},
-	[22] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Treasure Chest Hunter",
-		["description"] = "Loot any 1000 Treasure Chests.",
-	},
-	[2071] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Brass Fortress Supplier",
-		["description"] = "Complete 7 Brass Fortress resupply dailies.",
-	},
-	[2072] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Brass Fortress Quarter Master",
-		["description"] = "Complete 30 Brass Fortress resupply dailies.",
-	},
-	[2073] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Fortune and Fate",
-		["description"] = "Learn of things to come.",
-	},
-	[2074] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Wind-up Rodent Wrecker",
-		["description"] = "Slow the spread of secrets by destroying 100 Skeevatons.",
-	},
-	[2075] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Asylum Sanctorium Redeemer",
-		["description"] = "Complete the listed achievements for Asylum Sanctorium.",
-	},
-	[28] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Faolchu's Bane",
-		["description"] = "Defeat Faolchu the Changeling and set the city of Camlorn free.",
-	},
-	[2077] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Asylum Sanctorium Conqueror",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in Veteran Asylum Sanctorium.",
-	},
-	[30] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Wyrd Friend",
-		["description"] = "Help the Wyresses remove Angof's corruption from their sacred groves and the Wyrd Tree.",
-	},
-	[31] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Savior of Glenumbra",
-		["description"] = "Stop Angof the Gravesinger's necromantic plan to conquer Glenumbra.",
-	},
-	[2080] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Sanctified",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold without suffering a group member death in Veteran Asylum Sanctorium.",
-	},
-	[2081] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Swift Mercy",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold within a time limit of 15 minutes in Veteran Asylum Sanctorium. Timer starts when players enter the Sanctuary Atrium.",
-	},
-	[34] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Glenumbra Adventurer",
-		["description"] = "Complete 53 quests in Glenumbra.",
-	},
-	[35] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Superior Attire",
-		["description"] = "Wear a full set of Superior, and only Superior, gear.",
-	},
-	[36] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Epic Attire",
-		["description"] = "Wear a full set of Epic, and only Epic, gear.",
-	},
-	[2085] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Righteous Condemnation",
-		["description"] = "Defeat Saint Olms the Just and Saint Llothis the Pious in the same battle in Veteran Asylum Sanctorium.",
-	},
-	[38] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Humanoid Slayer",
-		["description"] = "Kill humanoids, Goblin-kin, and giant-kin.",
-	},
-	[39] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Daedra Slayer",
-		["description"] = "Kill Daedric creatures from Oblivion.",
-	},
-	[40] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Dwarven Construct Slayer",
-		["description"] = "Kill Dwarven mechanical constructs.",
-	},
-	[41] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Nature Slayer",
-		["description"] = "Kill a variety of natural creatures in the wilds of Tamriel and beyond.",
-	},
-	[42] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Undead Slayer",
-		["description"] = "Kill skeletons, zombies, ghosts, spirits, and vampires.",
-	},
-	[2091] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Kingdom Come",
-		["description"] = "Seize at least 4 Capture Points without dying in a Crazy King match.",
-	},
-	[2092] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Battleground King",
-		["description"] = "Control at least two Capture Points simultaneously in a Crazy King match.",
-	},
-	[2093] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Sunhold Conqueror",
-		["description"] = "Defeat all of the champions in Sunhold.",
-	},
-	[2094] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Karnwasten Conqueror",
-		["description"] = "Defeat all of the champions in Karnwasten.",
-	},
-	[2095] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Sunhold Group Event",
-		["description"] = "Interrupt the executioners and defeat Konnugil the Leviathan in Sunhold.",
-	},
-	[2096] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Karnwasten Group Event",
-		["description"] = "Defeat the Sea Sload K'Garza in Karnwasten.",
-	},
-	[2097] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Dreadhorn Style Master",
-		["description"] = "Learn every chapter in the Dreadhorn style book, occasionally found as rewards for completing the Falkreath Hold dungeon.",
-	},
-	[2098] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Bloodforge Style Master",
-		["description"] = "Learn every chapter in the Bloodforge style book, occasionally found as rewards for completing the Bloodroot Forge dungeon.",
-	},
-	[51] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Master Monster Slayer",
-		["description"] = "Complete all of the Slayer Achievements.",
-	},
-	[52] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Quester",
-		["description"] = "Complete 50 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
-	},
-	[53] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Explorer",
-		["description"] = "Complete 100 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
-	},
-	[54] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Adventurer",
-		["description"] = "Complete 250 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
-	},
-	[55] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Master Adventurer",
-		["description"] = "Complete 500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
-	},
-	[56] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Indomitable Adventurer",
-		["description"] = "Complete 1000 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
-	},
-	[57] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Stormhaven Adventurer",
-		["description"] = "Complete 60 quests in Stormhaven.",
-	},
-	[58] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Rivenspire Adventurer",
-		["description"] = "Complete 42 quests in Rivenspire.",
-	},
-	[59] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Alik'r Desert Adventurer",
-		["description"] = "Complete 42 quests in Alik'r Desert.",
-	},
-	[60] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Bangkorai Adventurer",
-		["description"] = "Complete 36 quests in Bangkorai.",
-	},
-	[61] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Hero of the Daggerfall Covenant",
-		["description"] = "Complete all Daggerfall Covenant quest achievements.",
-	},
-	[2110] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Adept Outfitter",
-		["description"] = "Change the look of a piece of equipment using the Outfit System 10 times.",
-	},
-	[2111] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Outfitter",
-		["description"] = "Change the look of a piece of equipment using the Outfit System 50 times.",
-	},
-	[64] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Apprentice Crafting Harvester",
-		["description"] = "Harvest any crafting materials 10 times.",
-	},
-	[65] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Journeyman Crafting Harvester",
-		["description"] = "Harvest any crafting materials 50 times.",
-	},
-	[66] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Expert Crafting Harvester",
-		["description"] = "Harvest any crafting materials 100 times.",
-	},
-	[67] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Master Crafting Harvester",
-		["description"] = "Harvest any crafting materials 1000 times.",
-	},
-	[68] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Grand Master Crafting Harvester",
-		["description"] = "Harvest any crafting materials 10000 times.",
-	},
-	[2120] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Worm Cult Style Master",
-		["description"] = "Learn every chapter in the Worm Cult style book, occasionally found in Anniversary Jubilee Gift Boxes.",
-	},
-	[2121] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 1 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Iron, Rawhide, Jute, or Maple equipment.",
-	},
-	[2122] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 2 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Steel, Cotton, Hide, or Oak equipment.",
-	},
-	[2123] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 3 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Orichalcum, Spidersilk, Leather, or Beech equipment.",
-	},
-	[2124] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 4 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Dwarven, Ebonthread, Thick Leather, or Hickory equipment.",
-	},
-	[2125] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 5 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Ebony, Ebonthread, Fell Hide, or Yew equipment.",
-	},
-	[78] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Darkshade Caverns I Vanquisher",
-		["description"] = "Defeat Foreman Llothan, the Hive Lord, and the Sentinel of Rkugamz in Darkshade Caverns I.",
-	},
-	[79] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Wayrest Sewers I Vanquisher",
-		["description"] = "Defeat Investigator Garron, Varain Pellingare and Allene Pellingare in Wayrest Sewers I.",
-	},
-	[80] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Crypt of Hearts I Vanquisher",
-		["description"] = "Defeat Archmaster Siniel, Death's Leviathan, and the Ilambris Twins in Crypt of Hearts I.",
-	},
-	[81] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Tempest Island Vanquisher",
-		["description"] = "Defeat Valaran Stormcaller, Stormfist, and Stormreeve Neidir in Tempest Island.",
-	},
-	[2130] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 10 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Rubedite, Ancestor Silk, Rubedo Leather, or Ruby Ash equipment.",
-	},
-	[2131] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Cloudrest Completed",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe in Cloudrest.",
-	},
-	[2132] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Cloudrest Contender",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe in the same fight in Cloudrest.",
-	},
-	[2133] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Cloudrest Conqueror",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe in Veteran Cloudrest.",
-	},
-	[2134] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "A Sload and Her Shadow",
-		["description"] = "Defeat Z'Maja with one Welkynar shade fighting by her side in Veteran Cloudrest.",
-	},
-	[2135] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Three's Deadly Company",
-		["description"] = "Defeat Z'Maja with two Welkynar shades fighting by her side in Veteran Cloudrest.",
-	},
-	[88] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Dragonknight Slayer",
-		["description"] = "Kill 10 enemy Dragonknights.",
-	},
-	[89] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Sorcerer Slayer",
-		["description"] = "Kill 10 enemy Sorcerers.",
-	},
-	[90] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Templar Slayer",
-		["description"] = "Kill 10 enemy Templars.",
-	},
-	[91] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Capture a Resource",
-		["description"] = "Help capture a resource (farm, lumbermill, or mine) in Cyrodiil.",
-	},
-	[92] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Volunteer",
-		["description"] = "Earn your first rank in the Alliance War.",
-	},
-	[93] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Recruit",
-		["description"] = "Earn the rank of Recruit in the Alliance War.",
-	},
-	[94] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Tyro",
-		["description"] = "Earn the rank of Tyro in the Alliance War.",
-	},
-	[95] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Legionary",
-		["description"] = "Earn the rank of Legionary in the Alliance War.",
-	},
-	[96] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Veteran",
-		["description"] = "Earn the rank of Veteran in the Alliance War.",
-	},
-	[97] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Corporal",
-		["description"] = "Earn the rank of Corporal in the Alliance War.",
-	},
-	[98] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Sergeant",
-		["description"] = "Earn the rank of Sergeant in the Alliance War.",
-	},
-	[99] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Lieutenant",
-		["description"] = "Earn the rank of Lieutenant in the Alliance War.",
-	},
-	[100] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Captain",
-		["description"] = "Earn the rank of Captain in the Alliance War.",
-	},
-	[101] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Major",
-		["description"] = "Earn the rank of Major in the Alliance War.",
-	},
-	[102] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Centurion",
-		["description"] = "Earn the rank of Centurion in the Alliance War.",
-	},
-	[103] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Colonel",
-		["description"] = "Earn the rank of Colonel in the Alliance War.",
-	},
-	[104] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Tribune",
-		["description"] = "Earn the rank of Tribune in the Alliance War.",
-	},
-	[105] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Brigadier",
-		["description"] = "Earn the rank of Brigadier in the Alliance War.",
-	},
-	[106] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Prefect",
-		["description"] = "Earn the rank of Prefect in the Alliance War.",
-	},
-	[107] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Praetorian",
-		["description"] = "Earn the rank of Praetorian in the Alliance War.",
-	},
-	[108] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Palatine",
-		["description"] = "Earn the rank of Palatine in the Alliance War.",
-	},
-	[109] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War August Palatine",
-		["description"] = "Earn the rank of August Palatine in the Alliance War.",
-	},
-	[110] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Legate",
-		["description"] = "Earn the rank of Legate in the Alliance War.",
-	},
-	[111] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War General",
-		["description"] = "Earn the rank of General in the Alliance War.",
-	},
-	[112] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Warlord",
-		["description"] = "Earn the rank of Warlord in the Alliance War.",
-	},
-	[113] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Grand Warlord",
-		["description"] = "Earn the rank of Grand Warlord in the Alliance War.",
-	},
-	[114] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Overlord",
-		["description"] = "Earn the rank of Overlord in the Alliance War.",
-	},
-	[115] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "First Revenge",
-		["description"] = "Score a Revenge kill in the Alliance War or Battlegrounds.",
-	},
-	[116] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Sweet Vengeance",
-		["description"] = "Score 10 Revenge kills in the Alliance War or Battlegrounds.",
-	},
-	[117] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "First Avenge",
-		["description"] = "Score your first Avenge kill in the Alliance War or Battlegrounds.",
-	},
-	[118] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Vindication",
-		["description"] = "Score 10 Avenge kills in the Alliance War or Battlegrounds.",
-	},
-	[119] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Close Call Kill",
-		["description"] = "Earn a kill when below 5 percent health in the Alliance War or Battlegrounds.",
-	},
-	[120] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Five Under Five",
-		["description"] = "Earn 5 kills when below 5 percent health in the Alliance War or Battlegrounds.",
-	},
-	[121] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Ten Under Five",
-		["description"] = "Earn 10 kills when below 5 percent health in the Alliance War or Battlegrounds.",
-	},
-	[122] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Keep Capture",
-		["description"] = "Capture your first keep in the Alliance War.",
-	},
-	[2171] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "A Book and its Cover",
-		["description"] = "Completed Bailiff Naramin's investigation of Choixth.",
-	},
-	[2178] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Abyssal Assaulter",
-		["description"] = "Complete 10 Abyssal Geysers.",
-	},
-	[2179] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Abyssal Demolisher",
-		["description"] = "Complete 25 Abyssal Geysers.",
-	},
-	[2180] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Abyssal Devastator",
-		["description"] = "Complete 50 Abyssal Geysers.",
-	},
-	[2181] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Karnwasten Vanquisher",
-		["description"] = "Defeat three of the champions in Karnwasten.",
-	},
-	[134] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Kill a Grand Overlord",
-		["description"] = "Kill an enemy player of Alliance War rank 50.",
-	},
-	[135] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Damage Dealer",
-		["description"] = "Deal 1,000,000 points of damage to enemies in Cyrodiil.",
-	},
-	[136] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Massive Damage Dealer",
-		["description"] = "Deal 5,000,000 points of damage to enemies in Cyrodiil.",
-	},
-	[137] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Tremendous Damage Dealer",
-		["description"] = "Deal 100,000,000 points of damage to enemies in Cyrodiil.",
-	},
-	[138] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Healer",
-		["description"] = "Heal 1,000,000 points of damage to allies in Cyrodiil.",
-	},
-	[139] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Massive Healer",
-		["description"] = "Heal 5,000,000 points of damage to allies in Cyrodiil.",
-	},
-	[140] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Tremendous Healer",
-		["description"] = "Heal 100,000,000 points of damage to allies in Cyrodiil.",
-	},
-	[141] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Breton Slayer",
-		["description"] = "Kill 100 Breton enemies in the Alliance War or Battlegrounds.",
-	},
-	[2190] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Fang Lair Style Master",
-		["description"] = "Learn every chapter in the Fang Lair style book, occasionally found as rewards for completing the Fang Lair dungeon.",
-	},
-	[2191] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Summerset Master Angler",
-		["description"] = "Catch all 12 rare fish in Summerset.",
-	},
-	[145] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Evermore Defender",
-		["description"] = "Stop the Reachmen from attacking Evermore.",
-	},
-	[146] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Bangkorai Garrison Liberator",
-		["description"] = "Liberate the Bangkorai Garrison from the invaders.",
-	},
-	[147] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "High King Emeric's Savior",
-		["description"] = "Rescue High King Emeric from the clutches of Septima Tharn.",
-	},
-	[148] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Woodblight Killer",
-		["description"] = "Kill the spriggan Woodblight at Blighted Isle.",
-	},
-	[149] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Dayarrus' Deathbringer",
-		["description"] = "Kill Dayarrus the Xivilai at Arlimahera's Sanctum.",
-	},
-	[150] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Nomeg Hyril's Executioner",
-		["description"] = "Kill the frost atronach monarch Nomeg Hyril at Nilata Falls.",
-	},
-	[151] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Lich Butcher",
-		["description"] = "Kill the liches Qumehdi and Zaman at the Telesubi Ruins.",
-	},
-	[152] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Summoner Slayer",
-		["description"] = "Kill the summoner Caecilia Attius and her Daedra minions at the Summoner's Camp.",
-	},
-	[153] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Wolf-Father Exorcist",
-		["description"] = "Destroy the ghost Garach Wolf-Father and his werewolf spirits at Lakewatch Tower.",
-	},
-	[154] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Dreamslayer",
-		["description"] = "Defeat the Omen of the Watchful Eye and lift the paranoia in Alcaire.",
-	},
-	[155] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Spirit Warden Champion",
-		["description"] = "Return the Dream Shard to Pariah Abbey and restore peace to Menevia.",
-	},
-	[156] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Azura's Ally",
-		["description"] = "Defeat the Omen of Counting Stars and end the obsessions plaguing Gavaudon.",
-	},
-	[2205] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Sweet Dreams",
-		["description"] = "Complete the \"The Dreaming Cave\" quest.",
-	},
-	[158] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Hatespinner Hunter",
-		["description"] = "Kill the giant spider, Aesar the Hatespinner, at Aesar's Web.",
-	},
-	[159] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Menhir Hunter",
-		["description"] = "Kill the gargoyle, Menhir Stoneskin, at Valeguard Tower.",
-	},
-	[160] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Darkblood Hunter",
-		["description"] = "Kill the necromancer, Louna Darkblood, at Old Kalgon's Keep.",
-	},
-	[161] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Hag Hunter",
-		["description"] = "Kill the hag, Magdelena, at Magdelena's Haunt.",
-	},
-	[162] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stroda's Assassin",
-		["description"] = "Kill the Orc, Stroda gra-Drom, at East-Rock Landing.",
-	},
-	[163] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Siren Hunter",
-		["description"] = "Kill the nereid, Desuuga the Siren, at Siren's Cove.",
-	},
-	[2212] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Asp Awareness",
-		["description"] = "Defeat Keelsplitter without stepping on any of the snakes.",
-	},
-	[2213] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "To the Depths",
-		["description"] = "Defeat Sheefar of the Depths at an Abyssal Geyser.",
-	},
-	[2214] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Jewelry Crafter",
-		["description"] = "Learn the art of Jewelry Crafting. This can be learned in the Summerset Isle or by owning the Summerset chapter and interacting with a Jewelry Crafting Station.",
-	},
-	[2215] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Jewelry Crafter",
-		["description"] = "Attain a Jewelry Crafting rank of 50.",
-	},
-	[2216] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Legendary Jewelry Crafter",
-		["description"] = "Improve Jewelry Crafting items to all available Qualities.",
-	},
-	[2217] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Ochre Harvester",
-		["description"] = "Harvest your first unit of Ochre.",
-	},
-	[2218] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Ochre Harvester",
-		["description"] = "Harvest 25 units of Ochre.",
-	},
-	[2219] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Ochre Harvester",
-		["description"] = "Harvest 100 units of Ochre.",
-	},
-	[2220] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Calm and Calculated",
-		["description"] = "Defeat Girawell the Erratic at an Abyssal Geyser.",
-	},
-	[2221] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Wave Breaker",
-		["description"] = "Defeat Muustikar Wave-Eater at an Abyssal Geyser.",
-	},
-	[2222] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Hammer Meet Nail",
-		["description"] = "Defeat Reefhammer at an Abyssal Geyser.",
-	},
-	[2223] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Learn a Jewelry Trait",
-		["description"] = "Research a Trait for any jewelry type.",
-	},
-	[176] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Glenumbra Cave Delver",
-		["description"] = "Discover and clear all six caves in Glenumbra.",
-	},
-	[177] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Stormhaven Cave Delver",
-		["description"] = "Discover and clear all six caves in Stormhaven.",
-	},
-	[178] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Rivenspire Cave Delver",
-		["description"] = "Discover and clear all six caves in Rivenspire.",
-	},
-	[2227] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Grand Master Crafter",
-		["description"] = "Earn each of the following achievements:",
-	},
-	[180] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Bangkorai Cave Delver",
-		["description"] = "Discover and clear all six caves in Bangkorai.",
-	},
-	[181] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Stonefalls Cave Delver",
-		["description"] = "Discover and clear all six caves in Stonefalls.",
-	},
-	[2230] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "True Style Master",
-		["description"] = "Collect and learn 50 full motifs.",
-	},
-	[2231] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "One Core, No More",
-		["description"] = "Defeat Z'Maja with each group member picking up and destroying only one Malevolent Core in Veteran Cloudrest.",
-	},
-	[184] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Skin-Stealer Destroyer",
-		["description"] = "Destroy the Dominion's ability to create Skin-Stealers.",
-	},
-	[185] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Egg Protector",
-		["description"] = "Protect the Argonian eggs so a new generation can be born.",
-	},
-	[186] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Mnemic Egg Guardian",
-		["description"] = "Recover the Mnemic Egg from the Dominion.",
-	},
-	[187] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Haynekhtnamet Hunter",
-		["description"] = "Kill the wamasu champion Haynekhtnamet in its lair.",
-	},
-	[188] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ogre Twin Tormentor",
-		["description"] = "Kill the ogre twins Argalog and Vlaga at Xal Thak.",
-	},
-	[189] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Mummy Lord Murderer",
-		["description"] = "Kill the Ayleid Mummy Lord Talkynd at Nen Ria.",
-	},
-	[190] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Captain Bones Destroyer",
-		["description"] = "Defeat Captain Bones and his undead crew aboard the Captain's ship.",
-	},
-	[191] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Urrai's Bane",
-		["description"] = "Kill the Daedroth Urrai at Bitterroot Cave.",
-	},
-	[192] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Slave Lord's Ruination",
-		["description"] = "Kill the Slave Lord Rendrasa at the Slaver's Camp.",
-	},
-	[193] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Shadowfen Cave Delver",
-		["description"] = "Discover and clear all six caves in Shadowfen.",
-	},
-	[194] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Hero of Bleakrock",
-		["description"] = "Find Bleakrock's missing villagers and send them home.",
-	},
-	[195] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Strifeswarm Eradicator",
-		["description"] = "Kill the champion of the Strifeswarm kwama hive.",
-	},
-	[196] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Memory Masher",
-		["description"] = "Enter the Cave of Memories and destroy the Ashlander Guardian.",
-	},
-	[197] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Shellcracker",
-		["description"] = "Survive the mudcrabs of Shipwreck Strand and kill Shellcracker, the cannibal crab.",
-	},
-	[198] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Dreugh Destroyer",
-		["description"] = "Storm the beach at Matron's Clutch, slay the Dreugh Matrons, and end the threat of the Dreugh egg-tenders.",
-	},
-	[199] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Saintly Slaughter",
-		["description"] = "Destroy the Golden Saint at the Shivering Shrine.",
-	},
-	[200] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Netch Wrangler",
-		["description"] = "Defeat the bull netch Ozzacha in Brahma's Grove.",
-	},
-	[201] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Balreth's Bane",
-		["description"] = "Destroy Balreth and return the Brother of Strife to slumber.",
-	},
-	[202] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Inner Sea Armature Explorer",
-		["description"] = "Explore and clear the Inner Sea Armature.",
-	},
-	[203] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Emberflint Mine Explorer",
-		["description"] = "Explore and clear Emberflint Mine.",
-	},
-	[204] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "General Serien's Demise",
-		["description"] = "Slay General Serien and stop the Covenant invasion of Stonefalls.",
-	},
-	[205] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mephala's Nest Explorer",
-		["description"] = "Explore and clear Mephala's Nest.",
-	},
-	[206] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Hightide Hollow Explorer",
-		["description"] = "Explore and clear Hightide Hollow.",
-	},
-	[207] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Softloam Cavern Explorer",
-		["description"] = "Explore and clear Softloam Cavern.",
-	},
-	[208] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Sheogorath's Tongue Explorer",
-		["description"] = "Explore and clear Sheogorath's Tongue.",
-	},
-	[209] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Sadal's Overthrower",
-		["description"] = "Destroy Sadal and save Stonefalls.",
-	},
-	[210] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Rageclaw Hunter",
-		["description"] = "Kill the great werewolf, Rageclaw, at Rageclaw's Den.",
-	},
-	[211] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Armene's Bane",
-		["description"] = "Kill the Breton necromancer, Vivien Armene, at the Dragon Mound.",
-	},
-	[212] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ratmaster Crusher",
-		["description"] = "Kill the vampire, Olveidi the Ratmaster, at the Ratmaster's Prowl.",
-	},
-	[213] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Mannskadi's Mauler",
-		["description"] = "Kill the wild mammoth, Mannskadi, at Dragon's Hallow.",
-	},
-	[214] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ammabani Ambusher",
-		["description"] = "Kill the great sabre cat, Ammabani, at Ammabani's Pride.",
-	},
-	[215] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ilessan Tower Explorer",
-		["description"] = "Explore and clear Ilessan Tower.",
-	},
-	[216] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Silumm Explorer",
-		["description"] = "Explore and clear Silumm.",
-	},
-	[217] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Enduum Explorer",
-		["description"] = "Explore and clear Enduum.",
-	},
-	[218] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mines of Khuras Explorer",
-		["description"] = "Explore and clear the Mines of Khuras.",
-	},
-	[219] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ebon Crypt Explorer",
-		["description"] = "Explore and clear the Ebon Crypt.",
-	},
-	[220] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Cryptwatch Fort Explorer",
-		["description"] = "Explore and clear Cryptwatch Fort.",
-	},
-	[221] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Portdun Watch Explorer",
-		["description"] = "Explore and clear Portdun Watch.",
-	},
-	[222] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Koeglin Mine Explorer",
-		["description"] = "Explore and clear Koeglin Mine.",
-	},
-	[223] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Pariah Catacombs Explorer",
-		["description"] = "Explore and clear the Pariah Catacombs.",
-	},
-	[224] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Farangel's Delve Explorer",
-		["description"] = "Explore and clear Farangel's Delve.",
-	},
-	[225] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Bearclaw Mine Explorer",
-		["description"] = "Explore and clear the Bearclaw Mine.",
-	},
-	[226] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Norvolk Ruins Explorer",
-		["description"] = "Explore and clear the Norvolk Ruins.",
-	},
-	[227] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Crestshade Mine Explorer",
-		["description"] = "Explore and clear Crestshade Mine.",
-	},
-	[228] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Flyleaf Catacombs Explorer",
-		["description"] = "Explore and clear the Flyleaf Catacombs.",
-	},
-	[229] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Tribulation Crypt Explorer",
-		["description"] = "Explore and clear the Tribulation Crypt.",
-	},
-	[230] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Orc's Finger Ruins Explorer",
-		["description"] = "Explore and clear Orc's Finger Ruins.",
-	},
-	[231] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Erokii Ruins Explorer",
-		["description"] = "Explore and clear the Erokii Ruins.",
-	},
-	[232] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Hildune's Secret Refuge Explorer",
-		["description"] = "Explore and clear Hildune's Secret Refuge.",
-	},
-	[2285] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Pyandonean Style Master",
-		["description"] = "Learn every chapter in the Pyandonean style book, found in Summerset.",
-	},
-	[245] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Atanaz Ruins Explorer",
-		["description"] = "Explore and clear the Atanaz Ruins.",
-	},
-	[246] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Broken Tusk Explorer",
-		["description"] = "Explore and clear Broken Tusk.",
-	},
-	[247] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Chid-Moska Ruins Explorer",
-		["description"] = "Explore and clear the Chid-Moska Ruins.",
-	},
-	[248] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Gandranen Explorer",
-		["description"] = "Explore and clear Gandranen.",
-	},
-	[249] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Onkobra Kwama Mine Explorer",
-		["description"] = "Explore and clear the Onkobra Kwama Mine.",
-	},
-	[250] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Black Maw Shrine Explorer",
-		["description"] = "Explore and clear the Shrine of the Black Maw.",
-	},
-	[251] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Chill Hollow Explorer",
-		["description"] = "Explore and clear The Chill Hollow.",
-	},
-	[252] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Icehammer's Vault Explorer",
-		["description"] = "Explore and clear Icehammer's Vault.",
-	},
-	[253] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Old Sord's Cave Explorer",
-		["description"] = "Explore and clear Old Sord's Cave.",
-	},
-	[254] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Frigid Grotto Explorer",
-		["description"] = "Explore and clear the Frigid Grotto.",
-	},
-	[255] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Stormcrag Crypt Explorer",
-		["description"] = "Explore and clear Stormcrag Crypt.",
-	},
-	[256] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Bastard's Tomb Explorer",
-		["description"] = "Explore and clear the Bastard's Tomb.",
-	},
-	[257] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Beralagr Hunter",
-		["description"] = "Kill the great bear, Beralagr, at Swiftblade's Camp.",
-	},
-	[258] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Drowned Horde Decimator",
-		["description"] = "Destroy Thjormar and the Drowned Horde at Bitterpoint Strand.",
-	},
-	[259] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Dugan's Demolisher",
-		["description"] = "Kill the Orc reaver Dugan the Red.",
-	},
-	[260] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bone Grappler's Bane",
-		["description"] = "Kill the strangler Bone Grappler in its nest.",
-	},
-	[261] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Tallatta's Annihilator",
-		["description"] = "Kill the nereid queen Tallatta the Lustrous in the Jagged Grotto.",
-	},
-	[262] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Skullbreaker",
-		["description"] = "Kill Skullbreaker the sea troll at Windshriek Strand.",
-	},
-	[263] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Green Vanquisher",
-		["description"] = "Kill Commander Faldethil of the Green Hunters at River Edge.",
-	},
-	[264] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Lady Llarel's Shelter Explorer",
-		["description"] = "Explore and clear Lady Llarel's Shelter.",
-	},
-	[265] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Lower Bthanual Explorer",
-		["description"] = "Explore and clear the ruins of Lower Bthanual.",
-	},
-	[266] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Triple Circle Mine Explorer",
-		["description"] = "Explore and clear the Triple Circle Mine.",
-	},
-	[267] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Taleon's Crag Explorer",
-		["description"] = "Explore and clear Taleon's Crag.",
-	},
-	[268] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Knife Ear Grotto Explorer",
-		["description"] = "Explore and clear Knife Ear Grotto.",
-	},
-	[269] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Corpse Garden Explorer",
-		["description"] = "Explore and clear the Corpse Garden.",
-	},
-	[270] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Deshaan Cave Delver",
-		["description"] = "Discover and clear all six caves in Deshaan.",
-	},
-	[2319] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Welkynar Style Master",
-		["description"] = "Learn every chapter in the Welkynar style book, occasionally found as rewards for completing the Cloudrest Trial.",
-	},
-	[272] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Arx Corinium Vanquisher",
-		["description"] = "Defeat Ganakton the Tempest, Sliklenia the Songstress, and Sellistrix the Lamia Queen in Arx Corinium.",
-	},
-	[274] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Dead Man's Drop Explorer",
-		["description"] = "Explore and clear Dead Man's Drop.",
-	},
-	[275] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Short-Tusk Hunter",
-		["description"] = "Kill the giant kagouti, Short-Tusk, at Short-Tusk's Hillock.",
-	},
-	[276] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Abomination Slayer",
-		["description"] = "Kill the corpse husk, the Abomination, at the Grove of the Abomination.",
-	},
-	[277] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Sharpfang Killer",
-		["description"] = "Kill the giant troll, Sharpfang, at the Dire Bramblepatch.",
-	},
-	[278] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Mabrigash Shade Destroyer",
-		["description"] = "Destroy the Mabrigash Shade at the Mabrigash Burial Circle.",
-	},
-	[279] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Druitularg's Bane",
-		["description"] = "Kill the Dremora ritualist, Druitularg, at Druitularg's Ritual Altar.",
-	},
-	[280] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bittergreen Obliterator",
-		["description"] = "Kill the giant guar, Bittergreen the Wild, at Caravan Crest.",
-	},
-	[281] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Black Vine Ruins Explorer",
-		["description"] = "Explore and clear the Black Vine Ruins.",
-	},
-	[282] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Roots of Silvenar Explorer",
-		["description"] = "Explore and clear the Roots of Silvenar.",
-	},
-	[283] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Hound Hinderer",
-		["description"] = "Uncover the Hound's Plan to lure the Green Lady to Silvenar.",
-	},
-	[284] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Silvenar's Friend",
-		["description"] = "Save the Silvenar from his captors.",
-	},
-	[285] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Hero of Frond and Leaf",
-		["description"] = "Unite the Silvenar with the Green Lady.",
-	},
-	[286] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Shael Ruins Explorer",
-		["description"] = "Explore and clear the Shael Ruins.",
-	},
-	[287] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Auridon Cave Delver",
-		["description"] = "Discover and clear all six caves in Auridon.",
-	},
-	[288] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Del's Claim Explorer",
-		["description"] = "Explore and clear Del's Claim.",
-	},
-	[289] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ondil Explorer",
-		["description"] = "Explore and clear Ondil.",
-	},
-	[290] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Entila's Folly Explorer",
-		["description"] = "Explore and clear Entila's Folly.",
-	},
-	[291] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Wansalen Explorer",
-		["description"] = "Explore and clear Wansalen.",
-	},
-	[292] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mehrunes' Spite Explorer",
-		["description"] = "Explore and clear Mehrunes' Spite.",
-	},
-	[293] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Bewan Explorer",
-		["description"] = "Explore and clear Bewan.",
-	},
-	[294] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Fungal Grotto I Vanquisher",
-		["description"] = "Defeat the Goblin War Chief and the Dreugh King in Fungal Grotto I.",
-	},
-	[296] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Malabal Tor Cave Delver",
-		["description"] = "Discover and clear all six caves in Malabal Tor.",
-	},
-	[297] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Tomb of the Apostates Explorer",
-		["description"] = "Explore and clear the Tomb of the Apostates.",
-	},
-	[298] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Hoarvor Pit Explorer",
-		["description"] = "Explore and clear the Hoarvor Pit.",
-	},
-	[299] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Sanguine's Demesne Vanquisher",
-		["description"] = "Defeat three of the champions in Sanguine's Demesne.",
-	},
-	[300] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Sanguine's Demesne Conqueror",
-		["description"] = "Defeat all six champions in Sanguine's Demesne.",
-	},
-	[301] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Spindleclutch I Vanquisher",
-		["description"] = "Defeat the Swarm Mother and the Whisperer in Spindleclutch I.",
-	},
-	[303] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Torturers' Demise",
-		["description"] = "Defeat Kathutet, Amkaos, and Ranyu, Molag Bal's torturers, at a Dark Anchor.",
-	},
-	[304] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ogrim Brother Subjugator",
-		["description"] = "Defeat Glut, Hogshead, and Stumble, the three Ogrim Brothers, at a Dark Anchor.",
-	},
-	[305] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Dremora Pirate Slayer",
-		["description"] = "Defeat Velehk Sain, the Dremora pirate, at a Dark Anchor.",
-	},
-	[306] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Traveling Dremora Slayer",
-		["description"] = "Defeat Methats, Vonshala, and Sumeer, the Dremora travelers, at a Dark Anchor.",
-	},
-	[307] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Favored Daedroth Destroyer",
-		["description"] = "Defeat Menta Na, Molag Bal's most favored Daedroth, at a Dark Anchor.",
-	},
-	[308] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Closer of the Ever-Open Eye",
-		["description"] = "Defeat Yggmanei the Ever-Open Eye, Molag Bal's greatest spy, at a Dark Anchor.",
-	},
-	[309] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Hrelvesuu's Bane",
-		["description"] = "Defeat the Daedroth Hrelvesuu at a Dark Anchor.",
-	},
-	[310] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Devourer of Souls Subverter",
-		["description"] = "Defeat Rhagothan, the Devourer of Souls, at a Dark Anchor.",
-	},
-	[311] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Frost Lord Destroyer",
-		["description"] = "Defeat Nomeg Haga, the giant Frost Atronach of Coldharbour, at a Dark Anchor.",
-	},
-	[312] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Storm Lord Destroyer",
-		["description"] = "Defeat Zymel Hriz, the giant Storm Atronach of Coldharbour, at a Dark Anchor.",
-	},
-	[313] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Xivilai Slavemaster Destroyer",
-		["description"] = "Defeat Anaxes and Medrike, the Xivilai torturers, at a Dark Anchor.",
-	},
-	[314] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Seductive Sister Destroyer",
-		["description"] = "Defeat Vika, Dylora, and Jansa, the Dark Seducer sisters, at a Dark Anchor.",
-	},
-	[315] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Verkarth Vampire Destroyer",
-		["description"] = "Defeat King Styriche of Verkarth and his companions, Fangaril and Zayzahad, at a Dark Anchor.",
-	},
-	[316] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Crescent Dremora Destroyer",
-		["description"] = "Defeat Lord Dregas Volar, the holder of the Daedric Crescent, at a Dark Anchor.",
-	},
-	[317] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mournhold Lich Destroyer",
-		["description"] = "Defeat Gedna Relvel, the Lich of Mournhold, at a Dark Anchor.",
-	},
-	[318] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "General Executioner",
-		["description"] = "Destroy all of Molag Bal's generals that appear at the Dark Anchors.",
-	},
-	[322] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Chainbreaker",
-		["description"] = "Release the Dark Anchor pinions to send the chains back to Coldharbour.",
-	},
-	[324] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Anchor Destroyer",
-		["description"] = "Destroy 10 Dark Anchors from Coldharbour.",
-	},
-	[325] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Banished Cells I Vanquisher",
-		["description"] = "Defeat Shadowrend and High Kinlord Rilis in Banished Cells I.",
-	},
-	[328] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "The Rift Cave Delver",
-		["description"] = "Discover and clear all six caves in the Rift.",
-	},
-	[329] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Faldar's Tooth Explorer",
-		["description"] = "Explore and clear Faldar's Tooth.",
-	},
-	[330] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Broken Helm Hollow Explorer",
-		["description"] = "Explore and clear Broken Helm Hollow.",
-	},
-	[331] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Avancheznel Explorer",
-		["description"] = "Explore and clear Avancheznel.",
-	},
-	[332] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Fort Greenwall Explorer",
-		["description"] = "Explore and clear Fort Greenwall.",
-	},
-	[333] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Shroud Hearth Barrow Explorer",
-		["description"] = "Explore and clear Shroud Hearth Barrow.",
-	},
-	[334] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Snapleg Cave Explorer",
-		["description"] = "Explore and clear Snapleg Cave.",
-	},
-	[335] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Reach Crusher",
-		["description"] = "Crush the Reach's presence in the Rift.",
-	},
-	[336] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Wormsquasher",
-		["description"] = "Defeat Thallik Wormfather and scatter the Worm Cult.",
-	},
-	[337] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Ysgramor's Prodigy",
-		["description"] = "Return Sinmur to his grave.",
-	},
-	[340] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fungal Grotto II Assassin",
-		["description"] = "Defeat Mephala's Fang, Gamyne Bandu, Ciirenas the Sheperd, Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Veteran Fungal Grotto II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
-	},
-	[342] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fearless Assaulter",
-		["description"] = "Defeat Vila Theran in Veteran Fungal Grotto II without any member of your party using the protection of the Obsidian Husk.",
-	},
-	[343] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Fungal Grotto II Conqueror",
-		["description"] = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran in Veteran Fungal Grotto II.",
-	},
-	[345] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Khajiiti Hunters' Bane",
-		["description"] = "Defeat Indur-sa and the Khajiiti Hunters at the Hunter Camp.",
-	},
-	[346] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Troll Killer",
-		["description"] = "Defeat the trolls, Frostdrool and Sleetclaw, at the Troll Cave.",
-	},
-	[347] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Frost Atronach Destroyer",
-		["description"] = "Defeat the Frost Atronach, Nomeg Rine, at the Frozen Ruins.",
-	},
-	[348] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ghost Banisher",
-		["description"] = "Put Ghoragham to rest at Angarvunde Mound.",
-	},
-	[349] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Giant Slayer",
-		["description"] = "Defeat Longstride the Giant and his Mammoth at the Giant Camp.",
-	},
-	[350] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Wispmother Vanquisher",
-		["description"] = "Banish Aereus the Wispmother from Wisplight Glen.",
-	},
-	[351] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Marines Avenger",
-		["description"] = "End the threat of the necromancers at Soulfire Plateau and avenge the First Auridon Marines.",
-	},
-	[352] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bandit Lord Bounty Hunter",
-		["description"] = "Defeat Quenyas, leader of Auridon's bandit gangs, in the camp at Seaside Scarp.",
-	},
-	[353] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ghost Captain Crusher",
-		["description"] = "Destroy Ghost Captain Blanchete at the Wreck of the Raptor.",
-	},
-	[354] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Snapjaw's Bane",
-		["description"] = "Defeat the clannfear champion, Snapjaw, and end the murder of innocents at Heretic's Summons.",
-	},
-	[355] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Nestmother Eradicator",
-		["description"] = "Defeat the giant snake known as the Nestmother in her den.",
-	},
-	[356] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Anarume Bounty Hunter",
-		["description"] = "Defeat Anarume at the Heritance Proving Ground and end his treason.",
-	},
-	[357] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Direfrost Keep Vanquisher",
-		["description"] = "Defeat the Guardian of the Flame, the Empowered Frost Atronach, and Drodda of Icereach at Direfrost Keep.",
-	},
-	[360] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Sunder the First Veil",
-		["description"] = "Execute the traitor at Tanzelwil in the name of Queen Ayrenn.",
-	},
-	[361] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Sunder the Second Veil",
-		["description"] = "Infiltrate the Veiled Heritance and discover its secret.",
-	},
-	[362] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Sunder the Third Veil",
-		["description"] = "Defeat the Daedric army and their leader at Firsthold.",
-	},
-	[363] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Plague Ender",
-		["description"] = "Kill Merdyndril the Alchemist at Obsidian Gorge and put an end to the Llodos plague.",
-	},
-	[364] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Temple Knight",
-		["description"] = "Free the Tribunal Temple from invading Daedric forces.",
-	},
-	[365] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Vox Slayer",
-		["description"] = "Kill Magistrix Vox at Eidolon's Hollow and restore peace to Deshaan.",
-	},
-	[367] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Crow's Wood Vanquisher",
-		["description"] = "Defeat three of the champions in Crow's Wood.",
-	},
-	[368] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Crow's Wood Conqueror",
-		["description"] = "Defeat all of Crow's Wood's champions.",
-	},
-	[369] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Forgotten Crypts Vanquisher",
-		["description"] = "Defeat three of the champions in the Forgotten Crypts.",
-	},
-	[370] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Forgotten Crypts Conqueror",
-		["description"] = "Defeat all of the champions in the Forgotten Crypts.",
-	},
-	[371] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Lion's Den Group Event",
-		["description"] = "Defeat the Lonely Giant and his angry mammoths in the Lion's Den.",
-	},
-	[372] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Sanguine's Group Event",
-		["description"] = "Defeat Fight-Master Grel and his adepts at Sanguine's Demesne.",
-	},
-	[373] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Lion's Den Vanquisher",
-		["description"] = "Defeat three of the champions in the Lion's Den.",
-	},
-	[374] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Lion's Den Conqueror",
-		["description"] = "Defeat all of the champions in the Lion's Den.",
-	},
-	[375] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Hall of the Dead Vanquisher",
-		["description"] = "Defeat three of the champions in the Hall of the Dead.",
-	},
-	[376] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Hall of the Dead Conqueror",
-		["description"] = "Defeat all of the champions in the Hall of the Dead.",
-	},
-	[377] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Obsidian Scar Vanquisher",
-		["description"] = "Defeat three of the champions in Obsidian Scar.",
-	},
-	[378] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Obsidian Scar Conqueror",
-		["description"] = "Defeat all of the champions in Obsidian Scar.",
-	},
-	[379] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Crow's Wood Group Event",
-		["description"] = "Destroy the Soul Wraiths to summon and slay Ghyslain in Crow's Wood.",
-	},
-	[380] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Bad Man's Group Event",
-		["description"] = "Slay the Giant Snake Mother in Bad Man's Hallows.",
-	},
-	[381] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Hall of the Dead Group Event",
-		["description"] = "Defeat Reynir the Destroyer and his minions in the Hall of the Dead.",
-	},
-	[382] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Graufang Hunter",
-		["description"] = "Kill the giant bear Graufang at Seaview Point.",
-	},
-	[383] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Limbscather Slayer",
-		["description"] = "Defeat the lurcher Limbscather at the Western Overlook.",
-	},
-	[384] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Werewolf's Bane",
-		["description"] = "Kill the werewolf, Salazar the Wolf, at the Wolf's Camp.",
-	},
-	[385] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Asard's Assassin",
-		["description"] = "Defeat the Bloodthorn zombie, Asard the Putrid, at North Shore Point.",
-	},
-	[386] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Trapjaw Stalker",
-		["description"] = "Defeat the wamasu, Trapjaw, at Trapjaw's Cove.",
-	},
-	[387] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bloodcaller's Ruin",
-		["description"] = "Defeat the necromancer, Grivier Bloodcaller, at Balefire Island.",
-	},
-	[388] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Forgotten Crypts Group Event",
-		["description"] = "Eradicate the Kwama infestation and kill the Kwama Guardians in the Forgotten Crypts.",
-	},
-	[389] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Toothmaul Gully Vanquisher",
-		["description"] = "Defeat three of the champions in Toothmaul Gully.",
-	},
-	[390] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Toothmaul Gully Conqueror",
-		["description"] = "Defeat all of the champions in Toothmaul Gully.",
-	},
-	[391] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Volenfell Vanquisher",
-		["description"] = "Defeat Quintus Verres, Tremorscale, and the Guardian Council at Volenfell.",
-	},
-	[393] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Blessed Crucible Vanquisher",
-		["description"] = "Defeat the Pack, the Beast Master, and the Lava Queen at the Blessed Crucible.",
-	},
-	[395] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Lost City Vanquisher",
-		["description"] = "Defeat three of the champions in the Lost City of the Na-Totambu.",
-	},
-	[396] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Lost City Conqueror",
-		["description"] = "Defeat all of the champions in the Lost City of the Na-Totambu.",
-	},
-	[397] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Stonefalls Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Stonefalls.",
-	},
-	[398] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Bleakrock Skyshard Hunter",
-		["description"] = "Find all 3 Skyshards in Bleakrock.",
-	},
-	[399] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Titanclaw Cracker",
-		["description"] = "Defeat Titanclaw the mudcrab at Mudcrab Beach.",
-	},
-	[400] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Spider Slayer",
-		["description"] = "Defeat Old Widow Silk and the Bloodweaver spiders at the Spider Nest.",
-	},
-	[401] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Brood Queen Destroyer",
-		["description"] = "Defeat the Dreugh Brood Queen at the Dreugh Waters.",
-	},
-	[402] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Gar Xuu Gar's Bane",
-		["description"] = "Defeat the Daedroth Gar Xuu Gar and his minions at the Abandoned Farm.",
-	},
-	[403] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Cousin Scrag's Demolisher",
-		["description"] = "Defeat the Ogre called Cousin Scrag at Scrag's Larder.",
-	},
-	[404] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Kruz Control",
-		["description"] = "Defeat Zymel Kruz the Storm Atronach at the Ancient Altar.",
-	},
-	[405] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Bal Foyen Skyshard Hunter",
-		["description"] = "Find all 3 Skyshards in Bal Foyen.",
-	},
-	[406] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Nose Diver",
-		["description"] = "Jump from the nose of the Weeping Giant.",
-	},
-	[407] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Stros M'Kai Skyshard Hunter",
-		["description"] = "Find all 3 Skyshards in Stros M'Kai.",
-	},
-	[408] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Betnikh Skyshard Hunter",
-		["description"] = "Find all 3 Skyshards in Betnikh.",
-	},
-	[409] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Glenumbra Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Glenumbra.",
-	},
-	[410] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Blackheart Haven Vanquisher",
-		["description"] = "Defeat Atarus, the Roost Mother, and Captain Blackheart in Blackheart Haven.",
-	},
-	[412] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Santaki Ruins Explorer",
-		["description"] = "Explore and clear the Santaki Ruins.",
-	},
-	[413] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Alik'r Desert Cave Delver",
-		["description"] = "Discover and clear all six caves in the Alik'r Desert.",
-	},
-	[414] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Divad's Chagrin Mine Explorer",
-		["description"] = "Explore and clear Divad's Chagrin Mine.",
-	},
-	[415] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Famed Recruiter",
-		["description"] = "Recruit all three famous privateers on Stros M'Kai.",
-	},
-	[416] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Aldunz Ruins Explorer",
-		["description"] = "Explore and clear the Aldunz Ruins.",
-	},
-	[417] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Selene's Web Vanquisher",
-		["description"] = "Defeat Longclaw, Foulhide, and Selene in Selene's Web.",
-	},
-	[419] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Coldrock Diggings Explorer",
-		["description"] = "Explore and clear Coldrock Diggings.",
-	},
-	[420] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Sandblown Mine Explorer",
-		["description"] = "Explore and clear the Sandblown Mine.",
-	},
-	[421] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Spindleclutch II Conqueror",
-		["description"] = "Defeat the Blood Golem, Praxin's Ghost, and Vorenor Winterbourne in Veteran Spindleclutch II.",
-	},
-	[423] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Yldzuun Ruins Explorer",
-		["description"] = "Explore and clear the Yldzuun Ruins.",
-	},
-	[424] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Eastmarch Cave Delver",
-		["description"] = "Discover and clear all six caves in Eastmarch.",
-	},
-	[425] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Deathsong Deforester",
-		["description"] = "Destroy the tainted plant creatures at Deathsong Cleft in Reaper's March.",
-	},
-	[426] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Big Ozur's Bane",
-		["description"] = "Defeat Big Ozur the Ogre in Big Ozur's Valley.",
-	},
-	[427] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Mercy Killer",
-		["description"] = "Defeat the Queen of Three Mercies and her entourage at Waterdancer Falls in Reaper's March.",
-	},
-	[428] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Gravecaller's Doom",
-		["description"] = "Defeat Gravecaller Niramo and his dark daughter Varien at the Reaper's Henge.",
-	},
-	[429] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ysolmarr's Ruin",
-		["description"] = "Defeat the Daedroth, Ysolmarr the Roving Pyre, near the Old S'ren-ja Docks in Reaper's March.",
-	},
-	[430] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Nur-dro's Downfall",
-		["description"] = "Defeat the vampire, Overlord Nur-dro, at Ushmal's Rest in Reaper's March.",
-	},
-	[431] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Khenarthi's Skyshard Hunter",
-		["description"] = "Find all 6 Skyshards in Khenarthi's Roost.",
-	},
-	[432] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Aba-Loria Explorer",
-		["description"] = "Explore and clear Aba-Loria.",
-	},
-	[433] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Grotto of Depravity Explorer",
-		["description"] = "Explore and clear the Grotto of Depravity.",
-	},
-	[434] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Cave of Trophies Explorer",
-		["description"] = "Explore and clear the Cave of Trophies.",
-	},
-	[435] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Forgefire Vault Explorer",
-		["description"] = "Explore and clear the Vault of Haman Forgefire.",
-	},
-	[436] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mal Sorra's Tomb Explorer",
-		["description"] = "Explore and clear Mal Sorra's Tomb.",
-	},
-	[437] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Wailing Maw Explorer",
-		["description"] = "Explore and clear the Wailing Maw.",
-	},
-	[438] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Coldharbour Cave Delver",
-		["description"] = "Discover and clear all six caves in Coldharbour.",
-	},
-	[439] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Sthorha's Doom",
-		["description"] = "Defeat the daedroth, Sthorha the Crazed, at Aba-Darre.",
-	},
-	[440] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Ice Wraith Hunter",
-		["description"] = "Defeat the ice wraith, Duriatundur, at Duriatundur's Killing Field.",
-	},
-	[441] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Centurion's Ruin",
-		["description"] = "Defeat the ancient Dwarven Centurion, Zemarek-thul, at Zemarek's Hollow.",
-	},
-	[442] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Daedroth Trio Hunter",
-		["description"] = "Defeat the daedroth trio, Nolagha, Keggagiha and Rsolignah, at the Daedroth Larder.",
-	},
-	[443] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Brolsgerbwd's Bane",
-		["description"] = "Defeat the Dremora necromancer, Brolsgerbwd, at the Risen Court.",
-	},
-	[444] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Cynhamoth's End",
-		["description"] = "Defeat the harvester, Cynhamoth, at Cynhamoth's Grove.",
-	},
-	[445] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Rulanyil's Fall Group Event",
-		["description"] = "Defeat the undead hordes of Hergor the Fallen at Rulanyil's Fall.",
-	},
-	[446] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Spindleclutch II Assassin",
-		["description"] = "Defeat Mad Mortine, Blood Spawn, Praxin Douare, the Flesh Atronach trio, Urvan Veleth, and Vorenor Winterbourne in Veteran Spindleclutch II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
-	},
-	[448] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Compassionate Hero",
-		["description"] = "Defeat Vorenor Winterbourne in Veteran Spindleclutch II without killing any of the innocent victims held captive in his lair.",
-	},
-	[449] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Banished Cells II Assassin",
-		["description"] = "In Veteran Banished Cells II, defeat Keepers Imiril, Areldur, and Voranil, as well as the Maw of the Infernal and the Sisters Sihna and Vera, before defeating High Kinlord Rilis, all within twenty minutes. Timer starts upon engaging the first group of Banished skeletons.",
-	},
-	[451] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Cursed Hero",
-		["description"] = "In Veteran Banished Cells II, defeat High Kinlord Rilis while three or more Daedroth still live.",
-	},
-	[452] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Reaper's March Cave Delver",
-		["description"] = "Discover and clear all six caves in Reaper's March.",
-	},
-	[453] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Kuna's Delve Explorer",
-		["description"] = "Explore and clear Kuna's Delve.",
-	},
-	[454] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Thibaut's Cairn Explorer",
-		["description"] = "Explore and clear Thibaut's Cairn.",
-	},
-	[455] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Weeping Wind Cave Explorer",
-		["description"] = "Explore and clear the Weeping Wind Cave.",
-	},
-	[456] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Claw's Strike Explorer",
-		["description"] = "Explore and clear Claw's Strike.",
-	},
-	[457] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Fardir's Folly Explorer",
-		["description"] = "Explore and clear Fardir's Folly.",
-	},
-	[458] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Jode's Light Explorer",
-		["description"] = "Explore and clear Jode's Light.",
-	},
-	[459] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Elden Hollow II Conqueror",
-		["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Veteran Elden Hollow II.",
-	},
-	[460] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Crimson Cove Group Event",
-		["description"] = "Defeat Flat Tooth and his minions at Crimson Cove.",
-	},
-	[461] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Elden Hollow II Assassin",
-		["description"] = "Defeat Dubroze the Infestor, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame in Veteran Elden Hollow II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
-	},
-	[463] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Closing the Book",
-		["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment in Veteran Elden Hollow II.",
-	},
-	[464] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Darkshade Caverns II Conqueror",
-		["description"] = "Defeat the Transmuted Hive Lord, Grobull the Transmuted, and the Engine Guardian in Veteran Darkshade Caverns II.",
-	},
-	[465] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Darkshade Caverns II Assassin",
-		["description"] = "Defeat the Fallen Foreman, the Hive Lord and its Scribs, the Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Veteran Darkshade Caverns II, all within twenty minutes. Timer starts upon engaging the first group of kwama.",
-	},
-	[467] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Deadly Engineer",
-		["description"] = "Defeat the Engine Guardian in Veteran Darkshade Caverns II without anyone in your group activating an Engine Lever.",
-	},
-	[468] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Toothmaul Gully Group Event",
-		["description"] = "Destroy Bloodroot and its guardians at Toothmaul Gully.",
-	},
-	[469] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Vile Manse Group Event",
-		["description"] = "Defeat the damned creations of Graccus' frost experiments at the Vile Manse.",
-	},
-	[470] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Root Sunder Group Event",
-		["description"] = "Defeat the Bonemonger and its captors in Root Sunder Ruins.",
-	},
-	[471] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Glenumbra Angler",
-		["description"] = "Catch all 12 rare fish in Glenumbra.",
-	},
-	[472] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stormhaven Angler",
-		["description"] = "Catch all 12 rare fish in Stormhaven.",
-	},
-	[473] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Rivenspire Angler",
-		["description"] = "Catch all 12 rare fish in Rivenspire.",
-	},
-	[474] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Alik'r Desert Angler",
-		["description"] = "Catch all 12 rare fish in Alik'r Desert.",
-	},
-	[475] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bangkorai Angler",
-		["description"] = "Catch all 12 rare fish in Bangkorai.",
-	},
-	[476] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Covenant Fisherman",
-		["description"] = "Complete all Daggerfall Covenant fishing achievements.",
-	},
-	[477] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stonefalls Angler",
-		["description"] = "Catch all 12 rare fish in Stonefalls.",
-	},
-	[478] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Deshaan Angler",
-		["description"] = "Catch all 12 rare fish in Deshaan.",
-	},
-	[479] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Shadowfen Angler",
-		["description"] = "Catch all 12 rare fish in Shadowfen.",
-	},
-	[480] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Eastmarch Angler",
-		["description"] = "Catch all 12 rare fish in Eastmarch.",
-	},
-	[481] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Rift Angler",
-		["description"] = "Catch all 12 rare fish in the Rift.",
-	},
-	[482] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Pact Fisherman",
-		["description"] = "Complete all Ebonheart Pact fishing achievements.",
-	},
-	[483] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Auridon Angler",
-		["description"] = "Catch all 12 rare fish in Auridon.",
-	},
-	[484] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Grahtwood Angler",
-		["description"] = "Catch all 12 rare fish in Grahtwood.",
-	},
-	[485] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Greenshade Angler",
-		["description"] = "Catch all 12 rare fish in Greenshade.",
-	},
-	[486] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Malabal Tor Angler",
-		["description"] = "Catch all 12 rare fish in Malabal Tor.",
-	},
-	[487] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Reaper's March Angler",
-		["description"] = "Catch all 12 rare fish in Reaper's March.",
-	},
-	[488] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Dominion Fisherman",
-		["description"] = "Complete all Aldmeri Dominion fishing achievements.",
-	},
-	[489] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Cyrodiil Angler",
-		["description"] = "Catch all 12 rare fish in Cyrodiil.",
-	},
-	[490] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Coldharbour Angler",
-		["description"] = "Catch all 12 rare fish in Coldharbour.",
-	},
-	[491] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stros M'Kai Angler",
-		["description"] = "Catch a rare Eltheric Grouper in the saltwaters of Stros M'Kai.",
-	},
-	[492] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Khenarthi's Roost Angler",
-		["description"] = "Catch a rare Pyandonean Ray in the saltwaters of Khenarthi's Roost.",
-	},
-	[493] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bleakrock Angler",
-		["description"] = "Catch a rare Inner Sea Scalyfin fish in the saltwaters of Bleakrock.",
-	},
-	[494] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Master Fisher",
-		["description"] = "Complete all fishing achievements.",
-	},
-	[495] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Duneripper's Downfall",
-		["description"] = "Defeat the duneripper, Mother Sands, at the Lost Caravan.",
-	},
-	[496] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Lonely Papa's Doom",
-		["description"] = "Defeat the giant, Lonely Papa, at the Giant Camp.",
-	},
-	[497] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Hag Upheaval",
-		["description"] = "Defeat the Hag Sisters, Igazkad, Orochar and Ukha, at the Hag Camp.",
-	},
-	[498] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Korignah's Bane",
-		["description"] = "Defeat Korignah the harvester in the Forsaken Hearts Cave.",
-	},
-	[499] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Mummy King Murderer",
-		["description"] = "Defeat the Mummy King at King's Rest.",
-	},
-	[500] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Saint Slayer",
-		["description"] = "Defeat the golden saint, Staada, at the Lesser Circle.",
-	},
-	[510] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Court Ranger",
-		["description"] = "Protect the Court of the Wilderking.",
-	},
-	[511] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Veil Lifter",
-		["description"] = "End the Veiled Heritance threat in Greenshade.",
-	},
-	[512] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Valenwood Protector",
-		["description"] = "Cleanse the corruption from Valenwood.",
-	},
-	[515] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Stormhaven Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Stormhaven.",
-	},
-	[516] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Uwafa's Ruination",
-		["description"] = "Defeat Uwafa and reclaim the Ansei Ward.",
-	},
-	[517] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Alasan's Devastation",
-		["description"] = "Defeat Alasan and restore the Ansei Ward.",
-	},
-	[518] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Ash'abah Hero",
-		["description"] = "Defeat the Withered Hand and reclaim all the Ansei Wards.",
-	},
-	[524] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Meridia's Lightbearer",
-		["description"] = "Gather all of the Lights of Meridia within Coldharbour.",
-	},
-	[525] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Maormer's Bane",
-		["description"] = "Stop the Maormer from summoning a hurricane to destroy Khenarthi's Roost.",
-	},
-	[526] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Skooma Watch",
-		["description"] = "Intervene in all instances of skooma abuse on Khenarthi's Roost.",
-	},
-	[536] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Clanmother Inaugurator",
-		["description"] = "Restore the Clanmother to power in Arenthia.",
-	},
-	[537] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Dark Mane Incarcerator",
-		["description"] = "Shackle the Dark Mane to his prison beneath Moonmont.",
-	},
-	[538] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Two Moons Pathwalker",
-		["description"] = "Walk the Two Moons Path with the next Mane.",
-	},
-	[539] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Troll's Toothpick Explorer",
-		["description"] = "Explore and clear the Troll's Toothpick.",
-	},
-	[540] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Torog's Spite Explorer",
-		["description"] = "Explore and clear Torog's Spite.",
-	},
-	[541] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Crypt of the Exiles Explorer",
-		["description"] = "Explore and clear the Crypt of the Exiles.",
-	},
-	[542] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Viridian Watch Explorer",
-		["description"] = "Explore and clear the Viridian Watch.",
-	},
-	[543] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Rubble Butte Explorer",
-		["description"] = "Explore and clear Rubble Butte.",
-	},
-	[544] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Klathzgar Explorer",
-		["description"] = "Explore and clear Klathzgar.",
-	},
-	[545] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Banished Cells II Conqueror",
-		["description"] = "Defeat the Maw of the Infernal, Keeper Imiril, and High Kinlord Rilis in Veteran Banished Cells II.",
-	},
-	[547] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Deshaan Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Deshaan.",
-	},
-	[548] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ozozzachar's Door",
-		["description"] = "Destroy Ozozzachar, the favored Titan of Molag Bal.",
-	},
-	[550] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Underroot Explorer",
-		["description"] = "Explore and clear the Underroot.",
-	},
-	[551] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "City of Ash I Vanquisher",
-		["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in City of Ash I.",
-	},
-	[553] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Carac Dena Explorer",
-		["description"] = "Explore and clear Carac Dena.",
-	},
-	[554] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Rivenspire Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Rivenspire.",
-	},
-	[555] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Gurzag's Mine Explorer",
-		["description"] = "Explore and clear Gurzag's Mine.",
-	},
-	[556] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Alik'r Desert Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Alik'r Desert.",
-	},
-	[557] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Bangkorai Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Bangkorai.",
-	},
-	[558] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Harridan's Lair Explorer",
-		["description"] = "Explore and clear Harridan's Lair.",
-	},
-	[559] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Barrow Trench Explorer",
-		["description"] = "Explore and clear Barrow Trench.",
-	},
-	[560] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Gathongor Hunter",
-		["description"] = "Defeat the Argonian Behemoth, Gathongor the Mauler, at Gathongor's Mire.",
-	},
-	[561] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "King of the Hill",
-		["description"] = "Defeat the ogre, Thodundor of the Hill, at Thodundor's View.",
-	},
-	[562] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Sea Elf's Woe",
-		["description"] = "Defeat the Sea Elf, Jahlasri, and her Maormer companions at the Maormer Camp.",
-	},
-	[563] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Rootwater's Demise",
-		["description"] = "Defeat the lurcher known as the Heart of Rootwater at Rootwater Spring.",
-	},
-	[564] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Spy Smasher",
-		["description"] = "Defeat the Argonian Maheelius and his force of spies at the Reconnaissance Camp.",
-	},
-	[565] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Zymel Chaser",
-		["description"] = "Defeat the Storm Atronach, Zymel Etitan, at Pelda Tarn.",
-	},
-	[567] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Naril Nagaia Explorer",
-		["description"] = "Explore and clear Naril Nagaia.",
-	},
-	[568] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Greenshade Cave Delver",
-		["description"] = "Discover and clear all six caves in Greenshade.",
-	},
-	[570] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Vaults of Madness Vanquisher",
-		["description"] = "Defeat Ulguna Soul-Reaver, Grothdarr, Iskra the Omen, and the Mad Architect in the Vaults of Madness.",
-	},
-	[572] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Grahtwood Cave Delver",
-		["description"] = "Discover and clear all six caves in Grahtwood.",
-	},
-	[573] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ne Salas Explorer",
-		["description"] = "Explore and clear Ne Salas.",
-	},
-	[574] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Scuttle Pit Explorer",
-		["description"] = "Explore and clear the Scuttle Pit.",
-	},
-	[575] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Vinedeath Cave Explorer",
-		["description"] = "Explore and clear Vinedeath Cave.",
-	},
-	[576] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Burroot Kwama Mine Explorer",
-		["description"] = "Explore and clear Burroot Kwama Mine.",
-	},
-	[577] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Wormroot Depths Explorer",
-		["description"] = "Explore and clear Wormroot Depths.",
-	},
-	[578] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mobar Mine Explorer",
-		["description"] = "Explore and clear Mobar Mine.",
-	},
-	[579] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Dominion Anchor Shatterer",
-		["description"] = "Destroy every Dark Anchor in Aldmeri Dominion territory.",
-	},
-	[584] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Covenant Anchor Shatterer",
-		["description"] = "Destroy every Dark Anchor in Daggerfall Covenant territory.",
-	},
-	[585] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Pact Anchor Shatterer",
-		["description"] = "Destroy every Dark Anchor in Ebonheart Pact territory.",
-	},
-	[586] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Imperial Anchor Shatterer",
-		["description"] = "Destroy every Dark Anchor in the contested lands of Cyrodiil.",
-	},
-	[587] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Anchors Away",
-		["description"] = "Destroy every Dark Anchor in Tamriel.",
-	},
-	[589] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Hero of House Tamrith",
-		["description"] = "Kill Reezal-Jul at Camp Tamrith and save the Crestshade refugees.",
-	},
-	[590] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Hero of House Dorell",
-		["description"] = "Kill Lady Lleraya Montclair at Northpoint and set Baron Dorell's city free.",
-	},
-	[591] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Sword of Ravenwatch",
-		["description"] = "Kill Baron Wylon Montclair and destroy the Lightless Remnant at the Doomcrag to save Rivenspire.",
-	},
-	[593] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Stonefalls Adventurer",
-		["description"] = "Complete 59 quests in Stonefalls.",
-	},
-	[595] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Deshaan Adventurer",
-		["description"] = "Complete 55 quests in Deshaan.",
-	},
-	[596] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Shadowfen Adventurer",
-		["description"] = "Complete 51 quests in Shadowfen.",
-	},
-	[597] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Giant-Friend",
-		["description"] = "Kill Lob the Cleaver and befriend the Giants at the Cradlecrush Arena.",
-	},
-	[598] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Skald-King's Salvation",
-		["description"] = "Save Jorunn the Skald-King at Mistwatch Tower.",
-	},
-	[599] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Skald-King's Arrow",
-		["description"] = "Defeat Fildgor Orcthane at Skuldafn and earn the title of Arrow of Jorunn the Skald-King.",
-	},
-	[600] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Eastmarch Adventurer",
-		["description"] = "Complete 43 quests in Eastmarch.",
-	},
-	[602] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Reaper's March Adventurer",
-		["description"] = "Complete 45 quests in Reaper's March.",
-	},
-	[603] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "The Rift Adventurer",
-		["description"] = "Complete 61 quests in the Rift.",
-	},
-	[604] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Auridon Adventurer",
-		["description"] = "Complete 37 quests in Auridon.",
-	},
-	[605] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Southpoint Savior",
-		["description"] = "Free Southpoint from the influence of the Daedric Prince, Sheogorath.",
-	},
-	[606] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Reliquary Retriever",
-		["description"] = "Retrieve the Heart of Anumaril from the Reliquary of Stars.",
-	},
-	[607] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Hero of Falinesti",
-		["description"] = "Free Nairume from her prison and retrieve Rajhin's Mantle.",
-	},
-	[608] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Grahtwood Adventurer",
-		["description"] = "Complete 38 quests in Grahtwood.",
-	},
-	[610] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Greenshade Adventurer",
-		["description"] = "Complete 40 quests in Greenshade.",
-	},
-	[611] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Malabal Tor Adventurer",
-		["description"] = "Complete 40 quests in Malabal Tor.",
-	},
-	[612] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Light of the Ayleid King",
-		["description"] = "Rescue the last Ayleid King, Laloriaran Dynar, from the Lightless Oubliette.",
-	},
-	[613] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Guardian of the Great Mage",
-		["description"] = "Rescue the Great Mage, Vanus Galerion, and help him destroy Molag Bal's Great Shackle.",
-	},
-	[614] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 5,
-		["name"] = "Planemeld Sunderer",
-		["description"] = "Stop the Planemeld and defeat Molag Bal's plan of conquest at the Endless Stair.",
-	},
-	[616] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Coldharbour Adventurer",
-		["description"] = "Complete 29 quests in Coldharbour.",
-	},
-	[617] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Hero of the Ebonheart Pact",
-		["description"] = "Complete all Ebonheart Pact quest achievements.",
-	},
-	[618] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Hero of the Aldmeri Dominion",
-		["description"] = "Complete all Aldmeri Dominion quest achievements.",
-	},
-	[619] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Anchor Demolisher",
-		["description"] = "Destroy 50 Dark Anchors from Coldharbour.",
-	},
-	[620] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Anchor Decimator",
-		["description"] = "Destroy 100 Dark Anchors from Coldharbour.",
-	},
-	[621] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Anchor Devastator",
-		["description"] = "Destroy 250 Dark Anchors from Coldharbour.",
-	},
-	[622] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Dominion Cave Delver",
-		["description"] = "Complete all of the Aldmeri Dominion cave exploration achievements.",
-	},
-	[625] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Covenant Cave Delver",
-		["description"] = "Complete all of the Daggerfall Covenant cave exploration achievements.",
-	},
-	[626] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Pact Cave Delver",
-		["description"] = "Complete all of the Ebonheart Pact cave exploration achievements.",
-	},
-	[627] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Tamriel Master Cave Delver",
-		["description"] = "Complete every cave exploration achievement in Tamriel.",
-	},
-	[628] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Tamriel Expert Adventurer",
-		["description"] = "Complete all of the quest achievements across Tamriel.",
-	},
-	[678] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Wayrest Sewers II Conqueror",
-		["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in Veteran Wayrest Sewers II.",
-	},
-	[679] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Wayrest Sewers II Assassin",
-		["description"] = "Defeat Malubeth the Scourger, Skull Reaper, Uulgarg the Risen, Garron the Returned, the Forgotten One, and the Pellingare Twins in Veteran Wayrest Sewers II, all within twenty minutes. Timer starts upon engaging the first necromancer and his minions.",
-	},
-	[681] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Pellingare Ghoul Slayer",
-		["description"] = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers II.",
-	},
-	[682] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Grahtwood Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Grahtwood.",
-	},
-	[683] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Greenshade Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Greenshade.",
-	},
-	[684] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Malabal Tor Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Malabal Tor.",
-	},
-	[685] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Reaper's March Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Reaper's March.",
-	},
-	[686] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Coldharbour Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Coldharbour.",
-	},
-	[687] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Shadowfen Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Shadowfen.",
-	},
-	[688] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Eastmarch Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Eastmarch.",
-	},
-	[689] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "The Rift Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in the Rift.",
-	},
-	[691] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Dungeon Ruler",
-		["description"] = "Kill 100 named enemies in dungeons.",
-	},
-	[692] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Cyrodiil Pact Skyshard Hunter",
-		["description"] = "Find all 15 Skyshards in the Ebonheart Pact territory of Cyrodiil.",
-	},
-	[693] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Cyrodiil Covenant Skyshards",
-		["description"] = "Find all 15 Skyshards in the Daggerfall Covenant territory of Cyrodiil.",
-	},
-	[694] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Cyrodiil Aldmeri Skyshard Hunter",
-		["description"] = "Find all 15 Skyshards in the Aldmeri Dominion territory of Cyrodiil.",
-	},
-	[695] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Auridon Skyshard Hunter",
-		["description"] = "Find all 16 Skyshards in Auridon.",
-	},
-	[696] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Shagura's Doom",
-		["description"] = "Defeat the crazed Orc hunter Shagura at Hircine's Henge.",
-	},
-	[697] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Monsoon Marauder",
-		["description"] = "Defeat the senche-tigress Nindaeril the Monsoon atop Nindaeril's Perch.",
-	},
-	[698] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Water Walloper",
-		["description"] = "Defeat the nereid Lady Solace in Lady Solace's Fen.",
-	},
-	[699] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Poacher Pounder",
-		["description"] = "Defeat Otho Rufinus, the poacher leader, at the Poacher Camp.",
-	},
-	[700] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Thugrub Dissector",
-		["description"] = "Defeat the giant flesh atronach Thugrub the Reformed in Thugrub's Cave.",
-	},
-	[701] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Valanir's Bane",
-		["description"] = "Defeat the lich Valanir the Restless at Valanir's Rest.",
-	},
-	[702] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Arch-Mage",
-		["description"] = "Complete the Mages Guild series of quests.",
-	},
-	[703] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Fighters Guild Veteran",
-		["description"] = "Complete the Fighters Guild series of quests.",
-	},
-	[704] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "This One's On Me",
-		["description"] = "Buy drinks for your Undaunted companions at each gathering.",
-	},
-	[705] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War Grand Overlord",
-		["description"] = "Earn the rank of Grand Overlord in the Alliance War.",
-	},
-	[706] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Alliance War First Sergeant",
-		["description"] = "Earn the rank of First Sergeant in the Alliance War.",
-	},
-	[707] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Na-Totambu Group Event",
-		["description"] = "Solve the puzzle of the Guardians in the Lost City of the Na-Totambu.",
-	},
-	[708] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Razak's Wheel Group Event",
-		["description"] = "Defeat the flesh atronach at Razak's Wheel.",
-	},
-	[709] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Dungeon Lord",
-		["description"] = "Defeat 1000 named enemies in Dungeons.",
-	},
-	[710] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Dungeon Marauder",
-		["description"] = "Defeat 1000 enemies in Dungeons.",
-	},
-	[711] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Dungeon Annihilator",
-		["description"] = "Defeat 10,000 enemies in Dungeons.",
-	},
-	[713] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Obsidian Scar Group Event",
-		["description"] = "Defeat the Orc, Zilbash the Deceiver, at Obsidian Scar.",
-	},
-	[714] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Bonesnap Ruins Group Event",
-		["description"] = "Defeat the Eternal One in the Bonesnap Ruins.",
-	},
-	[716] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Peacemaker",
-		["description"] = "Help ease cultural tensions and reconcile the allies in Grahtwood.",
-	},
-	[717] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Nightblade Slayer",
-		["description"] = "Kill 10 enemy Nightblades.",
-	},
-	[718] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Redguard Slayer",
-		["description"] = "Kill 100 Redguard enemies in the Alliance War or Battlegrounds.",
-	},
-	[719] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Orc Slayer",
-		["description"] = "Kill 100 Orc enemies in the Alliance War or Battlegrounds.",
-	},
-	[720] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Dark Elf Slayer",
-		["description"] = "Kill 100 Dunmer enemies in the Alliance War or Battlegrounds.",
-	},
-	[721] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Nord Slayer",
-		["description"] = "Kill 100 Nord enemies in the Alliance War or Battlegrounds.",
-	},
-	[722] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Argonian Slayer",
-		["description"] = "Kill 100 Argonian enemies in the Alliance War or Battlegrounds.",
-	},
-	[723] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Wood Elf Slayer",
-		["description"] = "Kill 100 Bosmer enemies in the Alliance War or Battlegrounds.",
-	},
-	[724] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "High Elf Slayer",
-		["description"] = "Kill 100 Altmer enemies in the Alliance War or Battlegrounds.",
-	},
-	[725] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Khajiit Slayer",
-		["description"] = "Kill 100 Khajiit enemies in the Alliance War or Battlegrounds.",
-	},
-	[726] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Imperial Slayer",
-		["description"] = "Kill 100 Imperial enemies in the Alliance War or Battlegrounds.",
-	},
-	[727] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Lower Craglorn Skyshards",
-		["description"] = "Find all 12 Skyshards in Lower Craglorn.",
-	},
-	[730] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Bloodmayne Cave Explorer",
-		["description"] = "Explore and clear Bloodmayne Cave.",
-	},
-	[731] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Breakneck Cave Explorer",
-		["description"] = "Explore and clear Breakneck Cave.",
-	},
-	[732] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Haynote Cave Explorer",
-		["description"] = "Explore and clear Haynote Cave.",
-	},
-	[733] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Nisin Cave Explorer",
-		["description"] = "Explore and clear Nisin Cave.",
-	},
-	[734] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Pothole Caverns Explorer",
-		["description"] = "Explore and clear the Pothole Caverns.",
-	},
-	[735] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Serpent Hollow Explorer",
-		["description"] = "Explore and clear Serpent Hollow.",
-	},
-	[736] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Capstone Cave Explorer",
-		["description"] = "Explore and clear Capstone Cave.",
-	},
-	[737] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Echo Cave Explorer",
-		["description"] = "Explore and clear Echo Cave.",
-	},
-	[738] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Lipsand Tarn Explorer",
-		["description"] = "Explore and clear Lipsand Tarn.",
-	},
-	[739] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Red Ruby Cave Explorer",
-		["description"] = "Explore and clear Red Ruby Cave.",
-	},
-	[740] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Toadstool Hollow Explorer",
-		["description"] = "Explore and clear Toadstool Hollow.",
-	},
-	[741] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Underpall Cave Explorer",
-		["description"] = "Explore and clear Underpall Cave.",
-	},
-	[742] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Cracked Wood Cave Explorer",
-		["description"] = "Explore and clear Cracked Wood Cave.",
-	},
-	[743] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Kingscrest Cavern Explorer",
-		["description"] = "Explore and clear Kingscrest Cavern.",
-	},
-	[744] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Muck Valley Cavern Explorer",
-		["description"] = "Explore and clear Muck Valley Cavern.",
-	},
-	[745] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Newt Cave Explorer",
-		["description"] = "Explore and clear Newt Cave.",
-	},
-	[746] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Quickwater Cave Explorer",
-		["description"] = "Explore and clear Quickwater Cave.",
-	},
-	[747] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Vahtacen Explorer",
-		["description"] = "Explore and clear Vahtacen.",
-	},
-	[748] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Mountain Skyshard Hunter",
-		["description"] = "Find the Skyshard on top of the mountain in Cyrodiil.",
-	},
-	[749] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Dungeon Damage Dealer",
-		["description"] = "Deal 1,000,000 points of damage in Dungeons.",
-	},
-	[750] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Dungeon Damage Dispenser",
-		["description"] = "Deal 10,000,000 points of damage in Dungeons.",
-	},
-	[751] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Dungeon Healer",
-		["description"] = "Heal 1,000,000 points of damage to allies in Dungeons.",
-	},
-	[752] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Greater Dungeon Healer",
-		["description"] = "Heal 10,000,000 points of damage to allies in Dungeons.",
-	},
-	[753] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Dungeon Blocker",
-		["description"] = "Block 1,000,000 points of damage in Dungeons.",
-	},
-	[754] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Greater Dungeon Blocker",
-		["description"] = "Block 10,000,000 points of damage in Dungeons.",
-	},
-	[758] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Bruma Adventurer",
-		["description"] = "Complete all quests in Bruma.",
-	},
-	[759] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Cheydinhal Adventurer",
-		["description"] = "Complete all quests in Cheydinhal.",
-	},
-	[760] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Chorrol Weynon Priory Adventurer",
-		["description"] = "Complete all quests in Chorrol and Weynon Priory.",
-	},
-	[761] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Cropsford Adventurer",
-		["description"] = "Complete all quests in Cropsford.",
-	},
-	[762] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Vlastarus Adventurer",
-		["description"] = "Complete all quests in Vlastarus.",
-	},
-	[766] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Cyrodiil Cave Delver",
-		["description"] = "Explore and clear all 18 caves in Cyrodiil.",
-	},
-	[767] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Cyrodiil Champion",
-		["description"] = "Complete all quest achievements in Cyrodiil.",
-	},
-	[768] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Khenarthi's Roost Pathfinder",
-		["description"] = "Discover all of the striking locales on Khenarthi's Roost.",
-	},
-	[769] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Auridon Pathfinder",
-		["description"] = "Discover all of the striking locales on Auridon.",
-	},
-	[770] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bleakrock Isle Pathfinder",
-		["description"] = "Discover all of the striking locales on Bleakrock Isle.",
-	},
-	[771] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bal Foyen Pathfinder",
-		["description"] = "Discover all of the striking locales in Bal Foyen.",
-	},
-	[772] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stonefalls Pathfinder",
-		["description"] = "Discover all of the striking locales in Stonefalls.",
-	},
-	[773] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stros M'kai Pathfinder",
-		["description"] = "Discover all of the striking locales on Stros M'kai.",
-	},
-	[774] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Betnikh Pathfinder",
-		["description"] = "Discover all of the striking locales on Betnikh.",
-	},
-	[775] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Glenumbra Pathfinder",
-		["description"] = "Discover all of the striking locales in Glenumbra.",
-	},
-	[778] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Champion of Rahni'Za",
-		["description"] = "Unravel the mysteries of Rahni'Za, School of Warriors.",
-	},
-	[779] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Positive Potency",
-		["description"] = "Translate all of the Positive Potency runes.",
-	},
-	[780] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Negative Potency",
-		["description"] = "Translate all of the Negative Potency runes.",
-	},
-	[781] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Essence",
-		["description"] = "Translate all of the Essence runes.",
-	},
-	[788] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Aspect",
-		["description"] = "Translate all of the Aspect runes.",
-	},
-	[832] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Grahtwood Pathfinder",
-		["description"] = "Discover all of the striking locales in Grahtwood.",
-	},
-	[833] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Stormhaven Pathfinder",
-		["description"] = "Discover all of the striking locales in Stormhaven.",
-	},
-	[834] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Deshaan Pathfinder",
-		["description"] = "Discover all of the striking locales in Deshaan.",
-	},
-	[835] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Reaper's March Pathfinder",
-		["description"] = "Discover all of the striking locales in Reaper's March.",
-	},
-	[836] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Slaughtered",
-		["description"] = "Defeated by slaughterfish.",
-	},
-	[838] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Tamriel Beast Collector",
-		["description"] = "Collect trophies from all the beasts of Tamriel.",
-	},
-	[839] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Greenshade Pathfinder",
-		["description"] = "Discover all of the striking locales in Greenshade.",
-	},
-	[840] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Rivenspire Pathfinder",
-		["description"] = "Discover all of the striking locales in Rivenspire.",
-	},
-	[841] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Undead Hoarder",
-		["description"] = "Collect trophies from all the undead of Tamriel.",
-	},
-	[842] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Chitin Accumulator",
-		["description"] = "Collect trophies from all the chitinous creatures of Tamriel.",
-	},
-	[843] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Nature Collector",
-		["description"] = "Collect trophies from nature spirits and natural creatures from across Tamriel.",
-	},
-	[844] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Monstrous Component Collector",
-		["description"] = "Collect trophies from all the monstrous creatures of Tamriel.",
-	},
-	[845] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Shadowfen Pathfinder",
-		["description"] = "Discover all of the striking locales in Shadowfen.",
-	},
-	[846] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Dwarven Secrets Gatherer",
-		["description"] = "Collect trophies from Dwemer constructs.",
-	},
-	[847] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Atronach Element Collector",
-		["description"] = "Collect trophies from all types of atronachs.",
-	},
-	[848] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Oblivion Shard Gatherer",
-		["description"] = "Collect trophies from all types of slain Daedra.",
-	},
-	[849] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Alik'r Desert Pathfinder",
-		["description"] = "Discover all of the striking locales in Alik'r Desert.",
-	},
-	[850] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Arachnid Slayer",
-		["description"] = "Defeat 200 Spiders in Veteran Fungal Grotto II.",
-	},
-	[851] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Obsidian Slayer",
-		["description"] = "Defeat 425 Obsidian Warriors in Veteran Fungal Grotto II.",
-	},
-	[852] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Bonebreaker II",
-		["description"] = "Defeat 120 Skeletons in Veteran Banished Cells II.",
-	},
-	[853] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Rilis Dremora Slayer",
-		["description"] = "Defeat 300 Dremora in Veteran Banished Cells II.",
-	},
-	[854] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Thrall Slayer",
-		["description"] = "Defeat 220 Vampire Thralls in Veteran Spindleclutch II.",
-	},
-	[855] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Flesh Atronach Conqueror",
-		["description"] = "Defeat 65 Flesh Atronachs in Veteran Spindleclutch II.",
-	},
-	[856] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Kwama Slayer II",
-		["description"] = "Defeat 200 Kwama in Veteran Darkshade Caverns II.",
-	},
-	[857] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Construct Slayer",
-		["description"] = "Defeat 800 Dwarven Constructs in Veteran Darkshade Caverns II.",
-	},
-	[858] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Banekin Slayer",
-		["description"] = "Defeat 140 Banekin in Veteran Elden Hollow II.",
-	},
-	[859] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Lurcher Slayer",
-		["description"] = "Defeat 60 Lurchers in Veteran Elden Hollow II.",
-	},
-	[860] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Zombie Slayer",
-		["description"] = "Defeat 350 Zombies in Veteran Wayrest Sewers II.",
-	},
-	[861] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Colossus Slayer",
-		["description"] = "Defeat 40 Bone Colossi in Veteran Wayrest Sewers II.",
-	},
-	[862] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Malabal Tor Pathfinder",
-		["description"] = "Discover all of the striking locales in Malabal Tor.",
-	},
-	[863] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "The Rift Pathfinder",
-		["description"] = "Discover all of the striking locales in the Rift.",
-	},
-	[864] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Coldharbour Pathfinder",
-		["description"] = "Discover all of the striking locales in Coldharbour.",
-	},
-	[865] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Bangkorai Pathfinder",
-		["description"] = "Discover all of the striking locales in Bangkorai.",
-	},
-	[866] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Eastmarch Pathfinder",
-		["description"] = "Discover all of the striking locales in Eastmarch.",
-	},
-	[867] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Tamriel Trailblazer",
-		["description"] = "Discover all of the striking locales in the core regions of the Aldmeri Dominion, the Daggerfall Covenant, the Ebonheart Pact, and Coldharbour.",
-	},
-	[869] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Crime Pays",
-		["description"] = "Extort gold from merchants across Tamriel.",
-	},
-	[870] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 5,
-		["name"] = "Hel Ra Citadel: The War Horn",
-		["description"] = "Sound the war horn in Veteran Hel Ra Citadel and defeat the ancient warriors who answer.",
-	},
-	[871] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Give to the Poor",
-		["description"] = "Share your wealth with needy beggars across Tamriel.",
-	},
-	[872] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "I Like M'aiq",
-		["description"] = "Track the movements of M'aiq the Liar across Tamriel and beyond.",
-	},
-	[873] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Lightbringer",
-		["description"] = "Bring light to the dark places of the world.",
-	},
-	[874] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Village of the Lost Group Event",
-		["description"] = "Defeat Zatalguch in the Village of the Lost.",
-	},
-	[876] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Crypt of Hearts II Conqueror",
-		["description"] = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth in Veteran Crypt of Hearts II.",
-	},
-	[878] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "City of Ash II Conqueror",
-		["description"] = "Complete Veteran City of Ash II by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
-	},
-	[880] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Imperial City Prison Conqueror",
-		["description"] = "Defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, the Lord Warden's Council, and Lord Warden Dusk in Veteran Imperial City Prison.",
-	},
-	[882] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 50,
-		["name"] = "Emperor Assassin",
-		["description"] = "Defeat the Emperor of your Home Campaign in the Alliance War.",
-	},
-	[884] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Molavar Explorer",
-		["description"] = "Explore and clear Molavar.",
-	},
-	[885] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Rkundzelft Explorer",
-		["description"] = "Explore and clear Rkundzelft.",
-	},
-	[886] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Serpent's Nest Explorer",
-		["description"] = "Explore and clear Serpent's Nest.",
-	},
-	[887] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ilthag's Undertower Explorer",
-		["description"] = "Explore and clear Ilthag's Undertower.",
-	},
-	[888] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Ruins of Kardala Explorer",
-		["description"] = "Explore and clear the Ruins of Kardala.",
-	},
-	[889] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Loth'Na Caverns Explorer",
-		["description"] = "Explore and clear Loth'Na Caverns.",
-	},
-	[890] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Rkhardahrk Explorer",
-		["description"] = "Explore and clear Rkhardahrk.",
-	},
-	[891] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Haddock's Market Explorer",
-		["description"] = "Explore and clear Haddock's Market.",
-	},
-	[892] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Chiselshriek Mine Explorer",
-		["description"] = "Explore and clear the Chiselshriek Mine.",
-	},
-	[893] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Buried Sands Explorer",
-		["description"] = "Explore and clear the Buried Sands.",
-	},
-	[894] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Mtharnaz Explorer",
-		["description"] = "Explore and clear Mtharnaz.",
-	},
-	[895] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "The Howling Sepulchers Explorer",
-		["description"] = "Explore and clear the Howling Sepulchers.",
-	},
-	[896] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Balamath Explorer",
-		["description"] = "Explore and clear Balamath.",
-	},
-	[897] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Fearfangs Cavern Explorer",
-		["description"] = "Explore and clear Fearfangs Cavern.",
-	},
-	[898] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Exarch's Stronghold Explorer",
-		["description"] = "Explore and clear Exarch's Stronghold.",
-	},
-	[899] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Zalgaz's Den Explorer",
-		["description"] = "Explore and clear Zalgaz's Den.",
-	},
-	[900] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Tombs of the Na-Totambu Explorer",
-		["description"] = "Explore and clear the Tombs of the Na-Totambu.",
-	},
-	[901] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 10,
-		["name"] = "Hircine's Haunt Explorer",
-		["description"] = "Explore and clear Hircine's Haunt.",
-	},
-	[902] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Lower Craglorn Pathfinder",
-		["description"] = "Discover all of the striking locales in Lower Craglorn.",
-	},
-	[903] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Cyrodiil Recruit",
-		["description"] = "Reach level 10 and become eligible to enter Cyrodiil and join the Alliance War.",
-	},
-	[904] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 50,
-		["name"] = "Emperor Slayer",
-		["description"] = "Defeat an enemy Emperor from any campaign.",
-	},
-	[905] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Shada's Tear Curse-Breaker",
-		["description"] = "Defeat Shada and cleanse the waters of Shada's Tear.",
-	},
-	[906] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Tenacious Seeker",
-		["description"] = "Uncover the secrets hidden within the Seeker's Archive.",
-	},
-	[907] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Spellscar Defender",
-		["description"] = "Prevent a catastrophic explosion of magic from within the Spellscar.",
-	},
-	[908] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Exalted of Elinhir",
-		["description"] = "Defeat Yamanu-ko and end the strife in Elinhir.",
-	},
-	[909] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Celestial Investigator",
-		["description"] = "Discover why the Celestials have appeared in Craglorn.",
-	},
-	[912] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Upper Craglorn Skyshards",
-		["description"] = "Find all 6 Skyshards in Upper Craglorn.",
-	},
-	[916] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Craglorn Angler",
-		["description"] = "Catch all 12 rare fish in Craglorn.",
-	},
-	[2303] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Seasonal Slaying",
-		["description"] = "Defeat Aghaedh of the Solstice while making sure to defeat all of her Lurchers within their primary season in Veteran March of Sacrifices.",
-	},
-	[2302] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "The Great Indrik Hunt",
-		["description"] = "Complete all three Golden Indrik Hunts and gain their boons within March of Sacrifices.",
-	},
-	[2301] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Strangling Cowardice",
-		["description"] = "Defeat Vykosa the Ascendant after reading the Scroll of Glorious Battle, defeating 7 Stranglers, and never causing her pet wolves to cower in Veteran Moon Hunter Keep.",
-	},
-	[2300] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "On a Short Leash",
-		["description"] = "Defeat Vykosa the Ascendant without any party member taking damage from her restrained wolf pet in Veteran Moon Hunter Keep.",
-	},
-	[2299] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Book Smarts",
-		["description"] = "Defeat the Archivist without taking group member damage from Symbols of Xarxes in Moon Hunter Keep.",
-	},
-	[2298] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "A Hulking Ally",
-		["description"] = "Defeat Archivist Ernarde without killing his first Hulking Werewolf ally in Moon Hunter Keep.",
-	},
-	[2297] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Unending Rage",
-		["description"] = "Defeat Mylenne Moon-Caller without cleansing her Enrage ability in Veteran Moon Hunter Keep.",
-	},
-	[2305] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Mist Walker",
-		["description"] = "Defeat Tarcyr without the indrik teleporting any group members during its Shrouding Mist ability in Veteran March of Sacrifices.",
-	},
-	[2306] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Trick and Trap",
-		["description"] = "Lead Balorgh into Tharas' Trap 10 times in Veteran March of Sacrifices.",
-	},
-	[2314] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 15,
-		["name"] = "Sacking Skeletons",
-		["description"] = "Kill 100 Skeletons as a Skeleton during the Witches Festival.",
-	},
-	[935] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 50,
-		["name"] = "Emperor!",
-		["description"] = "Dominate the Alliance War battlefield and become Emperor of Tamriel. \n\nLong may you reign!",
-	},
-	[936] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Serpents and Secrets",
-		["description"] = "Dismantle the Serpent's forces and vanquish the Exalted Viper.",
-	},
-	[937] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Upper Craglorn Pathfinder",
-		["description"] = "Discover all of the striking locales in Upper Craglorn.",
-	},
-	[2315] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Gruesome Feast",
-		["description"] = "Eat each of the Witches Festival foods during the Witches Festival.",
-	},
-	[939] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Spiderkith Slayer",
-		["description"] = "Defeat 250 Spiderkith in Veteran Crypt of Hearts II.",
-	},
-	[940] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Flesh Atronach Slayer",
-		["description"] = "Defeat 50 Flesh Atronachs in Veteran Crypt of Hearts II.",
-	},
-	[941] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Crypt of Hearts II Assassin",
-		["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, Chamber Guardian, Ilambris Amalgam, and Mezeluth, before defeating Nerien'eth in Veteran Crypt of Hearts II within thirty minutes of starting the dungeon. Timer starts when the entrance gate opens.",
-	},
-	[942] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Deadly Crypt Survivor",
-		["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, Chamber Guardian, Ilambris Amalgam, and Mezeluth, before defeating Nerien'eth in Veteran Crypt of Hearts II without suffering a group member death.",
-	},
-	[943] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "A Rule Unquestioned",
-		["description"] = "Defeat a hidden threat to the Dominion in Auridon.",
-	},
-	[944] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Iconoclast",
-		["description"] = "You thwarted perilous Daedric schemes in Grahtwood.",
-	},
-	[945] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Spirit of the Bosmer",
-		["description"] = "Drive corruption from the heart of Valenwood in Greenshade.",
-	},
-	[946] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Matchmaker",
-		["description"] = "Restore the Silvenar and the Green Lady to their rightful place in Malabal Tor.",
-	},
-	[947] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Hallowed Moons",
-		["description"] = "Walk the Two Moons Path in Reaper's March.",
-	},
-	[948] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Hearts of Darkness",
-		["description"] = "Imprison the Brothers of Strife in Stonefalls.",
-	},
-	[949] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Plague Eater",
-		["description"] = "Avert the destruction of Deshaan.",
-	},
-	[950] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Egg and Root",
-		["description"] = "You defeated a great threat to the Hist in Shadowfen.",
-	},
-	[951] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Blood Feud",
-		["description"] = "Prevent a great threat to the Skald-King in Eastmarch.",
-	},
-	[952] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Shattered Remnants",
-		["description"] = "Defeat the Worm Cult in the Rift.",
-	},
-	[953] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Ritual Destruction",
-		["description"] = "Stop an insidious cultist plot in Glenumbra.",
-	},
-	[954] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Rude Awakening",
-		["description"] = "End the nightmares in Stormhaven.",
-	},
-	[955] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Curse Breaker",
-		["description"] = "End the blood-curse and restore order in Rivenspire.",
-	},
-	[956] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Consecrated Ground",
-		["description"] = "Put the dead to rest in Alik'r.",
-	},
-	[957] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Radiant Champion",
-		["description"] = "Defy the will of Molag Bal in Coldharbour.",
-	},
-	[958] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "End of Empire",
-		["description"] = "Drive the Imperial forces out of Bangkorai.",
-	},
-	[959] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Nightblade Slayer",
-		["description"] = "Kill 100 enemy Nightblades.",
-	},
-	[960] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Sorcerer Slayer",
-		["description"] = "Kill 100 enemy Sorcerers.",
-	},
-	[961] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Templar Slayer",
-		["description"] = "Kill 100 enemy Templars.",
-	},
-	[962] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Dragonknight Slayer",
-		["description"] = "Kill 100 enemy Dragonknights.",
-	},
-	[963] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Support the Fight",
-		["description"] = "Help capture a Resource (Farm, Lumber Mill, or Mine), and Keep in Cyrodiil.",
-	},
-	[964] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Glenumbra Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Glenumbra.",
-	},
-	[965] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Stormhaven Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Stormhaven.",
-	},
-	[966] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Rivenspire Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Rivenspire.",
-	},
-	[967] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Alik'r Desert Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in the Alik'r Desert.",
-	},
-	[968] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Bangkorai Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Bangkorai.",
-	},
-	[969] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Aldmeri Master Explorer",
-		["description"] = "Discover and clear all caves and locales throughout the Aldmeri Dominion Territory.",
-	},
-	[970] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Stonefalls Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Stonefalls.",
-	},
-	[971] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Deshaan Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Deshaan.",
-	},
-	[972] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Shadowfen Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Shadowfen.",
-	},
-	[973] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Eastmarch Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Eastmarch.",
-	},
-	[974] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "The Rift Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in The Rift.",
-	},
-	[975] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Bleakrock and Bal Foyen Explorer",
-		["description"] = "Discover all of the striking locales on Bleakrock and Bal Foyen.",
-	},
-	[976] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Auridon Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Auridon.",
-	},
-	[977] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Grahtwood Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Grahtwood.",
-	},
-	[978] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Greenshade Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Greenshade.",
-	},
-	[979] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Malabal Tor Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Malabal Tor.",
-	},
-	[980] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Reaper's March Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Reaper's March.",
-	},
-	[981] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Stros M'kai and Betnikh Explorer",
-		["description"] = "Discover all of the striking locales on Stros M'kai and Betnikh.",
-	},
-	[982] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Daggerfall Master Explorer",
-		["description"] = "Discover and clear all caves and locales throughout the Daggerfall Covenant Territory.",
-	},
-	[983] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Ebonheart Master Explorer",
-		["description"] = "Discover and clear all caves and locales throughout the Ebonheart Pact Territory.",
-	},
-	[984] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Coldharbour Master Explorer",
-		["description"] = "Discover and clear all six caves and striking locales in Coldharbour.",
-	},
-	[985] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Lower Craglorn Cave Delver",
-		["description"] = "Discover and clear all twelve explorable caves in Lower Craglorn.",
-	},
-	[986] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Lower Craglorn Master Explorer",
-		["description"] = "Discover and clear all caves and locales throughout Lower Craglorn.",
-	},
-	[987] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Potency",
-		["description"] = "Translate all of the Potency runes.",
-	},
-	[2316] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "The Plundered Masses",
-		["description"] = "Acquire one of each type of Plunder Skull during the Witches Festival.",
-	},
-	[989] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Tamriel Skyshard Hunter",
-		["description"] = "Find all the Skyshards located throughout Tamriel.",
-	},
-	[990] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Aetherian Archive Completed",
-		["description"] = "Defeat the Celestial Mage, freeing her from the Serpent's control.",
-	},
-	[991] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Hel Ra Citadel Completed",
-		["description"] = "Defeat the Celestial Warrior, freeing him from the Serpent's control.",
-	},
-	[992] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Dragonstar Arena Champion",
-		["description"] = "Conquer all challengers and earn the title of Dragonstar Arena Champion!",
-	},
-	[993] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Soul Shriven in Coldharbour",
-		["description"] = "Complete Main Quest Chapter 1.",
-	},
-	[994] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The Harborage",
-		["description"] = "Complete Main Quest Chapter 1.5.",
-	},
-	[995] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Daughter of Giants",
-		["description"] = "Complete Main Quest Chapter 2.",
-	},
-	[996] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Chasing Shadows",
-		["description"] = "Complete Main Quest Chapter 2.5.",
-	},
-	[997] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Castle of the Worm",
-		["description"] = "Complete Main Quest Chapter 3.",
-	},
-	[998] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The Tharn Speaks",
-		["description"] = "Complete Main Quest Chapter 3.5.",
-	},
-	[999] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The Halls of Torment",
-		["description"] = "Complete Main Quest Chapter 4.",
-	},
-	[1000] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The Valley of Blades",
-		["description"] = "Complete Main Quest Chapter 4.5.",
-	},
-	[1001] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The Shadow of Sancre Tor",
-		["description"] = "Complete Main Quest Chapter 5.",
-	},
-	[1002] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "Council of the Five Companions",
-		["description"] = "Complete Main Quest Chapter 5.5.",
-	},
-	[1003] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 10,
-		["name"] = "The God of Schemes",
-		["description"] = "Complete Main Quest Chapter 6.",
-	},
-	[1004] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Student of the Mages Guild",
-		["description"] = "Join the Mages Guild.",
-	},
-	[1005] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Associate of the Fighters Guild",
-		["description"] = "Join the Fighters Guild.",
-	},
-	[1006] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Recruit of the Undaunted",
-		["description"] = "Join the Undaunted.",
-	},
-	[1007] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Lycanthropy",
-		["description"] = "Become a Werewolf.",
-	},
-	[1008] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Vampirism",
-		["description"] = "Become a Vampire.",
-	},
-	[1009] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Lycanthropy Master",
-		["description"] = "Reach the max level of the Werewolf Skill Line.",
-	},
-	[1010] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Vampirism Master",
-		["description"] = "Reach the max level of the Vampire Skill Line.",
-	},
-	[1011] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Mages Guild Skill Master",
-		["description"] = "Reach the max level of the Mages Guild Skill Line.",
-	},
-	[1012] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Fighters Guild Skill Master",
-		["description"] = "Reach the max level of the Fighters Guild Skill Line.",
-	},
-	[1013] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Undaunted Skill Master",
-		["description"] = "Reach rank 5 in the Undaunted Skill Line.",
-	},
-	[1014] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Shatterer of Scales",
-		["description"] = "Defeat Exarch Arnoth and clear Skyreach Hold of the Scaled Court and its allies.",
-	},
-	[1015] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Vanquisher of Virmaril",
-		["description"] = "Defeat Virmaril the Betrayer and his undead legions within Skyreach Catacombs.",
-	},
-	[1016] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Warden of the Pinnacle",
-		["description"] = "Defeat Aetherion and restore the Nedic wards within Skyreach Pinnacle.",
-	},
-	[1017] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Apprentice Deconstructor",
-		["description"] = "Deconstruct 50 items.",
-	},
-	[1018] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Expert Deconstructor",
-		["description"] = "Deconstruct 100 items.",
-	},
-	[1019] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Master Deconstructor",
-		["description"] = "Deconstruct 1000 items.",
-	},
-	[1020] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Apprentice of Refinement",
-		["description"] = "Refine raw materials 30 times.",
-	},
-	[1021] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Expert of Refinement",
-		["description"] = "Refine raw materials 300 times.",
-	},
-	[1022] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Master of Refinement",
-		["description"] = "Refine raw materials 3000 times.",
-	},
-	[1023] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Learn a Trait",
-		["description"] = "Research a Trait for any weapon or armor type.",
-	},
-	[2322] =
-	{
-		["Category"] = "Prologues",
-		["Category_ID"] = 10,
-		["points"] = 10,
-		["name"] = "Concordia's Top Performer",
-		["description"] = "Help Cyrodilic Collections stop Margus Derius and prepare for expeditions to Murkmire.",
-	},
-	[1025] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Racial Style Learned",
-		["description"] = "Learn any Racial Style.",
-	},
-	[1026] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Recipe Card",
-		["description"] = "Learn 10 Provisioning Recipes.",
-	},
-	[1027] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Recipe Book",
-		["description"] = "Learn 50 Provisioning Recipes.",
-	},
-	[1028] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Recipe Compendium",
-		["description"] = "Learn 100 Provisioning Recipes.",
-	},
-	[2323] =
-	{
-		["Category"] = "Prologues",
-		["Category_ID"] = 10,
-		["points"] = 10,
-		["name"] = "Cyrodilic Collections Associate",
-		["description"] = "Complete a daily quest for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
-	},
-	[1030] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Alliance Style Master",
-		["description"] = "Learn all Alliance Racial Styles.",
-	},
-	[1031] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Alchemist",
-		["description"] = "Attain an Alchemy rank of 50.",
-	},
-	[1032] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Blacksmith",
-		["description"] = "Attain a Blacksmith rank of 50.",
-	},
-	[1033] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Clothier",
-		["description"] = "Attain a Clothier rank of 50.",
-	},
-	[1034] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Enchanter",
-		["description"] = "Attain an Enchanting rank of 50.",
-	},
-	[1035] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Provisioner",
-		["description"] = "Attain a Provisioning rank of 50.",
-	},
-	[1036] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Woodworker",
-		["description"] = "Attain a Woodworking rank of 50.",
-	},
-	[2324] =
-	{
-		["Category"] = "Prologues",
-		["Category_ID"] = 10,
-		["points"] = 15,
-		["name"] = "Cyrodilic Collections Agent",
-		["description"] = "Complete 40 daily quests for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
-	},
-	[2325] =
-	{
-		["Category"] = "Prologues",
-		["Category_ID"] = 10,
-		["points"] = 50,
-		["name"] = "Cyrodilic Collections Champion",
-		["description"] = "Complete 150 daily quests for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
-	},
-	[2257] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Chronologer",
-		["description"] = "Complete the \"A Breach Beyond the Crags\" Psijic Order quest in Summerset.",
-	},
-	[1040] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Legendary Blacksmith",
-		["description"] = "Improve Blacksmithing items to all available Qualities.",
-	},
-	[1041] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Trait Master",
-		["description"] = "Research every available Trait at least once.",
-	},
-	[1042] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Truly Legendary",
-		["description"] = "Have a character apply a Legendary Enchantment that they created, to a Legendary piece of gear that they created.",
-	},
-	[1043] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Rare Style Master",
-		["description"] = "Learn all Rare Racial Styles.",
-	},
-	[1044] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Legendary Woodworker",
-		["description"] = "Improve Woodworking items to all available Qualities.",
-	},
-	[1045] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Botanist",
-		["description"] = "Learn every trait for each of the Alchemy reagents listed below.",
-	},
-	[1046] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Chef",
-		["description"] = "Make a Renowned and an Epic Food or Drink.",
-	},
-	[2256] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Shadow-Walker",
-		["description"] = "Complete the \"Time in Doomcrag's Shadow\" Psijic Order quest in Summerset.",
-	},
-	[1048] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Legendary Clothier",
-		["description"] = "Improve Clothier items to all available Qualities.",
-	},
-	[1049] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Root Sunder Conqueror",
-		["description"] = "Defeat all of the champions in Root Sunder.",
-	},
-	[1050] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Rulanyil's Fall Conqueror",
-		["description"] = "Defeat all of the Champions in Rulanyil's Fall.",
-	},
-	[1051] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Crimson Cove Conqueror",
-		["description"] = "Defeat all of the champions in Crimson Cove.",
-	},
-	[1052] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "The Vile Manse Conqueror",
-		["description"] = "Defeat all of the champions in The Vile Manse.",
-	},
-	[1053] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Bad Man's Hallows Conqueror",
-		["description"] = "Defeat all of the champions in Bad Man's Hallows.",
-	},
-	[1054] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Bonesnap Ruins Conqueror",
-		["description"] = "Defeat all of the champions in Bonesnap Ruins.",
-	},
-	[1055] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Razak's Wheel Conqueror",
-		["description"] = "Defeat all of the champions in Razak's Wheel.",
-	},
-	[1056] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Village of the Lost Conqueror",
-		["description"] = "Defeat all of the champions in Village of the Lost.",
-	},
-	[1057] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Root Sunder Vanquisher",
-		["description"] = "Defeat three of the champions in Root Sunder.",
-	},
-	[1058] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Rulanyil's Fall Vanquisher",
-		["description"] = "Defeat three of the champions in Rulanyil's Fall.",
-	},
-	[1059] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Crimson Cove Vanquisher",
-		["description"] = "Defeat three of the champions in Crimson Cove.",
-	},
-	[1060] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "The Vile Manse Vanquisher",
-		["description"] = "Defeat three of the champions in The Vile Manse.",
-	},
-	[1061] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Bad Man's Hallows Vanquisher",
-		["description"] = "Defeat three of the champions in Bad Man's Hallows.",
-	},
-	[1062] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Bonesnap Ruins Vanquisher",
-		["description"] = "Defeat three of the champions in Bonesnap Ruins.",
-	},
-	[1063] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Razak's Wheel Vanquisher",
-		["description"] = "Defeat three of the champions in Razak's Wheel.",
-	},
-	[1064] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Village of the Lost Vanquisher",
-		["description"] = "Defeat three of the champions in Village of the Lost.",
-	},
-	[2255] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Staff Finder",
-		["description"] = "Complete \"The Towers' Remains\" Psijic Order quest in Summerset.",
-	},
-	[2254] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Mudslinger",
-		["description"] = "Complete the \"A Time for Mud and Mushrooms\" Psijic Order quest in Summerset.",
-	},
-	[2253] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Forester",
-		["description"] = "Complete the \"A Breach Amid the Trees\" Psijic Order quest in Summerset.",
-	},
-	[1068] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Ebonheart Pact Conqueror",
-		["description"] = "Defeat all of the Public Dungeon champions in the Ebonheart Pact.",
-	},
-	[1069] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Aldmeri Dominion Conqueror",
-		["description"] = "Defeat all of the Public Dungeon champions in the Aldmeri Dominion.",
-	},
-	[1070] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Daggerfall Covenant Conqueror",
-		["description"] = "Defeat all of the Public Dungeon champions in the Daggerfall Covenant.",
-	},
-	[1071] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Complete All Speed Challenges",
-		["description"] = "Complete the listed Speed Challenges.",
-	},
-	[1072] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Complete All Death Challenges",
-		["description"] = "Complete the listed Death Challenges.",
-	},
-	[1073] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Vanquisher of the Pact",
-		["description"] = "Defeat all the bosses throughout the Group Dungeons in the Ebonheart Pact.",
-	},
-	[1074] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Vanquisher of the Covenant",
-		["description"] = "Defeat all the bosses throughout the Group Dungeons in the Daggerfall Covenant.",
-	},
-	[1075] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Vanquisher of the Dominion",
-		["description"] = "Defeat all the bosses throughout the Group Dungeons in the Aldmeri Dominion.",
-	},
-	[2252] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Repairer",
-		["description"] = "Complete \"The Shattered Staff\" Psijic Order quest in Summerset.",
-	},
-	[2251] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Regulator",
-		["description"] = "Complete the \"Breaches of Frost and Fire\" Psijic Order quest in Summerset.",
-	},
-	[1078] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Weekly Trial Complete",
-		["description"] = "Complete a Weekly Trial.",
-	},
-	[1079] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Time Trial: Weekly",
-		["description"] = "Completed a Weekly Trial within 33 minutes.",
-	},
-	[1080] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Time Trial: Hel Ra Citadel",
-		["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
-	},
-	[1081] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Time Trial: Aetherian Archive",
-		["description"] = "Completed the Aetherian Archive within a time limit of 33 minutes.",
-	},
-	[1082] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Undaunted Rescuer",
-		["description"] = "Rescue all of the members of the failed Undaunted expedition to the Deadlands of Mehrunes Dagon.",
-	},
-	[2250] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Pursuer",
-		["description"] = "Complete the \"Breaches on the Bay\" Psijic Order quest in Summerset.",
-	},
-	[1084] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "The Blade's Edge",
-		["description"] = "In Veteran Crypt of Hearts II, allow four of Nerien'eth's Students to survive until he takes the Ebony Blade before defeating them all.",
-	},
-	[1085] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Renowned Provisioner",
-		["description"] = "Make a Renowned Food or Drink.",
-	},
-	[1086] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Epic Provisioner",
-		["description"] = "Make an Epic Food or Drink.",
-	},
-	[1087] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Blessed Thistle",
-		["description"] = "Learn all of the Traits for the Blessed Thistle Alchemy reagent.",
-	},
-	[1088] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Wormwood",
-		["description"] = "Learn all of the Traits for the Wormwood Alchemy reagent.",
-	},
-	[1089] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Lady's Smock",
-		["description"] = "Learn all of the Traits for the Lady's Smock Alchemy reagent.",
-	},
-	[1090] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Bugloss",
-		["description"] = "Learn all of the Traits for the Bugloss Alchemy reagent.",
-	},
-	[1091] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Dragonthorn",
-		["description"] = "Learn all of the Traits for the Dragonthorn Alchemy reagent.",
-	},
-	[1092] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Mountain Flower",
-		["description"] = "Learn all of the Traits for the Mountain Flower Alchemy reagent.",
-	},
-	[1093] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Columbine",
-		["description"] = "Learn all of the Traits for the Columbine Alchemy reagent.",
-	},
-	[1094] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Corn Flower",
-		["description"] = "Learn all the Traits for the Corn Flower Alchemy Plant.",
-	},
-	[1095] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Nirnroot",
-		["description"] = "Learn all of the Traits for the Nirnroot Alchemy reagent.",
-	},
-	[1096] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Water Hyacinth",
-		["description"] = "Learn all of the Traits for the Water Hyacinth Alchemy reagent.",
-	},
-	[1097] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Stinkhorn",
-		["description"] = "Learn all of the Traits for the Stinkhorn Alchemy reagent.",
-	},
-	[1098] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Blue Entoloma",
-		["description"] = "Learn all of the Traits for the Blue Entoloma Alchemy reagent.",
-	},
-	[1099] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Emetic Russula",
-		["description"] = "Learn all of the Traits for the Emetic Russula Alchemy reagent.",
-	},
-	[1100] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Violet Coprinus",
-		["description"] = "Learn all of the Traits for the Violet Coprinus Alchemy reagent.",
-	},
-	[1101] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Namira's Rot",
-		["description"] = "Learn all of the Traits for the Namira's Rot Alchemy reagent.",
-	},
-	[1102] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "White Cap",
-		["description"] = "Learn all of the Traits for the White Cap Alchemy reagent.",
-	},
-	[1103] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Luminous Russula",
-		["description"] = "Learn all of the Traits for the Luminous Russula Alchemy reagent.",
-	},
-	[1104] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Imp Stool",
-		["description"] = "Learn all of the Traits for the Imp Stool Alchemy reagent.",
-	},
-	[1105] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Mehrunes Dremora Slayer",
-		["description"] = "Defeat 300 Dremora in Veteran City of Ash II.",
-	},
-	[1106] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Flame Colossus Slayer",
-		["description"] = "Defeat 50 Flame Colossi in Veteran City of Ash II.",
-	},
-	[1107] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Deadly Deadlands Survivor",
-		["description"] = "Defeat Rukhan, Marruz, Akezel, Urata the Legion, Horvantud the Fire Maw, the Ash Titan, and the Daedra at the bridge to Valkyn Skoria, before defeating Valkyn Skoria himself in Veteran City of Ash II without suffering a group member death.",
-	},
-	[1108] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "City of Ash II Assassin",
-		["description"] = "Defeat Rukhan, Marruz, Akezel, Urata the Legion, Horvantud the Fire Maw, and the Ash Titan; reassemble the bridge; and defeat Valkyn Skoria himself in Veteran City of Ash II, all within thirty minutes. Timer starts when players enter the Inner Grove.",
-	},
-	[1109] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Sewer Subjugator",
-		["description"] = "Kill all the named champions lurking in the Imperial Sewers",
-	},
-	[2249] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Responder",
-		["description"] = "Complete \"The Psijics' Calling\" Psijic Order quest in Summerset.",
-	},
-	[1111] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 5,
-		["name"] = "Easy as Pie",
-		["description"] = "Explore the culinary traditions of the Dremora.",
-	},
-	[1112] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 15,
-		["name"] = "Craglorn Pilgrim",
-		["description"] = "Complete the Gray Passage pilgrimage within the alloted time limit.",
-	},
-	[1113] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 5,
-		["name"] = "Sanctum Ophidia: Feeding Pit",
-		["description"] = "Use the feed pile in Sanctum Ophidia and survive the ensuing battle.",
-	},
-	[1114] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "A World On Fire",
-		["description"] = "In Veteran City of Ash II, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
-	},
-	[1115] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Trials Damage Dealer",
-		["description"] = "Deal 1,000,000 points of damage in Trials.",
-	},
-	[1116] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Trials Healer",
-		["description"] = "Heal 1,000,000 points of damage to allies in Trials.",
-	},
-	[1117] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Trials Blocker",
-		["description"] = "Block 1,000,000 points of damage in Trials.",
-	},
-	[2248] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 15,
-		["name"] = "Midyear Horror",
-		["description"] = "Defeat all the Patrolling Horrors in the Imperial City during the Midyear Mayhem.",
-	},
-	[2247] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Scamp of Mayhem",
-		["description"] = "Kill a Trove Scamp in Imperial City Sewers during the Midyear Mayhem.",
-	},
-	[1120] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "White-Gold Tower Conqueror",
-		["description"] = "Defeat the Adjudicator, the Elite Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower.",
-	},
-	[1121] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 5,
-		["name"] = "Earthly Possessions",
-		["description"] = "Find Geldrion Treehelm's stash in Belkarth.",
-	},
-	[1122] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 5,
-		["name"] = "Blockbuster",
-		["description"] = "Free prisoners from their cell blocks in Imperial City Prison.",
-	},
-	[1123] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Sanctum Ophidia Completed",
-		["description"] = "Defeat the Celestial Serpent.",
-	},
-	[1124] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Time Trial: Sanctum Ophidia",
-		["description"] = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
-	},
-	[1125] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Learn the Nirnhoned Trait",
-		["description"] = "Research the Nirnhoned Trait for any weapon or armor type.",
-	},
-	[1126] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 50,
-		["name"] = "Upper Craglorn Master Explorer",
-		["description"] = "Discover and clear all caves and locales throughout Upper Craglorn.",
-	},
-	[1127] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Upper Craglorn Cave Delver",
-		["description"] = "Discover and clear all six explorable caves in Upper Craglorn.",
-	},
-	[1128] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "No Prison Can Hold Me",
-		["description"] = "Defeat all mini-boss and boss enemies in Veteran Imperial City Prison within forty five minutes of starting the dungeon. Timer starts when players enter The Bastion.",
-	},
-	[1129] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Life Sentence",
-		["description"] = "Defeat all mini-boss and boss enemies in Veteran Imperial City Prison without suffering a group member death.",
-	},
-	[1130] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Vigilant Watcher Slayer",
-		["description"] = "Defeat 50 Vigilant Watchers in Veteran Imperial City Prison.",
-	},
-	[1131] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Mindshriven Slayer",
-		["description"] = "Defeat 300 Mindshriven in Veteran Imperial City Prison.",
-	},
-	[1132] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Imperial City Challenger",
-		["description"] = "Complete the listed Challenges for veteran dungeons in Imperial City.",
-	},
-	[1133] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Out of Sight",
-		["description"] = "In Imperial City Prison, defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, and Lord Warden Dusk without any group member being noticed by the Vigilant Watchers.",
-	},
-	[2246] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Medal Mayhem",
-		["description"] = "Earn 25 Medals in Battlegrounds during the Midyear Mayhem.",
-	},
-	[2245] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Pelinal's Harvest",
-		["description"] = "Capture 15 farms, mines, or lumbermills during the Midyear Mayhem.",
-	},
-	[1136] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Hel Ra Citadel Difficult Mode",
-		["description"] = "Defeat the Celestial Warrior after enraging him through the destruction of his statue army.",
-	},
-	[1137] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Aetherian Archive Difficult Mode",
-		["description"] = "Defeat the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
-	},
-	[1138] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Sanctum Ophidia Difficult Mode",
-		["description"] = "Defeat the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
-	},
-	[1139] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Craglorn Trials Conqueror",
-		["description"] = "Complete Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
-	},
-	[1140] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Dragonstar Arena Conqueror",
-		["description"] = "Conquer all challengers on the increased difficulty version of Dragonstar Arena.",
-	},
-	[2244] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Snake Charmer",
-		["description"] = "Defeat Vsskalvor at an Abyssal Geyser.",
-	},
-	[1142] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Darklight Dancer",
-		["description"] = "Defeat the Lord Warden Dusk of Imperial City Prison while you and your group members avoid every Darklight Burst.",
-	},
-	[1143] =
-	{
-		["Category"] = "Quests",
-		["Category_ID"] = 7,
-		["points"] = 50,
-		["name"] = "Craglorn Completist",
-		["description"] = "Eliminate the threat of the Serpent and his Scaled Court throughout all of Craglorn.",
-	},
-	[1144] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Dwemer Style Master",
-		["description"] = "Collect and learn from every Dwemer Style book.",
-	},
-	[1145] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Certified Jack-of-All-Trades",
-		["description"] = "Become certified in Alchemy, Blacksmithing, Clothing, Enchanting, Provisioning, and Woodworking.",
-	},
-	[1146] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "First Writ",
-		["description"] = "Complete one Crafting Writ.",
-	},
-	[1147] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "I Must Complete My Contract",
-		["description"] = "Complete 25 Crafting Writs.",
-	},
-	[1148] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Signed the Manifest",
-		["description"] = "Complete 150 Crafting Writs.",
-	},
-	[1149] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Writ Upon the Sky",
-		["description"] = "Complete 250 Crafting Writs.",
-	},
-	[1150] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 5,
-		["name"] = "Pledge Taker",
-		["description"] = "Complete one Undaunted Pledge bestowed by Maj al-Ragath.",
-	},
-	[1151] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Returned Undaunted",
-		["description"] = "Complete 10 Undaunted Pledges bestowed by Maj al-Ragath.",
-	},
-	[1152] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 15,
-		["name"] = "Undaunted, Daily",
-		["description"] = "Complete 50 Undaunted Pledges bestowed by Maj al-Ragath.",
-	},
-	[1153] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Maj's Cohort",
-		["description"] = "Complete 100 Undaunted Pledges bestowed by Maj al-Ragath.",
-	},
-	[1154] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 5,
-		["name"] = "Prove Them Wrong",
-		["description"] = "Complete one Undaunted Pledge bestowed by Glirion the Redbeard.",
-	},
-	[1155] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "You Still Draw Breath",
-		["description"] = "Complete 10 Undaunted Pledges bestowed by Glirion the Redbeard.",
-	},
-	[1156] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 15,
-		["name"] = "Death Has Not Claimed You",
-		["description"] = "Complete 50 Undaunted Pledges bestowed by Glirion the Redbeard.",
-	},
-	[1157] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Glirion's Cohort",
-		["description"] = "Complete 100 Undaunted Pledges bestowed by Glirion the Redbeard.",
-	},
-	[1158] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Call of the Undaunted",
-		["description"] = "Reach level 45, attracting the attention of the Undaunted elite.",
-	},
-	[1159] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Deadlands Savvy",
-		["description"] = "Complete the following achievements associated with City of Ash II.",
-	},
-	[1160] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Imperial City Skyshard Hunter",
-		["description"] = "Find all 13 Skyshards in the Imperial City.",
-	},
-	[2243] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Tidal Grave",
-		["description"] = "Defeat Tidewrack at an Abyssal Geyser.",
-	},
-	[2242] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Radiant Riot",
-		["description"] = "Defeat Eejoba the Radiant at an Abyssal Geyser.",
-	},
-	[2241] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Deadly Allure",
-		["description"] = "Defeat Darkstorm the Alluring at an Abyssal Geyser.",
-	},
-	[2240] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Artaeum Master Angler",
-		["description"] = "Catch all 3 rare fish in Artaeum.",
-	},
-	[2238] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Valorous Combustion",
-		["description"] = "While battling Siroria's shade by itself, every Roaring Flare throughout the entire encounter must be split between at least 6 players in Cloudrest.",
-	},
-	[2237] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Shocking Instinct",
-		["description"] = "While battling Relequen's shade by itself, no player is hit by Voltaic Overload and no player spreads Voltaic Current to other players throughout the entire encounter in Cloudrest.",
-	},
-	[2236] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "The Mystic's Ice",
-		["description"] = "Have Galenwe's shade destroy 20 roaming Hoarfrost cyclones with his Spiked Ice attack in Cloudrest.",
-	},
-	[2235] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Yaghra Blockade",
-		["description"] = "While battling Z'Maja during a single Shadow World event, prevent all yaghra from entering the gateway and crossing into the mortal realm on 15 separate occasions in Cloudrest.",
-	},
-	[1169] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Imperial Sewers Pathfinder",
-		["description"] = "Discover all of the striking locales in the Imperial Sewers.",
-	},
-	[2234] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Core Coordination",
-		["description"] = "While battling Z'Maja, after activating a single Welkynar's Light, activate two more Welkynar's Lights and destroy three Malevolent Cores within the next 6 seconds in Veteran Cloudrest.",
-	},
-	[1171] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Imperial City Locksmith",
-		["description"] = "Assemble a key for each of the trophy chests found in the Imperial City.",
-	},
-	[1172] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Key Collector",
-		["description"] = "Assemble a total of 25 trophy door keys in the Imperial City.",
-	},
-	[2233] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Flares and Deadly Shadows",
-		["description"] = "While battling Z'Maja with Siroria's shade by her side, utilize a Roaring Flare attack and achieve 20 killing blows against Shadows of the Fallen in Veteran Cloudrest.",
-	},
-	[1174] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Horror of Horrors",
-		["description"] = "Defeat all the Patrolling Horrors in the Imperial City.",
-	},
-	[1175] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "The Sublime Protector",
-		["description"] = "Bring an end to Molag Bal's secret plot in the Imperial City.",
-	},
-	[1176] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 5,
-		["name"] = "Imperial City Recruit",
-		["description"] = "Kill 1 player while inside the Imperial City.",
-	},
-	[1177] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Imperial City Veteran",
-		["description"] = "Kill 50 players while inside the Imperial City.",
-	},
-	[1178] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Imperial City Warlord",
-		["description"] = "Kill 100 players while inside the Imperial City.",
-	},
-	[1179] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Big Score",
-		["description"] = "Gain 900 Tel Var Stones from a single gain.",
-	},
-	[2232] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Misery Loves Company",
-		["description"] = "While battling Z'Maja with all three of the Welkynars' shades by her side, a player with the Hoarfrost affliction and two other players with the Voltaic Overload affliction share the damage of the Roaring Flare eruption in Veteran Cloudrest.",
-	},
-	[1181] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Xivkyn Style Master",
-		["description"] = "Collect and learn from every Xivkyn Style book.",
-	},
-	[1182] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Trove Scamp Seeker",
-		["description"] = "Kill 1 Trove Scamp while adventuring in the Imperial Sewers.",
-	},
-	[2229] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Budding Style Master",
-		["description"] = "Collect and learn 25 full motifs.",
-	},
-	[1184] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Imperial Arena Champion",
-		["description"] = "Complete the Imperial City Arena by slaying the Ringmaster and her monstrous servants.",
-	},
-	[1185] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Protector of the Faith",
-		["description"] = "Complete the Imperial City Temple event by defeating the Daedric Titan, Uzuruz.",
-	},
-	[1186] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 5,
-		["name"] = "Imperial City Angler",
-		["description"] = "Catch all 12 rare fish in Imperial City.",
-	},
-	[2228] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Fledgling Style Master",
-		["description"] = "Collect and learn 10 full motifs.",
-	},
-	[2226] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Professions Master",
-		["description"] = "Earn the rank 50 achievements for all the crafting professions.",
-	},
-	[2225] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Certified Jewelry Crafter",
-		["description"] = "Become certified in Jewelry Crafting. Find this quest in the Summerset Isles.",
-	},
-	[1190] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Pocket Picker",
-		["description"] = "Successfully pickpocket any citizen of Tamriel.",
-	},
-	[1191] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Purse Snatcher",
-		["description"] = "Successfully pickpocket one hundred citizens of Tamriel.",
-	},
-	[1192] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Sneak Thief Extraordinaire",
-		["description"] = "Successfully pickpocket one thousand citizens of Tamriel.",
-	},
-	[1193] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Cut and Run",
-		["description"] = "Successfully escape a guard after choosing the \"Flee\" option in the Accost Dialogue Window.",
-	},
-	[1194] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Escape Artist",
-		["description"] = "Successfully escape the guards a total of one hundred times after choosing the \"Flee\" option in the Accost Dialogue Window.",
-	},
-	[1195] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Make Amends",
-		["description"] = "Make a one time transaction of 1,000 gold or greater for crimes committed against the citizens of Tamriel.",
-	},
-	[1196] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Felonious Recompense",
-		["description"] = "Pay a total of 100,000 gold to the Fence OR to the Tamriel Guards to clear your criminal record.",
-	},
-	[1197] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Ill-Gotten Gains",
-		["description"] = "Earn 1,000 gold by selling stolen goods to a Fence.",
-	},
-	[1198] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Safebox Pilferer",
-		["description"] = "Break into and loot the contents of a safebox.",
-	},
-	[1199] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Safebox Looter",
-		["description"] = "Break into and loot the contents of ten safeboxes.",
-	},
-	[1200] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Safebox Cracker",
-		["description"] = "Break into and loot the contents of one hundred safeboxes.",
-	},
-	[1201] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Illicit Entrepreneur",
-		["description"] = "Earn 100,000 gold by selling stolen goods to a Fence.",
-	},
-	[1202] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Black Market Mogul",
-		["description"] = "Earn 1,000,000 gold by selling stolen goods to a Fence.",
-	},
-	[1203] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Loot Cleaner",
-		["description"] = "Spend 100 gold to launder stolen items through a Fence.",
-	},
-	[1204] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Loot Sanitizer",
-		["description"] = "Spend 1,000 gold to launder stolen items through a Fence.",
-	},
-	[1205] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Illustrious Launderer",
-		["description"] = "Spend 10,000 gold to launder stolen items through a Fence.",
-	},
-	[1206] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Home Trespasser",
-		["description"] = "Successfully pick the lock on a locked door.",
-	},
-	[1207] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Sneaky Housebreaker",
-		["description"] = "Successfully pick the locks on fifty locked doors.",
-	},
-	[1208] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Master Burglar",
-		["description"] = "Successfully pick the locks on one hundred locked doors.",
-	},
-	[1209] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Disrobed Discipline",
-		["description"] = "Have an article of stolen clothing that you are wearing repossessed by a guard.",
-	},
-	[1210] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Indecent Exposure",
-		["description"] = "Have stolen clothing from all your armor slots repossessed at the same time by a guard.",
-	},
-	[1211] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Discerning Pilferer",
-		["description"] = "Steal an item of Fine quality.",
-	},
-	[1212] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Discriminating Plunderer",
-		["description"] = "Steal an item of Superior quality.",
-	},
-	[1213] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Grand Larcenist",
-		["description"] = "Steal an item of Epic quality.",
-	},
-	[1214] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Dawn of a Champion",
-		["description"] = "Spend your first Champion Point.",
-	},
-	[1215] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Robust Destiny",
-		["description"] = "Spend 100 Champion Points in the Warrior Constellation.",
-	},
-	[1216] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Vigorous Decree",
-		["description"] = "Spend 50 Champion Points in the Warrior Constellation.",
-	},
-	[1217] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Champion of Last Seed",
-		["description"] = "Spend 150 Champion Points in the Warrior Constellation.",
-	},
-	[1218] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Arcane Decree",
-		["description"] = "Spend 50 Champion Points in the Mage Constellation.",
-	},
-	[1219] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Mysterious Destiny",
-		["description"] = "Spend 100 Champion Points in the Mage Constellation.",
-	},
-	[1220] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Champion of Rain's Hand",
-		["description"] = "Spend 150 Champion Points in the Mage Constellation.",
-	},
-	[1221] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Stealthy Decree",
-		["description"] = "Spend 50 Champion Points in the Thief Constellation.",
-	},
-	[1222] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Devious Destiny",
-		["description"] = "Spend 100 Champion Points in the Thief Constellation.",
-	},
-	[1223] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Champion of Evening Star",
-		["description"] = "Spend 150 Champion Points in the Thief Constellation.",
-	},
-	[1224] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Murderer",
-		["description"] = "Kill a citizen of Tamriel.",
-	},
-	[1225] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Serial Killer",
-		["description"] = "Kill fifty citizens of Tamriel.",
-	},
-	[1226] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Mass Murderer",
-		["description"] = "Kill one hundred citizens of Tamriel.",
-	},
-	[1227] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Ground Beef",
-		["description"] = "Kill a livestock cow, bull, or ox.",
-	},
-	[1228] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Poultry Assassin",
-		["description"] = "Kill a livestock chicken or bantam guar.",
-	},
-	[1229] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Wicked Shepherd",
-		["description"] = "Kill a livestock goat or sheep.",
-	},
-	[1230] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Hog Killer",
-		["description"] = "Kill a livestock pig.",
-	},
-	[1231] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Guar Slayer",
-		["description"] = "Kill a livestock guar.",
-	},
-	[1232] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Butcher",
-		["description"] = "Kill a total of ten livestock animals.",
-	},
-	[1233] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Slaughterer",
-		["description"] = "Kill a total of one hundred livestock animals.",
-	},
-	[1234] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Livestock Mass Murderer",
-		["description"] = "Kill a total of five hundred livestock animals.",
-	},
-	[1235] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Rkindaleft Group Event",
-		["description"] = "Activate the ancient centurion in Rkindaleft.",
-	},
-	[1236] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Rkindaleft Conqueror",
-		["description"] = "Defeat all of Rkindaleft's champions.",
-	},
-	[1237] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Rkindaleft Vanquisher",
-		["description"] = "Defeat 3 champions in the Rkindaleft public dungeon.",
-	},
-	[1238] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Old Orsinium Group Event",
-		["description"] = "Resist the cultist onslaught in Old Orsinium.",
-	},
-	[1239] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Old Orsinium Conqueror",
-		["description"] = "Defeat all of the champions in Old Orsinium.",
-	},
-	[1240] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Old Orsinium Vanquisher",
-		["description"] = "Defeat 3 champions in the Old Orsinium public dungeon.",
-	},
-	[1241] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Newcomer",
-		["description"] = "Complete 3 quests in Wrothgar.",
-	},
-	[1242] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Explorer",
-		["description"] = "Complete 9 quests in Wrothgar.",
-	},
-	[1243] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Trailblazer",
-		["description"] = "Complete 15 quests in Wrothgar.",
-	},
-	[1244] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Pathfinder",
-		["description"] = "Complete 21 quests in Wrothgar.",
-	},
-	[1245] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Adventurer",
-		["description"] = "Complete 27 quests in Wrothgar.",
-	},
-	[2224] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Jewelry Trait Master",
-		["description"] = "Research every Jewelry Trait at least once, regardless of whether from a ring or necklace.",
-	},
-	[1247] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "One Last Brawl",
-		["description"] = "Grant 5 elderly Orc warriors a glorious death.",
-	},
-	[1248] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Hero of Wrothgar",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Wrothgar.",
-	},
-	[1249] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Defender of Orsinium",
-		["description"] = "Defeat 4 Wrothgar world bosses.",
-	},
-	[1250] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Relic Hunter",
-		["description"] = "Collect 16 relics for the House of Orsimer Glories museum.",
-	},
-	[2211] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Message in a Bottle",
-		["description"] = "Learn the fate of the Lost Sailor.",
-	},
-	[2210] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Psijic Sage",
-		["description"] = "Complete \"The Towers' Fall\" Psijic Order quest in Summerset.",
-	},
-	[2209] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Summerset Grand Adventurer",
-		["description"] = "Complete 33 quests in Summerset.",
-	},
-	[2208] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "What Must Be Done",
-		["description"] = "Complete the \"The Crystal Tower\" quest.",
-	},
-	[2207] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Enemy of My Enemy",
-		["description"] = "Complete the \"A Necessary Alliance\" quest.",
-	},
-	[2206] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Unreliable Narrator",
-		["description"] = "Complete the \"Lost in Translation\" quest.",
-	},
-	[1257] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Dungeon Slayer",
-		["description"] = "Complete both Wrothgar public dungeon boss achievements.",
-	},
-	[2204] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Resolute Guardian",
-		["description"] = "Complete the \"The Tower Sentinels\" quest.",
-	},
-	[2203] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Mind Games",
-		["description"] = "Complete the \"Buried Memories\" quest.",
-	},
-	[1260] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Kingmaker",
-		["description"] = "Complete Wrothgar's main quests.",
-	},
-	[1261] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Xivkyn Assassin",
-		["description"] = "Kill 1 member of the Coldharbour Elite Guard.",
-	},
-	[1262] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Xivkyn's Scourge",
-		["description"] = "Kill 50 members of the Coldharbour Elite Guard.",
-	},
-	[1263] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Xivkyn's Bane",
-		["description"] = "Kill 100 members of the Coldharbour Elite Guard.",
-	},
-	[2202] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Precious Pearl",
-		["description"] = "Complete the \"A Pearl of Great Price\" quest.",
-	},
-	[2201] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "For the Queen",
-		["description"] = "Complete the \"The Queen's Decree\" quest.",
-	},
-	[2200] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Divine Executioner",
-		["description"] = "Complete thirty Divine Prosecution Assignments from Justiciar Farowel.",
-	},
-	[1267] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Alliance Gladiator",
-		["description"] = "Kill 100 players while inside the Imperial Arena.",
-	},
-	[1268] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Cunning Scamp Seeker",
-		["description"] = "Kill 1 Cunning Scamp while adventuring in the Imperial Sewers.",
-	},
-	[1269] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Trove Scamp Slayer",
-		["description"] = "Kill 50 Trove Scamps while adventuring in the Imperial Sewers.",
-	},
-	[1270] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Trove Scamp Exterminator",
-		["description"] = "Kill 100 Trove Scamps while adventuring in the Imperial Sewers.",
-	},
-	[1271] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Cunning Scamp Slayer",
-		["description"] = "Kill 50 Cunning Scamps while adventuring in the Imperial Sewers.",
-	},
-	[1272] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Cunning Scamp Exterminator",
-		["description"] = "Kill 100 Cunning Scamps while adventuring in the Imperial Sewers.",
-	},
-	[1273] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Imperial Lightbringer",
-		["description"] = "Complete the Barathrum Centrata event deep beneath the Imperial City.",
-	},
-	[2199] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Divine Judge",
-		["description"] = "Complete ten Divine Prosecution Assignments from Justiciar Farowel.",
-	},
-	[1275] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "First to the Top",
-		["description"] = "Defeat the Adjudicator, the Empress Regent's Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower within 30 minutes of starting the dungeon. Timer starts when you enter Green Emperor Way.",
-	},
-	[1276] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "To Spite a Tharn",
-		["description"] = "Defeat the Adjudicator, the Empress Regent's Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower without experiencing the death of a group member.",
-	},
-	[1277] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Horn Breaker",
-		["description"] = "Defeat 100 Xivkyn in Veteran White-Gold Tower.",
-	},
-	[1278] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Daedroth Dropper",
-		["description"] = "Defeat 75 Daedroth in Veteran White-Gold Tower.",
-	},
-	[1279] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Ire of the Storm",
-		["description"] = "In Veteran White-Gold Tower, complete the ritual listed in the Obelisk Tome, then defeat Molag Kena.",
-	},
-	[1280] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Entry Denied",
-		["description"] = "In Veteran White-Gold Tower, destroy all portals to prevent the arrival of the Planar Inhibitor's reinforcements.",
-	},
-	[1281] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 5,
-		["name"] = "Imperial Transgressions",
-		["description"] = "Locate and interact with all of the speaking stones in the White-Gold Tower.",
-	},
-	[2198] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Divine Prosecutor",
-		["description"] = "Complete your first Divine Prosecution Assignment from Justiciar Farowel",
-	},
-	[2197] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Divine Magistrate",
-		["description"] = "Complete thirty Divine Prosecution Assignments from Justiciar Tanorian.",
-	},
-	[2196] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Divine Advocate",
-		["description"] = "Complete ten Divine Prosecution Assignments from Justiciar Tanorian.",
-	},
-	[1285] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill Old Snagara",
-		["description"] = "Kill Old Snagara the echatere in the Poacher's Encampment.",
-	},
-	[1286] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill Zandadunoz the Reborn",
-		["description"] = "Defeat Zandadunoz the Reborn at the Unfinished Dolmen.",
-	},
-	[1287] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill King-Chief Edu",
-		["description"] = "Kill the Riekr regent King-Chief Edu at the King-Chief's Throne.",
-	},
-	[1288] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill Corintthac the Abomination",
-		["description"] = "Kill the Winterborn Briarheart Warrior, Corintthac the Abomination, at the Accursed Nursery.",
-	},
-	[1289] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill Mad Urkazbur the Ogre",
-		["description"] = "Kill Mad Urkazbur at the Mad-Ogre's Altar.",
-	},
-	[1290] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Kill Nyzchaleft",
-		["description"] = "Kill Nyzchaleft the Dwarven Centurion at Nyzchaleft Falls.",
-	},
-	[2195] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Divine Solicitor",
-		["description"] = "Complete your first Divine Prosecution Assignment from Justiciar Tanorian.",
-	},
-	[2194] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "The Good of the Many",
-		["description"] = "Stop the conspiracy sowing chaos through Summerset, protect the Crystal Tower, and forge a new alliance to restore the Isles to order.",
-	},
-	[2193] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Savior of Summerset",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Savior of Summerset.",
-	},
-	[2189] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Scalecaller Style Master",
-		["description"] = "Learn every chapter in the Scalecaller style book, occasionally found as rewards for completing the Scalecaller Peak dungeon.",
-	},
-	[2188] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Dremora Style Master",
-		["description"] = "Collect and learn every chapter of the Dremora style book found in Dremora Plunder Skulls, while participating in the Witches Festival.",
-	},
-	[2187] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Sapiarch Style Master",
-		["description"] = "Learn every chapter in the Sapiarch style book, occasionally found as rewards for completing daily quests for the Divine Prosecution.",
-	},
-	[1297] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Nikolvara's Kennel Explorer",
-		["description"] = "Explore and clear Nikolvara's Kennel.",
-	},
-	[1298] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Coldperch Cavern Explorer",
-		["description"] = "Explore and clear Coldperch Cavern.",
-	},
-	[1299] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Argent Mine Explorer",
-		["description"] = "Explore and clear Argent Mine.",
-	},
-	[1300] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Thukhozod's Sanctum Explorer",
-		["description"] = "Explore and clear Thukhozod's Sanctum.",
-	},
-	[1301] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Watcher's Hold Explorer",
-		["description"] = "Explore and clear Watcher's Hold.",
-	},
-	[1302] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Zthenganaz Explorer",
-		["description"] = "Explore and clear Zthenganaz.",
-	},
-	[1303] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Lord Warden's Retaliation",
-		["description"] = "In Veteran Imperial City Prison, destroy the Warden's Tome, then defeat Lord Warden Dusk.",
-	},
-	[1304] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Maelstrom Arena Champion",
-		["description"] = "Conquer all challengers and earn the title of Maelstrom Arena Champion.",
-	},
-	[1305] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Maelstrom Arena Conqueror",
-		["description"] = "Conquer all challengers in Veteran Maelstrom Arena.",
-	},
-	[1306] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Out of the Frying Pan",
-		["description"] = "In Veteran White-Gold Tower, become completely engulfed in flame by the Planar Inhibitor's Heat Stroke attack before it completes its Daedric Catastrophe attack. Then stay alive until the Planar Inhibitor is defeated.",
-	},
-	[1307] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Imperial City Dungeon Locksmith",
-		["description"] = "Assemble a key for each of the trophy chests found in the White-Gold Tower and Imperial City Prison group dungeons.",
-	},
-	[2186] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Psijic Style Master",
-		["description"] = "Learn every chapter in the Psijic style book, found in Summerset.",
-	},
-	[2185] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Churug's Chagrin",
-		["description"] = "Defeat Churug of the Abyss at an Abyssal Geyser.",
-	},
-	[2184] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Declawed",
-		["description"] = "Defeat Ruella Many-Claws at an Abyssal Geyser.",
-	},
-	[1311] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Tel Var Collector",
-		["description"] = "Gain 1,000 Tel Var Stones over the lifetime of your character.",
-	},
-	[1312] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 15,
-		["name"] = "Tel Var Baron",
-		["description"] = "Gain 10,000 Tel Var Stones over the lifetime of your character.",
-	},
-	[1313] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 50,
-		["name"] = "Tel Var Master",
-		["description"] = "Gain 100,000 Tel Var Stones over the lifetime of your character.",
-	},
-	[1314] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 5,
-		["name"] = "Sudden Spoils",
-		["description"] = "Gain 300 Tel Var Stones from a single gain.",
-	},
-	[1315] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Windfall Profits",
-		["description"] = "Gain 600 Tel Var Stones from a single gain.",
-	},
-	[1316] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Orsinium Patron",
-		["description"] = "Make 15 donations to the Orsinium City Solicitor.",
-	},
-	[1317] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Ruby Potency",
-		["description"] = "Translate all of the Champion 150 and Champion 160 runestones.",
-	},
-	[1318] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Akaviri Style Master",
-		["description"] = "Collect and learn from every Akaviri Style book.",
-	},
-	[1319] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Glass Style Master",
-		["description"] = "Collect and learn from every Glass Style book.",
-	},
-	[1320] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Skyshard Hunter",
-		["description"] = "Find all 17 Skyshards in Wrothgar.",
-	},
-	[1321] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Master Delver",
-		["description"] = "Discover and clear all 6 explorable caves in Wrothgar.",
-	},
-	[1322] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Master Seeker",
-		["description"] = "Discover all the striking locales in Wrothgar.",
-	},
-	[1323] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in Wrothgar.",
-	},
-	[1324] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Wrothgar Master Relic Hunter",
-		["description"] = "Collect all 20 relics for the House of Orsimer Glories museum.",
-	},
-	[1325] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Orc King's Councilor",
-		["description"] = "Complete quest \"A King-Sized Problem\" in Wrothgar.",
-	},
-	[1326] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Orc King's Marshal",
-		["description"] = "Complete quest \"The Anger of a King\" in Wrothgar.",
-	},
-	[1327] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Orc King's Conqueror",
-		["description"] = "Complete quest \"Blood on a King's Hands\" in Wrothgar.",
-	},
-	[1328] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Grand Adventurer",
-		["description"] = "Complete 40 quests in Wrothgar.",
-	},
-	[2183] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Wizard's Duel",
-		["description"] = "Win 5 PvP duels in the Colosseum of the Old Ways on Artaeum.",
-	},
-	[1330] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Maelstrom Arena: Perfect Run",
-		["description"] = "Complete Veteran Maelstrom Arena in a single attempt, without dying or leaving the arena.",
-	},
-	[1331] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Wrothgar Cliff Jumper",
-		["description"] = "Leap from the cliff west of Frostbreak Ridge and survive.",
-	},
-	[2182] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Sunhold Vanquisher",
-		["description"] = "Defeat three of the champions in Sunhold.",
-	},
-	[1333] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "One at a Time",
-		["description"] = "Complete 1 group boss daily quest in Wrothgar.",
-	},
-	[1334] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Lucky Seven",
-		["description"] = "Complete 7 group boss daily quests in Wrothgar.",
-	},
-	[1335] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Monster Hunter of the Month",
-		["description"] = "Complete 30 group boss daily quests in Wrothgar.",
-	},
-	[1336] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "A Delve a Day",
-		["description"] = "Complete 1 Delve Daily in Wrothgar.",
-	},
-	[1337] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Wrothgar Delve Weekly",
-		["description"] = "Complete 7 Delve Dailies in Wrothgar.",
-	},
-	[1338] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 15,
-		["name"] = "Wrothgar Delve Monthly",
-		["description"] = "Complete 30 Delve Dailies in Wrothgar.",
-	},
-	[1339] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 10,
-		["name"] = "Hooking Wrothgar's Biggest Catch",
-		["description"] = "Catch the rare Crab-Slaughter-Crane fish found in Wrothgar.",
-	},
-	[1340] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "Wrothgar Master Angler",
-		["description"] = "Catch all 12 rare fish in Wrothgar.",
-	},
-	[1341] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Ancient Orc Style Master",
-		["description"] = "Collect and learn every chapter in the Ancient Orc style book found in Wrothgar.",
-	},
-	[1342] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Gold Coast Skyshard Hunter",
-		["description"] = "Find all 6 skyshards in the Gold Coast.",
-	},
-	[1343] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Maw of Lorkhaj Completed",
-		["description"] = "Drive the dro-m'Athra back to the void and close the Maw of Lorkhaj in Normal Mode.",
-	},
-	[1344] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Maw of Lorkhaj Difficult Mode",
-		["description"] = "Defeat Rakkhat after empowering him at the lunar shrines in Veteran Maw of Lorkhaj.",
-	},
-	[1345] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "Imperial City Prison Vanquisher",
-		["description"] = "Defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, the Lord Warden's Council, and Lord Warden Dusk in the Imperial City Prison.",
-	},
-	[1346] =
-	{
-		["Category"] = "Imperial City",
-		["Category_ID"] = 21,
-		["points"] = 10,
-		["name"] = "White-Gold Tower Vanquisher",
-		["description"] = "Defeat the Adjudicator, the Elite Guard, the Planar Inhibitor, and Molag Kena in White-Gold Tower.",
-	},
-	[1347] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Hew's Bane Skyshard Hunter",
-		["description"] = "Find all 6 skyshards in Hew's Bane.",
-	},
-	[1348] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Mercenary Style Master",
-		["description"] = "Collect and learn from every Mercenary Style book.",
-	},
-	[1349] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Breaking and Entering",
-		["description"] = "Trespass in seven locked locations throughout Abah's Landing.",
-	},
-	[1350] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "The Lady in the Cistern",
-		["description"] = "Learn every rumor about the statue in the Thieves Den.",
-	},
-	[1351] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Hew's Bane Master Angler",
-		["description"] = "Catch all 12 rare fish in Hew's Bane.",
-	},
-	[1352] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Deepest Shallows",
-		["description"] = "Kill Syvarra of the Deep at Ko Estaran.",
-	},
-	[1353] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Cutting the Keel",
-		["description"] = "Kill Captain Virindi Slave-Taker at Thrall Cove.",
-	},
-	[1354] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Defender of Hew's Bane",
-		["description"] = "Defeat both Hew's Bane world bosses.",
-	},
-	[1355] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Bahraha's Gloom Explorer",
-		["description"] = "Explore and clear Bahraha's Gloom.",
-	},
-	[1356] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Shark's Teeth Grotto Explorer",
-		["description"] = "Explore and clear Shark's Teeth Grotto.",
-	},
-	[1357] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Hew's Bane Cave Delver",
-		["description"] = "Discover and clear both explorable caves in Hew's Bane.",
-	},
-	[1358] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Hew's Bane Pathfinder",
-		["description"] = "Discover all the striking locales in Hew's Bane.",
-	},
-	[1359] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Hew's Bane Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in Hew's Bane.",
-	},
-	[1360] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Always Travel Separately",
-		["description"] = "Complete quest \"Cleaning House\" in Hew's Bane.",
-	},
-	[1361] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Never, Ever Steal From the Guild",
-		["description"] = "Complete quest \"A Flawless Plan\" in Hew's Bane.",
-	},
-	[1362] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Wedding Crashers",
-		["description"] = "Complete quest \"Forever Hold Your Peace\" in Hew's Bane.",
-	},
-	[1363] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Broken Wheel",
-		["description"] = "Complete quest \"Prison Break\" in Hew's Bane.",
-	},
-	[1364] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Hew's Bane Adventurer",
-		["description"] = "Complete 12 story quests in Hew's Bane.",
-	},
-	[1365] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Hero of Hew's Bane",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Hew's Bane.",
-	},
-	[1366] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Hew's Bane Grand Adventurer",
-		["description"] = "Complete 16 story quests in Hew's Bane.",
-	},
-	[1367] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Time Trial: Maw of Lorkhaj",
-		["description"] = "Complete Veteran Maw of Lorkhaj within a time limit of 40 minutes. Your trial begins when you cross the threshold of the Temple of Seven Riddles.",
-	},
-	[1368] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Maw of Lorkhaj Conqueror",
-		["description"] = "Defeat Rakkhat, Fang of Lorkhaj and his legions of dro-m'Athra in Veteran Maw of Lorkhaj.",
-	},
-	[1369] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Maw of Lorkhaj: Unchained Ambush",
-		["description"] = "Use both chain switches within ten seconds in Veteran Maw of Lorkhaj, then defeat the dro-m'Athra invaders.",
-	},
-	[1370] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Iron Wheel Infiltration",
-		["description"] = "Complete quest \"The Long Game\" in Hew's Bane.",
-	},
-	[1371] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Welcome to the Thieves Guild",
-		["description"] = "Join the Thieves Guild by completing quest \"Partners in Crime\" in Hew's Bane.",
-	},
-	[1372] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Fledgling Filcher",
-		["description"] = "Complete 1 heist from the Heist Board for the Thieves Guild.",
-	},
-	[1373] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Seasoned Sneak-Thief",
-		["description"] = "Complete 7 heists from the Heist Board for the Thieves Guild.",
-	},
-	[1374] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Professional Pilferer",
-		["description"] = "Complete 15 heists from the Heist Board for the Thieves Guild.",
-	},
-	[1375] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "A Life Deferred",
-		["description"] = "Complete quest \"His Greatest Treasure\" in Hew's Bane.",
-	},
-	[1376] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Seeds Untilled",
-		["description"] = "Complete quest \"That Which Was Lost\" in Hew's Bane.",
-	},
-	[1377] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "What Price, Freedom?",
-		["description"] = "Complete quest \"Everyone Has A Price\" in Hew's Bane.",
-	},
-	[1378] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Loose Ends",
-		["description"] = "Complete quest \"The One That Got Away\" in Hew's Bane.",
-	},
-	[1379] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Despoil the Dominion",
-		["description"] = "Steal the treasures on Kari's Hit List from every territory of the Aldmeri Dominion and place them in the Thieves Den.",
-	},
-	[1380] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Con the Covenant",
-		["description"] = "Steal the treasures on Kari's Hit List from every territory of the Daggerfall Covenant and place them in the Thieves Den.",
-	},
-	[1381] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Purloin the Pact",
-		["description"] = "Steal the treasures on Kari's Hit List from every territory of the Ebonheart Pact and place them in the Thieves Den.",
-	},
-	[1382] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Loot the Landing",
-		["description"] = "Steal the treasure on Kari's Hit List from Abah's Landing and place it in the Thieves Den.",
-	},
-	[1383] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "A Cutpurse Above",
-		["description"] = "Steal every treasure from Kari's Hit List and place them all within the Thieves Den.",
-	},
-	[2170] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Wolfhunter Delver",
-		["description"] = "Complete Veteran Moon Hunter Keep and Veteran March of Sacrifices.",
-	},
-	[1385] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Maw of Lorkhaj: Shadow Slayer",
-		["description"] = "Defeat 25 Void Callers in the Maw of Lorkhaj.",
-	},
-	[1386] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Maw of Lorkhaj: Stainless Souls",
-		["description"] = "Defeat Rakkhat without anyone dying while afflicted by the Breath of Lorkhaj.",
-	},
-	[2168] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Apex Predator",
-		["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh after desecrating the Moon Hunter Pack's Banner in Veteran March of Sacrifices within 30 minutes without suffering a group member death.",
-	},
-	[1388] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Maw of Lorkhaj: Two-Moons Dance",
-		["description"] = "In Veteran Maw of Lorkhaj, force Rakkhat into his final phase within two lunar cycles, then defeat him.",
-	},
-	[1389] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Maw of Lorkhaj: Void Avoided",
-		["description"] = "Defeat Rakkhat in Veteran Maw of Lorkhaj, with a maximum of two players ever being afflicted by the Breath of Lorkhaj.",
-	},
-	[1390] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Maw of Lorkhaj: Fang Focused",
-		["description"] = "Defeat Rakkhat in Veteran Maw of Lorkhaj, with at least three dro-m'Athra Dreadstalkers still alive.",
-	},
-	[1391] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Maw of Lorkhaj: Moons' Champion",
-		["description"] = "Complete all achievements related to defeating Rakkhat, Fang of Lorkhaj in Veteran Maw of Lorkhaj.",
-	},
-	[1392] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Maw of Lorkhaj: Spotless Triumph",
-		["description"] = "Complete Veteran Maw of Lorkhaj without suffering a group member death.",
-	},
-	[1393] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 5,
-		["name"] = "A Gift from Orsinium",
-		["description"] = "Come visit the Orcs' newly rebuilt capital city: Orsinium!",
-	},
-	[1394] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Five Finger Discount",
-		["description"] = "Successfully pick pockets at each of the four most popular shops in Abah's Landing.",
-	},
-	[1395] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Finders Keepers",
-		["description"] = "Discover and loot 1 Thieves Trove.",
-	},
-	[1396] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "An Eye For Details",
-		["description"] = "Discover and loot 5 Thieves Troves.",
-	},
-	[1397] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Leave No Stash Behind",
-		["description"] = "Discover and loot 15 Thieves Troves.",
-	},
-	[1398] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Fresh Footpad",
-		["description"] = "Complete 1 job from the Tip Board for the Thieves Guild.",
-	},
-	[1399] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Practiced Prowler",
-		["description"] = "Complete 10 jobs from the Tip Board for the Thieves Guild.",
-	},
-	[1400] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Sophisticated Shadowfoot",
-		["description"] = "Complete 30 jobs from the Tip Board for the Thieves Guild.",
-	},
-	[1401] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Honor Among Thieves",
-		["description"] = "Assist each member of the Thieves Guild in resolving personal matters.",
-	},
-	[1402] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "And Then They Were Gone",
-		["description"] = "Evade justice with the help of the \"Timely Escape\" Thieves Guild skill, as well as a friendly footpad.",
-	},
-	[1403] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Master of Shadows",
-		["description"] = "Complete 1 heist for the Thieves Guild without being detected.",
-	},
-	[1404] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Deep Pockets",
-		["description"] = "Receive the highest possible reward in 5 heists for the Thieves Guild.",
-	},
-	[1405] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Eagle's Nest-Egg",
-		["description"] = "At each Outlaws Refuge within the Aldmeri Dominion, receive 4000 gold for fencing items.",
-	},
-	[1406] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Dragon's Hoard",
-		["description"] = "At each Outlaws Refuge within the Ebonheart Pact, receive 4000 gold for fencing items.",
-	},
-	[1407] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 15,
-		["name"] = "Lion's Golden Pride",
-		["description"] = "At each Outlaws Refuge within the Daggerfall Covenant, receive 4000 gold for fencing items.",
-	},
-	[1408] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 10,
-		["name"] = "Merchant Lord's Coffers",
-		["description"] = "Receive 4000 gold for fencing items at the Thieves Den in Abah's Landing.",
-	},
-	[1409] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Magnanimous Magnate",
-		["description"] = "At each Outlaws Refuge within every Alliance territory, as well as the Thieves Den, receive 4000 gold for fencing items.",
-	},
-	[1410] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Litany of Blood",
-		["description"] = "Execute all targets listed in the Litany of Blood and collect your reward.",
-	},
-	[1411] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Trinimac Style Master",
-		["description"] = "Collect and learn every chapter in the Trinimac style book found in Wrothgar.",
-	},
-	[1412] =
-	{
-		["Category"] = "Orsinium",
-		["Category_ID"] = 20,
-		["points"] = 50,
-		["name"] = "Malacath Style Master",
-		["description"] = "Collect and learn every chapter in the Malacath style book found in Wrothgar.",
-	},
-	[1413] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 5,
-		["name"] = "Spoils of Abah's Landing",
-		["description"] = "Travel to the notorious free port of Abah's Landing!",
-	},
-	[1414] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Ebonheart Pact Style Master",
-		["description"] = "Collect and learn every chapter in the Ebonheart Pact style book found in Cyrodiil and Imperial City.",
-	},
-	[1415] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Aldmeri Dominion Style Master",
-		["description"] = "Collect and learn every chapter in the Aldmeri Dominion style book found in Cyrodiil and Imperial City.",
-	},
-	[1416] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Daggerfall Covenant Style Master",
-		["description"] = "Collect and learn every chapter in the Daggerfall Covenant style book found in Cyrodiil and Imperial City.",
-	},
-	[1417] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Outlaw Style Master",
-		["description"] = "Collect and learn every chapter in the Outlaw style book found in Hew's Bane.",
-	},
-	[1418] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Soul Shriven Style Master",
-		["description"] = "Collect and learn the Soul Shriven style book found by completing Cadwell's Silver.",
-	},
-	[1419] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Defeat Limenauruus",
-		["description"] = "Defeat Limenauruus the possessed minotaur and the shadow spirits at Tribune's Folly.",
-	},
-	[1420] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Conquer the Kvatch Arena",
-		["description"] = "Enter the Kvatch Arena and defeat all challengers.",
-	},
-	[1421] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Gold Coast Tourist",
-		["description"] = "Visit the Gold Coast and take in the local scenery.",
-	},
-	[1422] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Abah's Watch Style Master",
-		["description"] = "Collect and learn every chapter in the Abah's Watch style book found in Hew's Bane.",
-	},
-	[1423] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Thieves Guild Style Master",
-		["description"] = "Collect and learn every chapter in the Thieves Guild style book found in Hew's Bane.",
-	},
-	[1424] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Assassins League Style Master",
-		["description"] = "Collect and learn every chapter in the Assassins League style book found in the Gold Coast.",
-	},
-	[1425] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Defender of the Gold Coast",
-		["description"] = "Defeat both world bosses in the Gold Coast.",
-	},
-	[1426] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Hrota Cave Explorer",
-		["description"] = "Explore and clear Hrota Cave.",
-	},
-	[1427] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Garlas Agea Explorer",
-		["description"] = "Explore and clear Garlas Agea.",
-	},
-	[1428] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Gold Coast Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in the Gold Coast.",
-	},
-	[1429] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Gold Coast Cave Delver",
-		["description"] = "Discover and clear both explorable caves in the Gold Coast.",
-	},
-	[1430] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Gold Coast Pathfinder",
-		["description"] = "Discover all the striking locales in the Gold Coast.",
-	},
-	[1431] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Gold Coast Master Angler",
-		["description"] = "Catch all 12 rare fish in the Gold Coast.",
-	},
-	[1432] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Gold Coast Adventurer",
-		["description"] = "Complete 14 story quests in the Gold Coast.",
-	},
-	[1433] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Gold Coast Grand Adventurer",
-		["description"] = "Complete 17 story quests in the Gold Coast.",
-	},
-	[1434] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Bane of the Gold Coast",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Bane of the Gold Coast.",
-	},
-	[1435] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "First Blood",
-		["description"] = "Join the Dark Brotherhood and complete the \"Voices in the Dark\" quest.",
-	},
-	[1436] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Dark Initiate",
-		["description"] = "Complete the \"Signed in Blood\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1437] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "New-blade",
-		["description"] = "Complete the \"Welcome Home\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1438] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Sermonizer Subduer",
-		["description"] = "Complete the \"A Lesson in Silence\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1439] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Brethren Benefactor",
-		["description"] = "Complete the \"Questions of Faith\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1440] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Assassin",
-		["description"] = "Complete the \"A Special Request\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1441] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Dark Discovery",
-		["description"] = "Complete the \"Dark Revelations\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1442] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Dark Investigator",
-		["description"] = "Complete the \"A Ghost from the Past\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1443] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Wrath of Sithis",
-		["description"] = "Complete \"The Wrath of Sithis\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1444] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Silencer",
-		["description"] = "Complete the \"Filling the Void\" Dark Brotherhood quest in the Gold Coast.",
-	},
-	[1445] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "First Sacrament",
-		["description"] = "Complete your first Black Sacrament contract, as the Speaker commanded.",
-	},
-	[1446] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Seventh Sacrament",
-		["description"] = "Complete 7 Black Sacrament contracts, as the Speaker commanded.",
-	},
-	[1447] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Fifteenth Sacrament",
-		["description"] = "Complete 15 Black Sacrament contracts, as the Speaker commanded.",
-	},
-	[1448] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Perfect Sacrament",
-		["description"] = "Complete 5 Black Sacrament contracts at the highest possible reward level.",
-	},
-	[1449] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Hidden Sacrament",
-		["description"] = "Complete a Black Sacrament contract without being detected.",
-	},
-	[1450] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Blackest Sacrament",
-		["description"] = "Assassinate every target named by a Black Sacrament contract when commanded to by the Speaker.",
-	},
-	[1451] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "First Contract",
-		["description"] = "Complete your first murder contract from the \"Marked for Death\" tome.",
-	},
-	[1452] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Tenth Contract",
-		["description"] = "Complete 10 murder contracts from the \"Marked for Death\" tome.",
-	},
-	[1453] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Thirtieth Contract",
-		["description"] = "Complete 30 murder contracts from the \"Marked for Death\" tome.",
-	},
-	[1454] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Lonely Sentinel",
-		["description"] = "Closely observe the silent vigil of the Ayleid Sentinel at Beldaburo in the Gold Coast.",
-	},
-	[1455] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Kvatch Murder Spree",
-		["description"] = "Murder 20 innocents in the Gold Coast city of Kvatch.",
-	},
-	[1456] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "Anvil Murder Spree",
-		["description"] = "Murder 20 innocents in the Gold Coast city of Anvil.",
-	},
-	[1457] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Blood Tour",
-		["description"] = "In the capital city of each alliance, murder an innocent with the Blade of Woe.",
-	},
-	[1458] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "Gold Coast Connections",
-		["description"] = "Aid each of the notable figures recently arrived on the Gold Coast.",
-	},
-	[1459] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 5,
-		["name"] = "First Cut",
-		["description"] = "Murder your first innocent with the Blade of Woe.",
-	},
-	[1460] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 10,
-		["name"] = "Twenty-Fifth Cut",
-		["description"] = "Murder 25 innocents with the Blade of Woe.",
-	},
-	[1461] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 15,
-		["name"] = "One-Hundredth Cut",
-		["description"] = "Murder 100 innocents with the Blade of Woe.",
-	},
-	[1462] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Sanctum Ophidia Conqueror",
-		["description"] = "Defeat the Celestial Serpent in Veteran Sanctum Ophidia.",
-	},
-	[1463] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Flawless Sacrament",
-		["description"] = "Complete each achievement associated with the Speaker's Black Sacrament contracts.",
-	},
-	[1464] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Toxicologist",
-		["description"] = "Learn every trait for each of the Alchemy reagents listed below.",
-	},
-	[1465] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Torchbug Thorax",
-		["description"] = "Learn all the traits for the Torchbug Thorax Alchemy reagent.",
-	},
-	[1466] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Beetle Scuttle",
-		["description"] = "Learn all the traits for the Beetle Scuttle Alchemy reagent.",
-	},
-	[1467] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Spider Egg",
-		["description"] = "Learn all the traits for the Spider Egg Alchemy reagent.",
-	},
-	[1468] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Butterfly Wing",
-		["description"] = "Learn all the traits for the Butterfly Wing Alchemy reagent.",
-	},
-	[1469] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Fleshfly Larva",
-		["description"] = "Learn all the traits for the Fleshfly Larva Alchemy reagent.",
-	},
-	[1470] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Scrib Jelly",
-		["description"] = "Learn all the traits for the Scrib Jelly Alchemy reagent.",
-	},
-	[1471] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Nightshade",
-		["description"] = "Learn all the traits for the Nightshade Alchemy reagent.",
-	},
-	[1472] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Mudcrab Chitin",
-		["description"] = "Learn all the traits for the Mudcrab Chitin Alchemy reagent.",
-	},
-	[2167] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "March of Sacrifices Challenger",
-		["description"] = "Complete the listed achievements for Veteran March of Sacrifices.",
-	},
-	[1474] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Hel Ra Citadel Conqueror",
-		["description"] = "Defeat the Celestial Warrior in Veteran Hel Ra Citadel.",
-	},
-	[2166] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Survival of the Fittest",
-		["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices without suffering a group member death.",
-	},
-	[2165] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Pure Instinct",
-		["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices in under 30 minutes. Timer starts when players jump or teleport into Bloodscent Pass.",
-	},
-	[2164] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Hircine's Champion",
-		["description"] = "Defeat Balorgh after desecrating the Moon Hunter Pack's banner and driving him into a murderous rage in Veteran March of Sacrifices.",
-	},
-	[2163] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "March of Sacrifices Conqueror",
-		["description"] = "Defeat the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices.",
-	},
-	[2162] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "March of Sacrifices Vanquisher",
-		["description"] = "Defeat the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in March of Sacrifices.",
-	},
-	[2161] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Veteran Wispmother Slayer",
-		["description"] = "Defeat 50 Wispmothers in Veteran March of Sacrifices.",
-	},
-	[2160] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Veteran Bloodscent Slayer",
-		["description"] = "Defeat 300 Bloodscent Guardians, Bloodscent Archers, Bloodscent Assassins, and Bloodscent Thundermauls in Veteran March of Sacrifices.",
-	},
-	[2159] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Pure Lunacy",
-		["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant after activating Hard Mode in Veteran Moon Hunter Keep in under 30 minutes without suffering a group member death.",
-	},
-	[2158] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Moon Hunter Keep Challenger",
-		["description"] = "Complete the listed achievements for Veteran Moon Hunter Keep.",
-	},
-	[2157] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Wolfhunter Explorer",
-		["description"] = "Enter either Moon Hunter Keep or March of Sacrifices for the first time.",
-	},
-	[2156] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Head of the Pack",
-		["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep without suffering a group member death.",
-	},
-	[2155] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "Running with the Pack",
-		["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep in under 30 minutes. Timer starts when players engage the first group of Moon Hunter enemies.",
-	},
-	[2154] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 50,
-		["name"] = "The Alpha Predator",
-		["description"] = "Defeat Vykosa the Ascendant after reading the Scroll of Glorious Battle in Veteran Moon Hunter Keep.",
-	},
-	[2153] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Moon Hunter Keep Conqueror",
-		["description"] = "Defeat Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep.",
-	},
-	[2152] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Moon Hunter Keep Vanquisher",
-		["description"] = "Defeat Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Moon Hunter Keep.",
-	},
-	[2151] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Veteran Hulking Werewolf Slayer",
-		["description"] = "Kill 50 Hulking Werewolves in Veteran Moon Hunter Keep.",
-	},
-	[2150] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Veteran Dire Wolf Slayer",
-		["description"] = "Defeat 200 Dire Wolves or Vicious Dire Wolves in Veteran Moon Hunter Keep.",
-	},
-	[2140] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Cloudrest Savior",
-		["description"] = "Complete the listed achievements for Cloudrest.",
-	},
-	[2139] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "The Path to Alaxon",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe in the same battle without suffering a group member death within 15 minutes of entering the Cloudrest Aerie in Veteran Cloudrest.",
-	},
-	[2138] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Surviving the Shadows",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe without suffering a group member death in Veteran Cloudrest.",
-	},
-	[2137] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Speedy Sload Slayer",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe within a time limit of 15 minutes in Veteran Cloudrest. Timer starts when players enter the Cloudrest Aerie.",
-	},
-	[2136] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Cloudrest Vanquisher",
-		["description"] = "Defeat Z'Maja, Siroria, Relequen, and Galenwe in the same fight in Veteran Cloudrest.",
-	},
-	[2129] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 9 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Voidstone, Void Cloth, Shadowhide, or Nightwood equipment.",
-	},
-	[2128] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 8 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Quicksilver, Silverweave, Superb Hide, or Mahogany equipment.",
-	},
-	[2127] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 7 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Galatite, Ironthread, Iron Hide, or Ash equipment.",
-	},
-	[2126] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Rank 6 Deconstruction Analyst",
-		["description"] = "Deconstruct a piece of Calcinium, Kresh, Topgrain, or Birch equipment.",
-	},
-	[2114] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Prisoner On The Loose",
-		["description"] = "Use the \"Prisoner's Chains\" Style in an Outfit.",
-	},
-	[2113] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Fully Styled",
-		["description"] = "Fill any 8 slots of an Outfit using the Outfit System.",
-	},
-	[1503] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Aetherian Archive Conqueror",
-		["description"] = "Defeat the Celestial Mage in Veteran Aetherian Archive.",
-	},
-	[1504] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Ruins of Mazzatun Vanquisher",
-		["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in the Ruins of Mazzatun.",
-	},
-	[1505] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Ruins of Mazzatun Conqueror",
-		["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun.",
-	},
-	[1506] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Tree-Minder's Mania",
-		["description"] = "In Veteran Ruins of Mazzatun, defeat Tree-Minder Na-Kesh after enraging her by destroying her alchemical notes on Amber Plasm.",
-	},
-	[1507] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Ruination",
-		["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun within 30 minutes of starting the dungeon. Timer starts on passing through the first archway.",
-	},
-	[1508] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Unbowed",
-		["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without suffering a group member death.",
-	},
-	[1509] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Sludge-Slinger Slayer",
-		["description"] = "Defeat 50 Xit-Xaht Sludge-Slingers in Veteran Ruins of Mazzatun.",
-	},
-	[1510] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Xit-Xaht Slayer",
-		["description"] = "Defeat 600 members of the Xit-Xaht tribe in Veteran Ruins of Mazzatun.",
-	},
-	[1511] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Ruins of Mazzatun Challenger",
-		["description"] = "Complete the listed achievements for Veteran Ruins of Mazzatun.",
-	},
-	[1512] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Mazzatun Massacre",
-		["description"] = "Defeat Tree-Minder Na-Kesh after first eliminating all other enemies in Ruins of Mazzatun.",
-	},
-	[1513] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Savior of the Su-Zahleel",
-		["description"] = "Rescue all six of the Su-Zahleel Elders from the Ritual Chamber in Veteran Ruins of Mazzatun.",
-	},
-	[1514] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Sapped Sludge Slingers",
-		["description"] = "Complete Ruins of Mazzatun without ever allowing a Sludge Slinger to empower one of its allies with Amber Plasm.",
-	},
-	[1515] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Haj Mota Matador",
-		["description"] = "Defeat the Mighty Chudan in Veteran Ruins of Mazzatun without any party members being hit by Bog Rush.",
-	},
-	[1516] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Obedience Training",
-		["description"] = "Defeat Xal-Nur the Slaver in Veteran Ruins of Mazzatun without unleashing any Wamasu to assist you.",
-	},
-	[1517] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Clean Freak",
-		["description"] = "Defeat Xal-Nur the Slaver in Veteran Ruins of Mazzatun with only one party member cleansing the Swamp Spice. Other party members may still touch the Swamp Spice.",
-	},
-	[1518] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Blind Luck",
-		["description"] = "Defeat Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without any party members using the Reveal synergy to identify the real Avatar of the Hist.",
-	},
-	[1519] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Sticky Situation Savvy",
-		["description"] = "Defeat Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without any party members being struck by Blistering Amber.",
-	},
-	[1520] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 5,
-		["name"] = "Shadows of the Hist Explorer",
-		["description"] = "Enter either the Ruins of Mazzatun or the Cradle of Shadows for the first time.",
-	},
-	[2112] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Outfitter",
-		["description"] = "Change the look of a piece of equipment using the Outfit System 100 times.",
-	},
-	[1522] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Cradle of Shadows Vanquisher",
-		["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in the Cradle of Shadows.",
-	},
-	[1523] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Cradle of Shadows Conqueror",
-		["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows.",
-	},
-	[1524] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Velidreth's Vengeance",
-		["description"] = "Defeat Velidreth in Veteran Cradle of Shadows, after first enraging her by defiling her statue of Mephala.",
-	},
-	[1525] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Exterminator",
-		["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows within 30 minutes of starting the dungeon. Timer starts on entering the initial caverns.",
-	},
-	[1526] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Beacon in the Night",
-		["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows without suffering a group member death.",
-	},
-	[1527] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Iconoclast",
-		["description"] = "Destroy 50 statues of Velidreth's Devotion in Veteran Cradle of Shadows.",
-	},
-	[1528] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Spider Cult Slayer",
-		["description"] = "Defeat 600 members of the Silken Ring or their Spiderkith allies in Veteran Cradle of Shadows.",
-	},
-	[1529] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Cradle of Shadows Challenger",
-		["description"] = "Complete the listed achievements for Veteran Cradle of Shadows.",
-	},
-	[1530] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Fear No Darkness",
-		["description"] = "Pass through the spider caves in Veteran Cradle of Shadows without lighting more than two braziers.",
-	},
-	[1531] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Shadowplay",
-		["description"] = "Defeat Khephidaen the Spiderkith in Veteran Cradle of Shadows without relighting any extinguished braziers.",
-	},
-	[1532] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Divided He Fell",
-		["description"] = "Defeat Dranos Velador in Veteran Cradle of Shadows without absorbing any orbs.",
-	},
-	[1533] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Web Walker",
-		["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without any party members dying in the catacombs.",
-	},
-	[1534] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Embrace the Shadow",
-		["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without using the Atronach's Light synergy.",
-	},
-	[1535] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Nothing to See Here",
-		["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without any party members being caught by her Shadow Sense.",
-	},
-	[1536] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 10,
-		["name"] = "Venomous Evasion",
-		["description"] = "Defeat Velidreth in Cradle of Shadows without any party members being hit by venom sacs.",
-	},
-	[2109] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Outfitter",
-		["description"] = "Change the look of a part of an Outfit using the Outfit System.",
-	},
-	[1538] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Shadows of the Hist Delver",
-		["description"] = "Complete Veteran Cradle of Shadows and Veteran Ruins of Mazzatun.",
-	},
-	[1539] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Pumpkin Pairs Well With Guts",
-		["description"] = "Drink the Witchmother's Brew during the Witches Festival.",
-	},
-	[1540] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Plunder Skull Enthusiast",
-		["description"] = "Earn your first Plunder Skull.",
-	},
-	[1541] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Plunder Skull Aficionado",
-		["description"] = "Earn 50 Plunder Skulls.",
-	},
-	[1542] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 15,
-		["name"] = "Plunder Skull Fanatic",
-		["description"] = "Earn 100 Plunder Skulls.",
-	},
-	[1543] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Reaper's Harvest",
-		["description"] = "Complete the Witchmother's Bargain quest.",
-	},
-	[2104] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 5,
-		["name"] = "Dragon Bones Explorer",
-		["description"] = "Enter either Fang Lair or Scalecaller Peak for the first time.",
-	},
-	[1545] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Happy Work For Hollowjack",
-		["description"] = "Collect and learn every chapter of the Hollowjack style book found during the Witches Festival.",
-	},
-	[1546] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "An Unsparing Harvest",
-		["description"] = "Complete the listed achievements for the Witches Festival.",
-	},
-	[2103] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Dragon Bones Delver",
-		["description"] = "Complete Veteran Fang Lair and Veteran Scalecaller Peak.",
-	},
-	[1548] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Mud Ball Miscreant",
-		["description"] = "During the Mud Ball Merriment, share the joy of mud balls with each Alliance leader.",
-	},
-	[1549] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Banished Cells I Conqueror",
-		["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I.",
-	},
-	[1550] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Bonebreaker I",
-		["description"] = "Defeat 350 Skeletons in Veteran Banished Cells I.",
-	},
-	[1551] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Daedra Slayer I",
-		["description"] = "Defeat 100 Daedra in Veteran Banished Cells I.",
-	},
-	[1552] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Banished Cells I Assassin",
-		["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I, all within twenty minutes. Timer starts when a group member enters the first hallway.",
-	},
-	[1553] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Banished Cells I Survivor",
-		["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I, without suffering a group member death.",
-	},
-	[1554] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Soul Splitter",
-		["description"] = "Defeat High Kinlord Rilis in Veteran Banished Cells I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1555] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Banished Cells II Vanquisher",
-		["description"] = "Defeat Keeper Areldur, the Maw of the Infernal, Keeper Voranil, Keeper Imiril, Sister Sihna and Sister Vera, and High Kinlord Rilis in Banished Cells II.",
-	},
-	[1556] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Fungal Grotto I Conqueror",
-		["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw, and Kra'gh the Dreugh King in Veteran Fungal Grotto I.",
-	},
-	[1557] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Goblin Slayer",
-		["description"] = "Defeat 450 Goblins in Veteran Fungal Grotto I.",
-	},
-	[1558] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Dreugh Slayer",
-		["description"] = "Defeat 50 Dreugh in Veteran Fungal Grotto I.",
-	},
-	[1559] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fungal Grotto I Assassin",
-		["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw and Kra'gh the Dreugh King in Veteran Fungal Grotto I, all within 15 minutes. Timer starts when any player enters the tunnel after the first group of Goblins.",
-	},
-	[1560] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fungal Grotto I Survivor",
-		["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw and Kra'gh the Dreugh King in Veteran Fungal Grotto I, without suffering a group member death.",
-	},
-	[1561] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Catch of the Day",
-		["description"] = "Defeat the Dreugh King in Veteran Fungal Grotto I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1562] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Fungal Grotto II Vanquisher",
-		["description"] = "Defeat Mephala's Fang, Gamyne Bandu, Ciirenas the Shepherd, the Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Fungal Grotto II.",
-	},
-	[1563] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fungal Grotto II Survivor",
-		["description"] = "Defeat Mephala's Fang, Gamyne Bandu, Ciirenas the Sheperd, Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Veteran Fungal Grotto II, without suffering a group member death.",
-	},
-	[1564] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Banished Cells II Survivor",
-		["description"] = "Defeat Keepers Imiril, Areldur, and Voranil, as well as the Maw of the Infernal and the Sisters Sihna and Vera, before defeating High Kinlord Rilis in Veteran Banished Cells II, without suffering a group member death.",
-	},
-	[1565] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Spindleclutch I Conqueror",
-		["description"] = "Defeat Spindlekin, the Swarm Mother, Cerise the Widow-Maker, Big Rabbu, and the Whisperer in Veteran Spindleclutch I.",
-	},
-	[1566] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Spider Slayer",
-		["description"] = "Defeat 600 Spiders in Veteran Spindleclutch I.",
-	},
-	[1567] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Corrupted Slayer",
-		["description"] = "Defeat 350 Corrupted in Veteran Spindleclutch I.",
-	},
-	[1568] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Spindleclutch I Assassin",
-		["description"] = "Defeat the Swarm Mother and the Whisperer in Veteran Spindleclutch I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of spiders.",
-	},
-	[1569] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Spindleclutch I Survivor",
-		["description"] = "Defeat the Swarm Mother and the Whisperer in Veteran Spindleclutch I, without suffering a group member death.",
-	},
-	[1570] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Quiet at Last",
-		["description"] = "Defeat the Whisperer in Veteran Spindleclutch I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1571] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Spindleclutch II Vanquisher",
-		["description"] = "Defeat Mad Martine, Blood Spawn, Praxin Douare, the Flesh Atronach Trio, Urvan Veleth, and Vorenor Winterbourne in Spindleclutch II.",
-	},
-	[1572] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Spindleclutch II Survivor",
-		["description"] = "Defeat Mad Mortine, Blood Spawn, Praxin Douare, the Flesh Atronach trio, Urvan Veleth, and Vorenor Winterbourne in Veteran Spindleclutch II, without suffering a group member death.",
-	},
-	[1573] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Elden Hollow I Conqueror",
-		["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I.",
-	},
-	[1574] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Darkfern Orc Slayer",
-		["description"] = "Defeat 400 Darkfern Orcs in Veteran Elden Hollow I.",
-	},
-	[1575] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Alit Slayer",
-		["description"] = "Defeat 100 Alit in Veteran Elden Hollow I.",
-	},
-	[1576] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Elden Hollow I Assassin",
-		["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thalmor.",
-	},
-	[1577] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Elden Hollow I Survivor",
-		["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I, without suffering a group member death.",
-	},
-	[1578] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Canonreeve Reaver",
-		["description"] = "Defeat Canonreeve Oraneth in Veteran Elden Hollow I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1579] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Elden Hollow II Vanquisher",
-		["description"] = "Defeat Dubroze the Infest, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame in Elden Hollow II.",
-	},
-	[1580] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Elden Hollow II Survivor",
-		["description"] = "Defeat Dubroze the Infestor, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame, without suffering a group member death.",
-	},
-	[1581] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Darkshade Caverns I Conqueror",
-		["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I.",
-	},
-	[1582] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Pit Rat Slayer",
-		["description"] = "Defeat 175 Pit Rat Thugs in Veteran Darkshade Caverns I.",
-	},
-	[1583] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Kwama Slayer",
-		["description"] = "Defeat 300 Kwama in Veteran Darkshade Caverns I.",
-	},
-	[1584] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Darkshade Caverns I Assassin",
-		["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I within twenty minutes of starting the dungeon. Timer starts when a group member descends into the caverns.",
-	},
-	[1585] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Darkshade Caverns I Survivor",
-		["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I, without suffering a group member death.",
-	},
-	[1586] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Well Out of Warranty",
-		["description"] = "Defeat the Sentinel of Rkugamz in Veteran Darkshade Caverns I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1587] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Darkshade Caverns II Vanquisher",
-		["description"] = "Defeat the Fallen Foreman, Transmuted Hive Lord, Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Darkshade Caverns II.",
-	},
-	[1588] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Darkshade Caverns II Survivor",
-		["description"] = "Defeat the Fallen Foreman, Transmuted Hive Lord, Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Veteran Darkshade Caverns II, without suffering a group member death.",
-	},
-	[1589] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Wayrest Sewers I Conqueror",
-		["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varain Pellingare, and Allene Pellingare in Veteran Wayrest Sewers I.",
-	},
-	[1590] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Skeever Slayer",
-		["description"] = "Defeat 800 Skeevers in Veteran Wayrest Sewers I.",
-	},
-	[1591] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Mercenary Slayer",
-		["description"] = "Defeat 500 Pellingare Mercenaries in Veteran Wayrest Sewers I.",
-	},
-	[1592] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Wayrest Sewers I Assassin",
-		["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varaine Pellingare, and Allene Pellingare in Veteran Wayrest Sewers I, all within fifteen minutes of starting the dungeon. Timer starts when any player enters the first tunnel to the right of the entrance chamber.",
-	},
-	[1593] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Wayrest Sewers I Survivor",
-		["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varaine Pellingare, and Allene in Veteran Wayrest Sewers I, without suffering a group member death.",
-	},
-	[1594] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Down the Gutter",
-		["description"] = "Defeat Allene Pellingare in Veteran Wayrest Sewers I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1595] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Wayrest Sewers II Vanquisher",
-		["description"] = "Defeat Malubeth the Scourger, Skull Reaper, Uulgarg the Risen, Garron the Returned, the Forgotten One, and Varaine and Allene Pellingare in Wayrest Sewers II.",
-	},
-	[1596] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Wayrest Sewers II Survivor",
-		["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in Veteran Wayrest Sewers II, without suffering a group member death.",
-	},
-	[1597] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "City of Ash I Conqueror",
-		["description"] = "Defeat the Infernal Guardian, Golor the Banekin Handler, the Warden of the Shrine, the Dark Ember, Rothariel Flameheart, and Razor Master Erthas in Veteran City of Ash I.",
-	},
-	[1598] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Deadlands Banekin Slayer",
-		["description"] = "Defeat 550 Banekin in Veteran City of Ash I.",
-	},
-	[1599] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Flame Atronach Slayer",
-		["description"] = "Defeat 60 Flame Atronach in Veteran City of Ash I.",
-	},
-	[1600] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "City of Ash I Assassin",
-		["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in Veteran City of Ash I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
-	},
-	[1601] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "City of Ash I Survivor",
-		["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in Veteran City of Ash I, without suffering a group member death.",
-	},
-	[1602] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Fire Brigade",
-		["description"] = "Defeat Razor Master Erthas in Veteran City of Ash I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1603] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "City of Ash II Vanquisher",
-		["description"] = "Defeat Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria in City of Ash II.",
-	},
-	[1604] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Arx Corinium Conqueror",
-		["description"] = "Complete Veteran Arx Corinium by defeating the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen.",
-	},
-	[1605] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Lamia Slayer",
-		["description"] = "Defeat 400 Lamias in Veteran Arx Corinium.",
-	},
-	[1606] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Snake Slayer",
-		["description"] = "Defeat 175 Giant Snakes in Veteran Arx Corinium.",
-	},
-	[1607] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Arx Corinium Assassin",
-		["description"] = "Defeat the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen in Veteran Arx Corinium within twenty minutes of starting the dungeon. Timer starts when players engage the first group of nesting serpents.",
-	},
-	[1608] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Arx Corinium Survivor",
-		["description"] = "Defeat the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen in Veteran Arx Corinium, without suffering a group member death.",
-	},
-	[1609] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Snake Skinner",
-		["description"] = "Defeat Sellistrix the Lamia Queen in Veteran Arx Corinium, after invoking the Scroll of Glorious Battle.",
-	},
-	[1610] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Crypt of Hearts I Conqueror",
-		["description"] = "Defeat the Mage Master, Archmaster Siniel, Death's Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I.",
-	},
-	[1611] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Crypt Zombie Slayer",
-		["description"] = "Defeat 400 Zombies in Veteran Crypt of Hearts I.",
-	},
-	[1612] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Crypt Skeleton Slayer",
-		["description"] = "Defeat 400 Skeletons in Veteran Crypt of Hearts I.",
-	},
-	[1613] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Crypt of Hearts I Assassin",
-		["description"] = "Defeat the Mage Master, Archmaster Siniel, Death's Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of undead.",
-	},
-	[1614] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Crypt of Hearts I Survivor",
-		["description"] = "Defeat the Mage Master, Archmaster Siniel, Death's Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I, without suffering a group member death.",
-	},
-	[1615] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "A Crypt for Two",
-		["description"] = "Defeat the Ilambris Twins in Veteran Crypt of Hearts I, after invoking the Scroll of Glorious Battle.",
-	},
-	[1616] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "Crypt of Hearts II Vanquisher",
-		["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, the Chamber Guardian, the Brothers Ilambris and the Ilambris Amalgam, Mezeluth, and Nerien'eth in Crypt of Hearts II.",
-	},
-	[1617] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Tempest Island Conqueror",
-		["description"] = "Complete Veteran Tempest Island by defeating Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir.",
-	},
-	[1618] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Tempest Lamia Slayer",
-		["description"] = "Defeat 600 Lamias in Veteran Tempest Island.",
-	},
-	[1619] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Sea Viper Slayer",
-		["description"] = "Defeat 550 Sea Vipers in Veteran Tempest Island.",
-	},
-	[1620] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Tempest Island Assassin",
-		["description"] = "Defeat Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir in Veteran Tempest Island within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Lamia.",
-	},
-	[1621] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Tempest Island Survivor",
-		["description"] = "Defeat Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir in Veteran Tempest Island, without suffering a group member death.",
-	},
-	[1622] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Burial at Sea",
-		["description"] = "Defeat Stormreeve Neidir in Veteran Tempest Island, after invoking the Scroll of Glorious Battle.",
-	},
-	[1623] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Direfrost Keep Conqueror",
-		["description"] = "Complete Veteran Direfrost Keep by defeating Teethnasher the Frostbound, the Guardian of the Flame, Drodda's Apprentice, Drodda's Dreadlord, Iceheart, and Drodda of Icereach.",
-	},
-	[1624] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Draugr Slayer",
-		["description"] = "Defeat 325 Draugr in Veteran Direfrost Keep.",
-	},
-	[1625] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Frozen Skeleton Slayer",
-		["description"] = "Defeat 350 Frozen Skeletons in Veteran Direfrost Keep.",
-	},
-	[1626] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Direfrost Keep Assassin",
-		["description"] = "Defeat Teethnasher the Frostbound, the Guardian of the Flame, Drodda's Apprentice, Drodda's Dreadlord, Iceheart, and Drodda of Icereach in Veteran Direfrost Keep within twenty minutes of starting the dungeon. Timer starts when any player enters the first bear-filled cavern.",
-	},
-	[1627] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Direfrost Keep Survivor",
-		["description"] = "Defeat Teethnasher the Frostbound, the Guardian of the Flame, Drodda's Apprentice, Drodda's Dreadlord, Iceheart, and Drodda of Icereach in Veteran Direfrost Keep, without suffering a group member death.",
-	},
-	[1628] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "A Dish Served Cold",
-		["description"] = "Defeat Drodda of Icereach in Veteran Direfrost Keep, after invoking the Scroll of Glorious Battle.",
-	},
-	[1629] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Volenfell Conqueror",
-		["description"] = "Complete Veteran Volenfell by defeating the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council.",
-	},
-	[1630] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Treasure Hunter Slayer",
-		["description"] = "Defeat 250 Treasure Hunters in Veteran Volenfell.",
-	},
-	[1631] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Dwarven Construct Slayer",
-		["description"] = "Defeat 300 Dwarven Constructs in Veteran Volenfell.",
-	},
-	[1632] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Volenfell Assassin",
-		["description"] = "Defeat the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council in Veteran Volenfell within twenty minutes of starting the dungeon. Timer starts when players engage the first group of treasure hunters.",
-	},
-	[1633] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Volenfell Survivor",
-		["description"] = "Defeat the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council in Veteran Volenfell, without suffering a group member death.",
-	},
-	[1634] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "They Were Just Rusty",
-		["description"] = "Defeat the Guardian Constructs in Veteran Volenfell, after invoking the Scroll of Glorious Battle.",
-	},
-	[1635] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Selene's Web Conqueror",
-		["description"] = "Complete Veteran Selene's Web by defeating Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene.",
-	},
-	[1636] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Selene's Bosmer Slayer",
-		["description"] = "Defeat 250 of Selene's Bosmer in Veteran Selene's Web.",
-	},
-	[1637] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Selene's Spider Slayer",
-		["description"] = "Defeat 250 Spiders in Veteran Selene's Web.",
-	},
-	[1638] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Selene's Web Assassin",
-		["description"] = "Defeat Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene in Veteran Selene's Web within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Bosmer.",
-	},
-	[1639] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Selene's Web Survivor",
-		["description"] = "Defeat Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene in Veteran Selene's Web, without suffering a group member death.",
-	},
-	[1640] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "All Wrapped Up",
-		["description"] = "Defeat Selene in Veteran Selene's Web, after invoking the Scroll of Glorious Battle.",
-	},
-	[1641] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Blessed Crucible Conqueror",
-		["description"] = "Complete Veteran Blessed Crucible by defeating Grunt the Clever, the Pack, Teranya the Faceless, the Troll King, Captain Thoran, and the Lava Queen.",
-	},
-	[1642] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Gladiator Slayer",
-		["description"] = "Defeat 500 Gladiators in Veteran Blessed Crucible.",
-	},
-	[1643] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Durzog Slayer",
-		["description"] = "Defeat 150 Durzogs in Veteran Blessed Crucible.",
-	},
-	[1644] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Blessed Crucible Assassin",
-		["description"] = "Defeat every boss in Veteran Blessed Crucible within twenty minutes of starting the dungeon. Timer starts when any group member cross the first bridge over lava.",
-	},
-	[1645] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Blessed Crucible Survivor",
-		["description"] = "Defeat Grunt the Clever, the Pack, Teranya the Faceless, the Troll King, Captain Thoran, and the Lava Queen in Veteran Blessed Crucible, without suffering a group member death.",
-	},
-	[1646] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Coronation by Fire",
-		["description"] = "Defeat the Lava Queen in Veteran Blessed Crucible, after invoking the Scroll of Glorious Battle.",
-	},
-	[1647] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Blackheart Haven Conqueror",
-		["description"] = "Complete Veteran Blackheart Haven by defeating Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart",
-	},
-	[1648] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Pirate Slayer",
-		["description"] = "Defeat 500 Haven Pirates in Veteran Blackheart Haven.",
-	},
-	[1649] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Harpy Slayer",
-		["description"] = "Defeat 400 Harpies in Veteran Blackheart Haven.",
-	},
-	[1650] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Blackheart Haven Assassin",
-		["description"] = "Defeat Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart in Veteran Blackheart Haven within twenty minutes of starting the dungeon. Timer starts when the first player leaves the starting docks.",
-	},
-	[1651] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Blackheart Haven Survivor",
-		["description"] = "Defeat Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart in Veteran Blackheart Haven, without suffering a group member death.",
-	},
-	[1652] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Thoroughly Plundered",
-		["description"] = "Defeat Captain Blackheart in Veteran Blackheart Haven, after invoking the Scroll of Glorious Battle.",
-	},
-	[1653] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 15,
-		["name"] = "Vaults of Madness Conqueror",
-		["description"] = "Complete Veteran Vaults of Madness by defeating the Cursed One, Ulguna Soul-Reaver, Death's Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect.",
-	},
-	[1654] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Dremora Slayer",
-		["description"] = "Defeat 150 Dremora in Veteran Vaults of Madness.",
-	},
-	[1655] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 10,
-		["name"] = "Veteran Feral Shriven Slayer",
-		["description"] = "Defeat 750 Feral Shriven in Veteran Vaults of Madness.",
-	},
-	[1656] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Vaults of Madness Assassin",
-		["description"] = "Defeat the Cursed One, Ulguna Soul-Reaver, Death's Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect in Veteran Vaults of Madness within twenty minutes of starting the dungeon. Timer starts when players engage the first group of tormentors.",
-	},
-	[1657] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "Vaults of Madness Survivor",
-		["description"] = "Defeat the Cursed One, Ulguna Soul-Reaver, Death's Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect in Veteran Vaults of Madness, without suffering a group member death.",
-	},
-	[1658] =
-	{
-		["Category"] = "Veteran Dungeons",
-		["Category_ID"] = 5,
-		["points"] = 50,
-		["name"] = "New Mayor of Crazy Town",
-		["description"] = "Defeat the Mad Architect in Veteran Vaults of Madness, after invoking the Scroll of Glorious Battle.",
-	},
-	[1659] =
-	{
-		["Category"] = "Thieves Guild",
-		["Category_ID"] = 19,
-		["points"] = 50,
-		["name"] = "Dro-m'Athra Style Master",
-		["description"] = "Learn every chapter in the dro-m'Athra style book, found in weekly quest reward containers for sealing the Maw of Lorkhaj.",
-	},
-	[1660] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Order of the Hour Style Master",
-		["description"] = "Learn every chapter in the Order of the Hour style book, occasionally found in daily quest reward containers for successfully competing in the Kvatch Arena.",
-	},
-	[1661] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Dark Brotherhood Style Master",
-		["description"] = "Learn every chapter in the Dark Brotherhood style book, often found in daily quest reward containers for fulfilling the Black Sacrament.",
-	},
-	[1662] =
-	{
-		["Category"] = "Dark Brotherhood",
-		["Category_ID"] = 18,
-		["points"] = 50,
-		["name"] = "Minotaur Style Master",
-		["description"] = "Learn every chapter in the Minotaur style book, occasionally found in daily quest reward containers for resolving the disturbances at Tribune's Folly.",
-	},
-	[1663] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Anomalous Scholar",
-		["description"] = "Discover and complete all five Magical Anomalies in Craglorn.",
-	},
-	[1664] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Anka-Ra Consecrationist",
-		["description"] = "Discover and complete all five Anka-Ra Sites in Craglorn.",
-	},
-	[1665] =
-	{
-		["Category"] = "Exploration",
-		["Category_ID"] = 6,
-		["points"] = 15,
-		["name"] = "Nirncrux Inspector",
-		["description"] = "Discover and complete all five Iron Orc Nirncrux Mines in Craglorn.",
-	},
-	[1666] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Lava Foot Shuffle",
-		["description"] = "Dance the Lava Foot Stomp with another player at each Stonefalls tavern.",
-	},
-	[1667] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "The Charming Castle Duo",
-		["description"] = "During the Castle Charm Challenge in Stormhaven, perform with another player in front of each crowd.",
-	},
-	[1668] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "War Orphan's Benefactor",
-		["description"] = "While on the War Orphan's Sojourn in Grahtwood, donate both your time and your gold.",
-	},
-	[1669] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Fish Boon Angler",
-		["description"] = "Catch five of each type of fish traditionally served during the Fish Boon Feast in Shadowfen.",
-	},
-	[1670] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Five-Clawed Cat Burglar",
-		["description"] = "During the Trial of Five-Clawed Guile in Reaper's March, unlock all chests in 35 seconds or less.",
-	},
-	[1671] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Snow Bare Plunge",
-		["description"] = "During the Snow Bear Plunge in Eastmarch, leap into the freezing water with no armor equipped.",
-	},
-	[1672] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Stonetooth Belcher",
-		["description"] = "After hunting to supply the Stonetooth Bash, complement your feast by drinking some Betnikh Twice-Spiked Ale.",
-	},
-	[1673] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Signal Fire Zephyr",
-		["description"] = "During the Signal Fire Sprint in Bergama, light all signal fires in 35 seconds or less.",
-	},
-	[1674] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "New Life Celebrant",
-		["description"] = "Complete all New Life Festival celebrations across Tamriel.",
-	},
-	[1675] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "New Life Provisioner",
-		["description"] = "Learn all of the New Life Festival recipes.",
-	},
-	[1676] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Skinchanger Style Master",
-		["description"] = "Learn every chapter in the Skinchanger style book, occasionally found in reward containers while participating in the New Life Festival.",
-	},
-	[1677] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Glory of Magnus",
-		["description"] = "Complete each of the achievements associated with the New Life Festival.",
-	},
-	[1678] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Risk and Challenge",
-		["description"] = "Complete the first of Bolgrul's Undaunted challenges.",
-	},
-	[1679] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Gold and Bragging Rights",
-		["description"] = "Complete 10 of Bolgrul's Undaunted challenges.",
-	},
-	[1680] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "A Crown of Your Own Trousers",
-		["description"] = "Complete 30 of Bolgrul's Undaunted challenges.",
-	},
-	[1681] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "No Ground Given",
-		["description"] = "Complete your first Dark Anchor contract for Cardea Gallus.",
-	},
-	[1682] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Return to Sender",
-		["description"] = "Complete 10 Dark Anchor contracts for Cardea Gallus.",
-	},
-	[1683] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Stay Out Of Tamriel",
-		["description"] = "Complete 30 Dark Anchor contracts for Cardea Gallus.",
-	},
-	[1684] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "The Madness Isn't Catching",
-		["description"] = "Recover your first Mad God's relic for Alvur Baren.",
-	},
-	[1685] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "But I'd Say It's Rather Fetching",
-		["description"] = "Recover 10 Mad God's relics for Alvur Baren.",
-	},
-	[1686] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "With Butterflies A-Retching",
-		["description"] = "Recover 30 Mad God's relics for Alvur Baren.",
-	},
-	[1687] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 5,
-		["name"] = "Blooded Duelist",
-		["description"] = "Win your first duel against another player.",
-	},
-	[1688] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 10,
-		["name"] = "Seasoned Duelist",
-		["description"] = "Win 25 duels against other players.",
-	},
-	[1689] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 15,
-		["name"] = "Master Duelist",
-		["description"] = "Win 100 duels against other players.",
-	},
-	[1690] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Bloodroot Forge Vanquisher",
-		["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Bloodroot Forge.",
-	},
-	[1691] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Bloodroot Forge Conqueror",
-		["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge.",
-	},
-	[1692] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Veteran Firehide Slayer",
-		["description"] = "Defeat 50 Dreadhorn Firehides in Veteran Bloodroot Forge.",
-	},
-	[1693] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Veteran Dreadhorn Warrior Slayer",
-		["description"] = "Defeat 300 Dreadhorn Blade-Bearers, Manhunters, and Clanslayers in Veteran Bloodroot Forge.",
-	},
-	[1694] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Right to the Root of the Problem",
-		["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge within twenty minutes of starting the dungeon. Timer starts when players pass the first Dreadhorn campsite.",
-	},
-	[1695] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Parched Earth",
-		["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge, without suffering a group member death.",
-	},
-	[1696] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Tempered Tantrum",
-		["description"] = "Defeat the Earthgore Amalgam in Veteran Bloodroot Forge after invoking the Scroll of Glorious Battle.",
-	},
-	[1697] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Blood, Sweat and Fire",
-		["description"] = "Use the Stonefire Crucible to stun five targets and the Flameslake Cauldron to cool five lava pools within Bloodroot Forge.",
-	},
-	[1698] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Falkreath Hold Vanquisher",
-		["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Falkreath Hold.",
-	},
-	[1699] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Falkreath Hold Conqueror",
-		["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold.",
-	},
-	[1700] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Veteran Minotaur Trampler Slayer",
-		["description"] = "Defeat 60 Dreadhorn Tramplers in Veteran Falkreath Hold.",
-	},
-	[1701] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Veteran Dreadhorn Mage Slayer",
-		["description"] = "Defeat 150 Dreadhorn Town-Razers, Wildtamers, and Firebrands in Veteran Falkreath Hold.",
-	},
-	[1702] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Bull Rush",
-		["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Dreadhorn invaders.",
-	},
-	[1703] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "The Unbroken Line",
-		["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold, without suffering a group member death.",
-	},
-	[1704] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Taking the Bull by the Horns",
-		["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold after sounding the Warhorn in the Jarl's Hall.",
-	},
-	[1705] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Saluting the Honored Dead",
-		["description"] = "Cleanse 1000 corpses in Falkreath Hold's Hall of the Dead on any difficulty.",
-	},
-	[2102] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Leave No Bone Unbroken",
-		["description"] = "Defeat all encounters in addition to Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Hard Mode Veteran Fang Lair in under 30 minutes without suffering a party member death.",
-	},
-	[1707] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 5,
-		["name"] = "Green No Longer",
-		["description"] = "Complete one Undaunted Pledge bestowed by Urgarlag Chief-bane.",
-	},
-	[1708] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 10,
-		["name"] = "A Bloody Business",
-		["description"] = "Complete 10 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
-	},
-	[1709] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 15,
-		["name"] = "Seeker of the Unknown",
-		["description"] = "Complete 50 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
-	},
-	[1710] =
-	{
-		["Category"] = "Dungeons",
-		["Category_ID"] = 4,
-		["points"] = 50,
-		["name"] = "Urgarlag's Cohort",
-		["description"] = "Complete 100 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
-	},
-	[2101] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Back to the Abyss",
-		["description"] = "Defeat each of the following bosses that can appear at Abyssal Geysers.",
-	},
-	[1712] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Ancestral Tombs Hunter",
-		["description"] = "Find all 30 ancestral tombs in Vvardenfell, make a rubbing of the information they contain, and deliver these rubbings to Librarian Bradyn to discover the location of the lost Library of Andule.",
-	},
-	[1713] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Yokudan Style Master",
-		["description"] = "Learn every chapter in the Yokudan style book, occasionally found in repeatable quest reward containers in Craglorn.",
-	},
-	[1714] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Celestial Style Master",
-		["description"] = "Learn every chapter in the Celestial style book, found in the weekly quest reward containers for Craglorn Trials.",
-	},
-	[1715] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Draugr Style Master",
-		["description"] = "Learn every chapter in the Draugr style book, found in reward containers from daily quests for the Fighters Guild, the Mages Guild, and Bolgrul of the Undaunted.",
-	},
-	[1716] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Lord of Misrule",
-		["description"] = "Complete the challenges set forth by Jester Ayrenn, Jester Emeric, and Jester Jorunn and be crowned Lord of Misrule.",
-	},
-	[1717] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Princess Rescuer",
-		["description"] = "Rescue Jester Skald-King Jorunn's visiting princess without being spotted by the Butcher.",
-	},
-	[1718] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Smile, in the Name of the Queen",
-		["description"] = "Festoon 20 players with cherry blossoms during the Jester's Festival.",
-	},
-	[1719] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Illusive Dazzler",
-		["description"] = "Use a total of 50 illusion dazzlers.",
-	},
-	[1720] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Dazzling Entertainer",
-		["description"] = "Bring some color to each of the Undaunted Enclaves with an Illusion Dazzler during the Jester's Festival.",
-	},
-	[1721] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Jester's Personal Chef",
-		["description"] = "Acquire and learn all of the Jester's Festival provisioning recipes.",
-	},
-	[2100] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Put a Cork In It",
-		["description"] = "Destroy the Abyssal Pearl at each Abyssal Geyser in Summerset.",
-	},
-	[1723] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Royal Jester",
-		["description"] = "Complete each of the Jester's Festival achievements.",
-	},
-	[1724] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Permanent Tenant",
-		["description"] = "Obtain and enter any of the following inn rooms.",
-	},
-	[1725] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Homeowner",
-		["description"] = "Obtain and enter any of the following staple homes.",
-	},
-	[1726] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 10,
-		["name"] = "Landowner",
-		["description"] = "Obtain and enter any of the following classic homes.",
-	},
-	[1727] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Clan Father",
-		["description"] = "Obtain and enter Serenity Falls Estate.",
-	},
-	[1728] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Lord",
-		["description"] = "Obtain and enter Daggerfall Overlook.",
-	},
-	[1729] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Councilor",
-		["description"] = "Obtain and enter Ebonheart Chateau.",
-	},
-	[1730] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Count",
-		["description"] = "Obtain and enter all three of the following notable homes.",
-	},
-	[1731] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Suite Decorator",
-		["description"] = "Decorate a home you own with at least 75 Suite furnishings.",
-	},
-	[1732] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Parlor Decorator",
-		["description"] = "Decorate a home you own with at least 50 Parlor furnishings.",
-	},
-	[1733] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Library Decorator",
-		["description"] = "Decorate a home you own with at least 50 Library furnishings.",
-	},
-	[1734] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Dining Room Decorator",
-		["description"] = "Decorate a home you own with at least 50 Dining Room furnishings.",
-	},
-	[1735] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Courtyard Decorator",
-		["description"] = "Decorate a home you own with at least 30 Courtyard furnishings.",
-	},
-	[1736] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Undercroft Decorator",
-		["description"] = "Decorate a home you own with at least 20 Undercroft furnishings.",
-	},
-	[1737] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Hearth Decorator",
-		["description"] = "Decorate a home you own with at least 50 Hearth furnishings.",
-	},
-	[1738] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Gallery Decorator",
-		["description"] = "Decorate a home you own with at least 40 Gallery furnishings.",
-	},
-	[1739] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Workshop Decorator",
-		["description"] = "Decorate a home you own with at least 50 Workshop furnishings.",
-	},
-	[1740] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Lighting Decorator",
-		["description"] = "Decorate a home you own with at least 20 Lighting furnishings.",
-	},
-	[1741] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Conservatory Decorator",
-		["description"] = "Decorate a home you own with at least 100 Conservatory furnishings.",
-	},
-	[1742] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Structural Decorator",
-		["description"] = "Decorate a home you own with at least 20 Structure furnishings.",
-	},
-	[2099] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 50,
-		["name"] = "Relics of Summerset",
-		["description"] = "Retrieve the 20 dangerous relics stolen from the Vault of Moawita.",
-	},
-	[1744] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Eclectic Decorator",
-		["description"] = "Decorate a home you own with at least 20 Miscellaneous furnishings.",
-	},
-	[1745] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Apprentice Decorator",
-		["description"] = "Decorate a home you own with at least 50 objects.",
-	},
-	[1746] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Journeyman Decorator",
-		["description"] = "Decorate a home you own with at least 100 objects.",
-	},
-	[1747] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 10,
-		["name"] = "Expert Decorator",
-		["description"] = "Decorate a home you own with at least 200 objects.",
-	},
-	[1748] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 15,
-		["name"] = "Master Decorator",
-		["description"] = "Decorate a home you own with at least 300 objects.",
-	},
-	[1749] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Grand Master Decorator",
-		["description"] = "Decorate a home you own with at least 350 objects. Truly, a hoard to rival those of legend.",
-	},
-	[1750] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Party Planner",
-		["description"] = "Have at least 3 other players visit your home simultaneously.",
-	},
-	[1751] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Resident Crafter",
-		["description"] = "Craft an item from the comfort of your own home.",
-	},
-	[1752] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 5,
-		["name"] = "Practiced Warrior",
-		["description"] = "Deal 1,000,000 damage to training dummies in any home.",
-	},
-	[1753] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 10,
-		["name"] = "Expert Warrior",
-		["description"] = "Deal 10,000,000 damage to training dummies in any home.",
-	},
-	[1754] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 15,
-		["name"] = "Master Warrior",
-		["description"] = "Deal 50,000,000 damage to training dummies in any home.",
-	},
-	[1755] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Woodworking Furnisher",
-		["description"] = "Learn your first Woodworking Blueprint.",
-	},
-	[1756] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Woodworking Furnisher",
-		["description"] = "Learn 50 Woodworking Blueprints.",
-	},
-	[1757] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Woodworking Furnisher",
-		["description"] = "Learn 200 Woodworking Blueprints.",
-	},
-	[1758] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Blacksmithing Furnisher",
-		["description"] = "Learn your first Blacksmithing Diagram.",
-	},
-	[1759] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Blacksmithing Furnisher",
-		["description"] = "Learn 25 Blacksmithing Diagrams.",
-	},
-	[1760] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Blacksmithing Furnisher",
-		["description"] = "Learn 100 Blacksmithing Diagrams.",
-	},
-	[1761] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Clothing Furnisher",
-		["description"] = "Learn your first Clothing Pattern.",
-	},
-	[1762] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Clothing Furnisher",
-		["description"] = "Learn 25 Clothing Patterns.",
-	},
-	[1763] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Clothing Furnisher",
-		["description"] = "Learn 100 Clothing Patterns.",
-	},
-	[1764] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Alchemy Furnisher",
-		["description"] = "Learn your first Alchemy Formula.",
-	},
-	[1765] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Alchemy Furnisher",
-		["description"] = "Learn 10 Alchemy Formulas.",
-	},
-	[1766] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Alchemy Furnisher",
-		["description"] = "Learn 25 Alchemy Formulas.",
-	},
-	[1767] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Enchanting Furnisher",
-		["description"] = "Learn your first Enchanting Praxis.",
-	},
-	[1768] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Enchanting Furnisher",
-		["description"] = "Learn 50 Enchanting Praxises.",
-	},
-	[1769] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Novice Provisioning Furnisher",
-		["description"] = "Learn your first Provisioning Design.",
-	},
-	[1770] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Provisioning Furnisher",
-		["description"] = "Learn 25 Provisioning Designs.",
-	},
-	[1771] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Master Provisioning Furnisher",
-		["description"] = "Learn 100 Provisioning Designs.",
-	},
-	[1772] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Expert Enchanting Furnisher",
-		["description"] = "Learn 15 Enchanting Praxises.",
-	},
-	[2090] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand King Standard-Bearer",
-		["description"] = "Seize 125 Capture Points in Crazy King matches.",
-	},
-	[1774] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Heartwood Harvester",
-		["description"] = "Harvest your first unit of Heartwood.",
-	},
-	[1775] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Heartwood Harvester",
-		["description"] = "Harvest 25 units of Heartwood.",
-	},
-	[1776] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Heartwood Harvester",
-		["description"] = "Harvest 100 units of Heartwood.",
-	},
-	[1777] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Mundane Rune Harvester",
-		["description"] = "Harvest your first Mundane Rune.",
-	},
-	[1778] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Mundane Rune Harvester",
-		["description"] = "Harvest 25 Mundane Runes.",
-	},
-	[1779] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Mundane Rune Harvester",
-		["description"] = "Harvest 100 Mundane Runes.",
-	},
-	[1780] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Clean Pelt Harvester",
-		["description"] = "Harvest your first Clean Pelt.",
-	},
-	[1781] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Clean Pelt Harvester",
-		["description"] = "Harvest 25 Clean Pelts.",
-	},
-	[1782] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Clean Pelt Harvester",
-		["description"] = "Harvest 100 Clean Pelts.",
-	},
-	[1783] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Regulus Harvester",
-		["description"] = "Harvest your first unit of Regulus.",
-	},
-	[1784] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Regulus Harvester",
-		["description"] = "Harvest 25 units of Regulus.",
-	},
-	[1785] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Regulus Harvester",
-		["description"] = "Harvest 100 units of Regulus.",
-	},
-	[1786] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Bast Harvester",
-		["description"] = "Harvest your first unit of Bast.",
-	},
-	[1787] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Bast Harvester",
-		["description"] = "Harvest 25 units of Bast.",
-	},
-	[1788] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Bast Harvester",
-		["description"] = "Harvest 100 units of Bast.",
-	},
-	[1789] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Resin Harvester",
-		["description"] = "Harvest your first unit of Alchemical Resin.",
-	},
-	[1790] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Resin Harvester",
-		["description"] = "Harvest 25 units of Alchemical Resin.",
-	},
-	[1791] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Resin Harvester",
-		["description"] = "Harvest 100 units of Alchemical Resin.",
-	},
-	[1792] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 5,
-		["name"] = "Wax Harvester",
-		["description"] = "Harvest your first unit of Decorative Wax.",
-	},
-	[1793] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Expert Wax Harvester",
-		["description"] = "Harvest 25 units of Decorative Wax.",
-	},
-	[1794] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master Wax Harvester",
-		["description"] = "Harvest 100 units of Decorative Wax.",
-	},
-	[1795] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Mazzatun Style Master",
-		["description"] = "Collect and learn every chapter in the Mazzatun style book, found on Tree-Minder Na-Kesh in Ruins of Mazzatun.",
-	},
-	[1796] =
-	{
-		["Category"] = "Shadows of the Hist",
-		["Category_ID"] = 17,
-		["points"] = 50,
-		["name"] = "Silken Ring Style Master",
-		["description"] = "Collect and learn every chapter in the Silken Ring style book, found on Velidreth in Cradle of Shadows.",
-	},
-	[1797] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Ra Gada Style Master",
-		["description"] = "Collect and learn every chapter in the Ra Gada style book, found in Craglorn.",
-	},
-	[1798] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Ebony Style Master",
-		["description"] = "Collect and learn every chapter in the Ebony style book, sold in exchange for Writ Vouchers.",
-	},
-	[1799] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 10,
-		["name"] = "Master Crafter",
-		["description"] = "Complete your first Master Writ.",
-	},
-	[1800] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 15,
-		["name"] = "Master of Many Crafts",
-		["description"] = "Complete 25 Master Writs.",
-	},
-	[1801] =
-	{
-		["Category"] = "Crafting",
-		["Category_ID"] = 3,
-		["points"] = 50,
-		["name"] = "Unsurpassed Crafter",
-		["description"] = "Complete 100 Master Writs.",
-	},
-	[1802] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Songbird Silencer",
-		["description"] = "Defeat the nereid Kimbrudhil the Songbird at Shipwreck Cove.",
-	},
-	[1803] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Salothan's Cursebreaker",
-		["description"] = "Defeat Orator Salothan, Regent Beleth, General Tanasa, and Councilor Raynis at Salothan's Council.",
-	},
-	[1804] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Consort Killer",
-		["description"] = "Defeat the Queen's Consort at Missir-Dadalit Egg Mine.",
-	},
-	[1805] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Breaker of the Unbroken",
-		["description"] = "Defeat the nix-ox Nilthog the Unbroken at Nilthog's Hollow.",
-	},
-	[1806] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Wuyuvus Slayer",
-		["description"] = "Defeat Wuyuvus the Hunger at Sulipund Grange.",
-	},
-	[1807] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Cheater Defeater",
-		["description"] = "Defeat the Skaafin, Mehz the Cozener, at Dubdil Alar Tower and seal the rift to Oblivion.",
-	},
-	[1808] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Halls of Fabrication Completed",
-		["description"] = "Defeat the Assembly General and assist Divayth Fyr in stopping the flood of animunculi coming from the Halls of Fabrication.",
-	},
-	[1809] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Time Trial: Halls of Fabrication",
-		["description"] = "Complete Veteran Halls of Fabrication within a time limit of 40 minutes. Your trial begins when you enter Abanabi Cave beneath Tel Fyr.",
-	},
-	[1810] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Halls of Fabrication Conqueror",
-		["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication.",
-	},
-	[1811] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Well-Oiled Machine",
-		["description"] = "Complete Veteran Halls of Fabrication without suffering a group member death.",
-	},
-	[1812] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 10,
-		["name"] = "Freeholder",
-		["description"] = "Obtain and enter at least three of the following staple homes.",
-	},
-	[1813] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 15,
-		["name"] = "Citizen",
-		["description"] = "Obtain and enter at least five of the following staple homes.",
-	},
-	[1814] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 15,
-		["name"] = "Landlord",
-		["description"] = "Obtain and enter at least three of the following classic homes.",
-	},
-	[1815] =
-	{
-		["Category"] = "Housing",
-		["Category_ID"] = 8,
-		["points"] = 50,
-		["name"] = "Land Baron",
-		["description"] = "Obtain and enter at least five of the following classic homes.",
-	},
-	[1816] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Cooling Your Heels",
-		["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam without taking damage from the Molten Nirncrux flowing through Veteran Bloodroot Forge.",
-	},
-	[1817] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Hot Pursuit",
-		["description"] = "Complete Veteran Bloodroot Forge without any member of your group ever being struck by a Lava Ball spit by a Fire Shalk.",
-	},
-	[1818] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Magma Masher",
-		["description"] = "Use Galchobhar's Mantle Breaker attack to dissipate a Lava Ball fired by a Fire Shalk while in Veteran Bloodroot Forge.",
-	},
-	[1819] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Wildlife Sanctuary",
-		["description"] = "Defeat Caillaoife without allowing any Nirnblooded creatures to remain within her Nature's Preservation barrier for more than three seconds while in Veteran Bloodroot Forge.",
-	},
-	[1820] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Boulder Bounder",
-		["description"] = "Defeat Galchobhar without any group members being affected by his Scorched Earth and Flames of Galchobhar attacks in Veteran Bloodroot Forge.",
-	},
-	[1821] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Shalk Shaker",
-		["description"] = "Defeat Galchobhar without anyone in your group killing a Fire Shalk during your battle with him in Veteran Bloodroot Forge.",
-	},
-	[1822] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Hand Wrought Victory",
-		["description"] = "Defeat the Earthgore Amalgam in Veteran Bloodroot Forge without any member of your group activating the Stonefire Crucible or Flameslake Cauldron.",
-	},
-	[1823] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 10,
-		["name"] = "Artisan of Pain",
-		["description"] = "Personally use both the Stonefire Crucible and the Flameslake Cauldron to defeat the Earthgore Amalgam in Veteran Bloodroot Forge.",
-	},
-	[1824] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Tribunal Preacher",
-		["description"] = "Read all 36 Sermons of Vivec scattered across Vvardenfell.",
-	},
-	[1825] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Ashlander Associate",
-		["description"] = "Complete your first daily quest for Huntmaster Sorim-Nakar or Numani-Rasi.",
-	},
-	[1826] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Strider Caravaner",
-		["description"] = "Visit the silt strider caravaner at each of the stations in Vvardenfell.",
-	},
-	[1827] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "The Pilgrim's Path",
-		["description"] = "Visit the Shrines of the Seven Graces and read the inscription on each shine.",
-	},
-	[1828] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Daedric Explorer",
-		["description"] = "Visit all of the Daedric ruins in Vvardenfell.",
-	},
-	[1829] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Halls of Fabrication Vanquisher",
-		["description"] = "Defeat the Assembly General after empowering it by resetting the circuit breaker in Veteran Halls of Fabrication.",
-	},
-	[1830] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Refabricant Slayer",
-		["description"] = "Defeat 100 Calefactors, Capacitors, or Dissectors in the Halls of Fabrication.",
-	},
-	[1831] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Power House",
-		["description"] = "Defeat the Pinnacle Factotum without ever using energy from the generator to break a Refabricated Sphere's shield, in Veteran Halls of Fabrication.",
-	},
-	[1832] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Planned Obsolescence",
-		["description"] = "Defeat the Refabrication Committee in Veteran Halls of Fabrication without ever allowing the Reclaimer to overcharge a Ruined Factotum.",
-	},
-	[1833] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Environmentally Conscious",
-		["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication without any group member dying to traps and hazards.",
-	},
-	[1834] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Terminal Terminator",
-		["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication without letting any Terminals complete their activation sequence.",
-	},
-	[1835] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Accept No Substitute",
-		["description"] = "Defeat 5 of each of the Tactical Facsimiles that the Assembly General creates, on any difficulty.",
-	},
-	[1836] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Dynamo",
-		["description"] = "Complete each of the following achievements related to defeating the Assembly General:",
-	},
-	[1837] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Stress Tested",
-		["description"] = "Complete Veteran Halls of Fabrication after resetting the circuit breaker and empowering the Assembly General, all without suffering a group member death.",
-	},
-	[1838] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Like Clockwork",
-		["description"] = "Complete Veteran Halls of Fabrication after resetting the circuit breaker and empowering the Assembly General, all within 40 minutes of entering Abanabi Cave and without suffering a group member death.",
-	},
-	[1839] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Kill Process",
-		["description"] = "Defeat one Hunter-Killer Fabricant while the other still has at least half of its health remaining, before defeating the remaining Fabricant in Veteran Halls of Fabrication.",
-	},
-	[1840] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Arc-Custodian",
-		["description"] = "In Veteran Halls of Fabrication, defeat the Archcustodian using six or fewer Shock Pylons without ever missing an opportunity to disable it with one.",
-	},
-	[1841] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Scholar of Seht's Mysteries",
-		["description"] = "Discover all the notes scattered throughout the Halls of Fabrication.",
-	},
-	[1842] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Cliff Striders' Bane",
-		["description"] = "Do your part to eliminate the cliff strider menace by killing 100 cliff striders or cliff skippers in Vvardenfell.",
-	},
-	[1843] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Morrowind Skyshard Hunter",
-		["description"] = "Discover all 18 Skyshards in Vvardenfell.",
-	},
-	[1844] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Clockwork City Skyshard Hunter",
-		["description"] = "Discover all 6 Skyshards in the Clockwork City.",
-	},
-	[1845] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Summerset Skyshard Hunter",
-		["description"] = "Discover all 18 Skyshards in Summerset.",
-	},
-	[1846] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Nchuleftingth Group Event",
-		["description"] = "Defeat Nchulaeon the Eternal in Nchuleftingth.",
-	},
-	[1847] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Loop Eradicator",
-		["description"] = "Save Dubdil Alar from the consequences of his temporal experiments.",
-	},
-	[1848] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Defender of Morrowind",
-		["description"] = "Defeat all six world bosses in Vvardenfell.",
-	},
-	[1849] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Voice of the Failed Incarnates",
-		["description"] = "Disprove the dangerous claims of the Ashlander Chodala.",
-	},
-	[1850] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Bearer of the Blessed Staff",
-		["description"] = "Recover the Blessed Staff, Sunna'rah, from the Ashlander Chodala, and determine the true nature of the threat to Lord Vivec.",
-	},
-	[1851] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Hand of a Living God",
-		["description"] = "Follow a grave threat into Clockwork City, and recover Lord Vivec's stolen power.",
-	},
-	[1852] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Champion of Vivec",
-		["description"] = "Restore Lord Vivec's lost power, save Vivec City, and be named Champion of Vivec.",
-	},
-	[1853] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Nchuleftingth Vanquisher",
-		["description"] = "Defeat three of the champions in Nchuleftingth.",
-	},
-	[1854] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Nchuleftingth Conqueror",
-		["description"] = "Defeat all of the champions in Nchuleftingth.",
-	},
-	[1855] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Forgotten Wastes Group Event",
-		["description"] = "Defeat Stone-Boiler Omalas, Brander Releth, and Mountain-Caller Hlaren in the Forgotten Wastes.",
-	},
-	[1856] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Forgotten Wastes Vanquisher",
-		["description"] = "Defeat three of the champions in the Forgotten Wastes.",
-	},
-	[1857] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Forgotten Wastes Conqueror",
-		["description"] = "Defeat all of the champions in the Forgotten Wastes.",
-	},
-	[1858] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Khartag Point Explorer",
-		["description"] = "Explore and clear Khartag Point.",
-	},
-	[1859] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Ashalmawia Explorer",
-		["description"] = "Explore and clear Ashalmawia.",
-	},
-	[1860] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Zainsipilu Explorer",
-		["description"] = "Explore and clear Zainsipilu.",
-	},
-	[1861] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Matus-Akin Egg Mine Explorer",
-		["description"] = "Explore and clear Matus-Akin Egg Mine.",
-	},
-	[1862] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Pulk Explorer",
-		["description"] = "Explore and clear Pulk.",
-	},
-	[1863] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Nchuleft Explorer",
-		["description"] = "Explore and clear Nchuleft.",
-	},
-	[1864] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Morrowind Cave Delver",
-		["description"] = "Explore and clear all six explorable caves in Vvardenfell.",
-	},
-	[1865] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Morrowind Pathfinder",
-		["description"] = "Discover all the striking locales in Vvardenfell.",
-	},
-	[1866] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Morrowind Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in Vvardenfell.",
-	},
-	[1867] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Morrowind Grand Adventurer",
-		["description"] = "Complete 32 quests in Vvardenfell.",
-	},
-	[1868] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Savior of Morrowind",
-		["description"] = "Complete quests, defeat bosses, and explore delves to become the Savior of Morrowind.",
-	},
-	[1869] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Rising Sun",
-		["description"] = "Help the Argonian slave, Sun-in-Shadow, gain her freedom.",
-	},
-	[1870] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Naryu's Confidant",
-		["description"] = "Help Naryu Virian and the Morag Tong in and around Balmora.",
-	},
-	[1871] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Scarlet Judge",
-		["description"] = "Help the Scarlet Judge foil Marshal Hlaren's plot in Suran.",
-	},
-	[1872] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Kwama Miner",
-		["description"] = "Save the people of Gnisis from economic ruin by restoring the future of their kwama mine.",
-	},
-	[1873] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Hand of the Mistress",
-		["description"] = "Foil a usuper's plot, and assist Mistress Dratha with plans to prolong her life.",
-	},
-	[1874] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Pilgrim Protector",
-		["description"] = "End the threat to the pilgrims at Molag Mar.",
-	},
-	[1875] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Narsis's Apprentice",
-		["description"] = "Help Narsis Dren discover the secret of the Veloth Ancestral Tomb.",
-	},
-	[1876] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Ald'ruhn Annalist",
-		["description"] = "Discover the secret of the Hleran Ancestral Tomb.",
-	},
-	[1877] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Ebony Enforcer",
-		["description"] = "Discover the truth behind the sudden spike in production at Vassir-Didanat ebony mine.",
-	},
-	[1878] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 10,
-		["name"] = "Ashwalker",
-		["description"] = "Complete 10 daily quests for Huntmaster Sorim-Nakar or Numani-Rasi.",
-	},
-	[1879] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 15,
-		["name"] = "Clanfriend",
-		["description"] = "Complete 30 daily quests for Huntmaster Sorim-Nakar or Numani-Rasi.",
-	},
-	[1880] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Ashlands Stalker",
-		["description"] = "Complete all seven daily hunts for Huntmaster Sorim-Nakar.",
-	},
-	[1881] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Ashlands Relic Preserver",
-		["description"] = "Complete all seven relic preservation daily quests given by Numani-Rasi.",
-	},
-	[1882] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 5,
-		["name"] = "Morrowind Master Angler",
-		["description"] = "Catch all 12 rare fish in Vvardenfell.",
-	},
-	[1883] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Mayhem Connoisseur",
-		["description"] = "Receive the blessing of the Whitestrake at one of the Alliance Gates during the Midyear Mayhem.",
-	},
-	[1884] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Echo of Pelinal's Fury",
-		["description"] = "Read a Scroll of Pelinal's Ferocity during the Midyear Mayhem.",
-	},
-	[1885] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Blessed of the Whitestrake",
-		["description"] = "Acquire your first \"Pelinal's Midyear Boon Box\".",
-	},
-	[1886] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 10,
-		["name"] = "Chosen of the Whitestrake",
-		["description"] = "Acquire your 10th \"Pelinal's Midyear Boon Box\".",
-	},
-	[1887] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 15,
-		["name"] = "Hand of the Whitestrake",
-		["description"] = "Acquire your 25th \"Pelinal's Midyear Boon Box\".",
-	},
-	[1888] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 15,
-		["name"] = "Wrath of the Whitestrake",
-		["description"] = "Defeat 50 opponents during the Midyear Mayhem.",
-	},
-	[1889] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Pelinavant the Scourge",
-		["description"] = "Win a Battleground match during the Midyear Mayhem.",
-	},
-	[1890] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Pelinaline the Bloody",
-		["description"] = "Capture a Keep in Cyrodiil during the Midyear Mayhem.",
-	},
-	[1891] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Pelinerrif Insurgent",
-		["description"] = "Capture an Imperial District during the Midyear Mayhem.",
-	},
-	[1892] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 50,
-		["name"] = "Star-Made Knight",
-		["description"] = "Complete each of the Midyear Mayhem achievements.",
-	},
-	[1893] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Pit Bully",
-		["description"] = "Defeat 10 opponents in Battlegrounds.",
-	},
-	[1894] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Pit Fighter",
-		["description"] = "Defeat 250 opponents in Battlegrounds.",
-	},
-	[1895] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Pit Hero",
-		["description"] = "Defeat 1,000 opponents in Battlegrounds.",
-	},
-	[1896] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood Relic Hunter",
-		["description"] = "Capture your first Relic in Battlegrounds.",
-	},
-	[1897] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran Relic Hunter",
-		["description"] = "Capture 20 Relics in Battlegrounds.",
-	},
-	[1898] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Relic Hunter",
-		["description"] = "Capture 100 Relics in Battlegrounds.",
-	},
-	[1899] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood Relic Guardian",
-		["description"] = "Defeat a Relic carrier for the first time in Battlegrounds.",
-	},
-	[1900] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran Relic Guardian",
-		["description"] = "Defeat 20 Relic carriers in Battlegrounds.",
-	},
-	[1901] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Relic Guardian",
-		["description"] = "Defeat 100 Relic carriers in Battlegrounds.",
-	},
-	[1902] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood Standard-Bearer",
-		["description"] = "Seize your first Capture Point in Battlegrounds.",
-	},
-	[1903] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran Standard-Bearer",
-		["description"] = "Seize 50 Capture Points in Battlegrounds.",
-	},
-	[1904] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Standard-Bearer",
-		["description"] = "Seize 250 Capture Points in Battlegrounds.",
-	},
-	[1905] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood Standard-Guardian",
-		["description"] = "Earn 10 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
-	},
-	[1906] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran Standard-Guardian",
-		["description"] = "Earn 100 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
-	},
-	[1907] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Standard-Guardian",
-		["description"] = "Earn 500 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
-	},
-	[1908] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Victor",
-		["description"] = "Win a Battleground match for the first time.",
-	},
-	[1909] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Crowd Favorite",
-		["description"] = "Win 10 Battleground matches.",
-	},
-	[1910] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Conquering Hero",
-		["description"] = "Win 50 Battleground matches.",
-	},
-	[1911] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Gladiator",
-		["description"] = "Earn a lifetime medal score of 5,000 points in Battlegrounds.",
-	},
-	[1912] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Champion",
-		["description"] = "Earn a lifetime medal score of 50,000 points in Battlegrounds.",
-	},
-	[1913] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 50,
-		["name"] = "Grand Champion",
-		["description"] = "Earn a lifetime medal score of 250,000 points in Battlegrounds.",
-	},
-	[1914] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Battleground Dominator",
-		["description"] = "Control all four Capture Points simultaneously in a Domination match.",
-	},
-	[1915] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Battleground Butcher",
-		["description"] = "Win a Team Deathmatch with 500 points before any other team reaches 200 points.",
-	},
-	[1916] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Tactician",
-		["description"] = "Help your team capture both enemy Relics within 10 seconds of each other.",
-	},
-	[1917] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Claim-Staker",
-		["description"] = "Sieze at least four Capture Points without dying.",
-	},
-	[1918] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Paragon",
-		["description"] = "Finish a Team Deathmatch battle with at least eight more kills than deaths.",
-	},
-	[1919] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Triple Threat",
-		["description"] = "Capture three enemy Relics in a single Battleground match.",
-	},
-	[1920] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Most Valuable Combatant",
-		["description"] = "Earn a medal score of at least 3,000 points in a single Battleground match.",
-	},
-	[1921] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Quadruple Kill",
-		["description"] = "Earn your first Quadruple Kill Medal by defeating four opponents in a Team Deathmatch battle, each within ten seconds of the next.",
-	},
-	[1922] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Charging Champion",
-		["description"] = "Earn your first Champion Medal by dealing at least 500,000 points of damage in a single Team Deathmatch battle.",
-	},
-	[1923] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Fearless Physician",
-		["description"] = "Earn your first Fearless Physician Medal by healing at least 375,000 points of damage in a single Team Deathmatch battle.",
-	},
-	[1924] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Steady Centurion",
-		["description"] = "Earn your first Steady Centurion Medal by taking at least 250,000 damage in a single Domination match.",
-	},
-	[1925] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Divine Protector",
-		["description"] = "Earn your first Divine Protector Medal by healing at least 375,000 points of damage for Capture Point defenders in a single Domination match.",
-	},
-	[2089] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran King Standard-Bearer",
-		["description"] = "Seize 25 Capture Points in Crazy King matches.",
-	},
-	[1927] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Vigilant Defender",
-		["description"] = "Earn your first Vigilant Defender Medal while defending a Capture Point in a Domination match.",
-	},
-	[1928] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Warden Slayer",
-		["description"] = "Kill 10 enemy Wardens.",
-	},
-	[1929] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Warden Slayer",
-		["description"] = "Kill 100 enemy Wardens.",
-	},
-	[2088] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood King Standard-Bearer",
-		["description"] = "Seize your first Capture Point in Crazy King matches.",
-	},
-	[2087] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Perfect Purification",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same battle without suffering a group member death within 15 minutes of entering the Sanctuary Atrium in Veteran Asylum Sanctorium.",
-	},
-	[1932] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Ashlander Style Master",
-		["description"] = "Learn every chapter in the Ashlander style book, occasionally found as rewards for completing daily quests for Huntmaster Sorim-Nakar and Numani-Rasi.",
-	},
-	[1933] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Morag Tong Style Master",
-		["description"] = "Learn every chapter in the Morag Tong style book, occasionally found in Bounty and Explorer's Dispensations from the Hall of Justice.",
-	},
-	[1934] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Buoyant Armiger Style Master",
-		["description"] = "Learn every chapter in the Buoyant Armiger style book, occasionally found in treasure chests across Vvardenfell.",
-	},
-	[1935] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 50,
-		["name"] = "Militant Ordinator Style Master",
-		["description"] = "Learn every chapter in the Militant Ordinator style book, sold in exchange for Alliance Points by Battleground Supplies Merchants.",
-	},
-	[1936] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Divine Guardian",
-		["description"] = "Earn your first Divine Guardian Medal by healing at least 375,000 points of damage for Relic carriers in a single Battleground match.",
-	},
-	[1937] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Horns of the Reach Delver",
-		["description"] = "Complete Veteran Falkreath Hold and Veteran Bloodroot Forge.",
-	},
-	[2086] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Executioners' Judgement",
-		["description"] = "Defeat Saint Olms the Just and Saint Felms the Bold in the same battle in Veteran Asylum Sanctorium.",
-	},
-	[2084] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Imperfect Attendance",
-		["description"] = "Defeat Saint Llothis the Pious without dismantling his Imperfect Attendants in Veteran Asylum Sanctorium.",
-	},
-	[1940] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Horns of the Reach Explorer",
-		["description"] = "Enter either Falkreath Hold or Bloodroot Forge for the first time.",
-	},
-	[1941] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Bloodroot Forge Challenger",
-		["description"] = "Complete the listed achievements for Veteran Bloodroot Forge.",
-	},
-	[1942] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 50,
-		["name"] = "Falkreath Hold Challenger",
-		["description"] = "Complete the listed achievements for Veteran Falkreath Hold.",
-	},
-	[2083] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Placid Projections",
-		["description"] = "Defeat Saint Felms the Bold without allowing either of his Pneuma Projections to enrage in Veteran Asylum Sanctorium.",
-	},
-	[2082] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Beatific Beatdown",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold at the same time without allowing Saint Felms or Saint Llothis to enrage during the fight in Veteran Asylum Sanctorium.",
-	},
-	[1945] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "War Chronicler",
-		["description"] = "Discover the Urgent Missive, Unfinished Letter to Marika, In Reply to Concerning Rumors, and Epitaph of Bjarfrud Skjoralmor within Falkreath Hold.",
-	},
-	[1946] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Deck Diver",
-		["description"] = "Defeat every boss without ever personally being struck by siege weapon fire in Veteran Falkreath Hold, including siege engines commanded by Morrigh Bullblood.",
-	},
-	[1947] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Oathbreaker",
-		["description"] = "While fighting Cernunnon and his oath-bound, banish all three of the spiritmasters' souls within five seconds of each other throughout the fight in Veteran Falkreath Hold.",
-	},
-	[1948] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Epic Undertaking",
-		["description"] = "While fighting Deathlord Bjarfrud Skjoralmor in Veteran Falkreath Hold, have your group cleanse 15 corpses within the span of five seconds.",
-	},
-	[1949] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Wild and Woolly",
-		["description"] = "Defeat the Siege Mammoth in Falkreath Hold without being affected by an enemy stun, stagger, or knockback ability.",
-	},
-	[1950] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Endure the Elements",
-		["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold with at least one of each type of atronach still alive.",
-	},
-	[1951] =
-	{
-		["Category"] = "Horns of the Reach",
-		["Category_ID"] = 16,
-		["points"] = 5,
-		["name"] = "Column Caretaker",
-		["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold with 2 or more pillars still standing in the Jarl's Hall.",
-	},
-	[1952] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Newblood Scorer",
-		["description"] = "Gain 100 points from carrying the Chaosball.",
-	},
-	[1953] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "The Best Defense",
-		["description"] = "Get 3 kills, in a single life, while carrying the Chaosball.",
-	},
-	[1954] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Chaos Guardian",
-		["description"] = "Earn your first Chaos Guardian Medal by healing at least 375,000 points of damage for Chaosball carriers in a single Battleground match.",
-	},
-	[1955] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Chaos Champion",
-		["description"] = "Earn your first Chaos Champion Medal by dealing at least 500,000 points of damage to Chaosball carriers in a single Battleground match.",
-	},
-	[1956] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Walk It Off",
-		["description"] = "Take 10000000 of damage from the Chaosball (cumulative).",
-	},
-	[1957] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 5,
-		["name"] = "Chaosball Carnage",
-		["description"] = "Win a game of Chaosball with 500 points, before any other team reaches 200 points.",
-	},
-	[1958] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Precursor Maker",
-		["description"] = "Collect and install all of the parts necessary to reconstruct the Precursor factotum.",
-	},
-	[1959] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 5,
-		["name"] = "Fang Lair Vanquisher",
-		["description"] = "Defeat Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Fang Lair.",
-	},
-	[1960] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 5,
-		["name"] = "Fang Lair Conqueror",
-		["description"] = "Defeat Lizabet Charnis, The Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Veteran Fang Lair.",
-	},
-	[1961] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Veteran Skeleton Slayer",
-		["description"] = "Defeat 500 Skeletons in Veteran Fang Lair.",
-	},
-	[1962] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Veteran Necromancer Slayer",
-		["description"] = "Defeat 350 Blackmarrow Necromancers in Veteran Fang Lair.",
-	},
-	[1963] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "The Quick and the Dead",
-		["description"] = "Defeat all encounters in addition to Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus and Orryn the Black and Thurvokun in Veteran Fang Lair in under 30 minutes. Timer starts upon engaging the first group of Blackmarrow necromancers.",
-	},
-	[1964] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Not a Statistic",
-		["description"] = "Defeat Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, Orryn the Black and Thurvokun, and all of their minions in Veteran Fang Lair, without suffering a group member death.",
-	},
-	[1965] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Let Bygones Be Bygones",
-		["description"] = "Defeat Orryn the Black and Thurvokun after reading the incantation in Orryn's Notes in Veteran Fang Lair.",
-	},
-	[1966] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Fang Lair Challenger",
-		["description"] = "Complete the listed achievements for Veteran Fang Lair.",
-	},
-	[1967] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Minimal Animosity",
-		["description"] = "Defeat Orryn the Black and Thurvokun while only destroying a maximum of one Animus Crystal before Orryn merges with Thurvokun in Veteran Fang Lair.",
-	},
-	[1968] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Fungi Free",
-		["description"] = "Defeat the Cadaverous Menagerie without anyone in your group taking damage from Volatile Fungi in Veteran Fang Lair.",
-	},
-	[1969] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Starved Scarabs",
-		["description"] = "Defeat Orryn the Black and Thurvokun without any party members being hit by a Giant Scarab's Degenerative Acid in Veteran Fang Lair.",
-	},
-	[1970] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Obedience Maiming",
-		["description"] = "Defeat the Cadaverous Menagerie without a party member being killed by the Cadaverous Senche-Tiger's Death Grip in Veteran Fang Lair.",
-	},
-	[1971] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Elementary Anatomy",
-		["description"] = "Deactivate each of Caluurion's Relics using elemental Bonefiends in Veteran Fang Lair.",
-	},
-	[1972] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Nonplussed",
-		["description"] = "Defeat Ulfnor and Sabina Cedus without a party member being affected by Sabina Cedus's Haunting Spectre in Veteran Fang Lair.",
-	},
-	[1973] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Cold Pursuit",
-		["description"] = "After reciting the incantations in Orryn's Notes, defeat Orryn the Black and Thurvokun without any party members being hit by Orryn's Wraith Thralls in Veteran Fang Lair.",
-	},
-	[1974] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Horrific Halitosis",
-		["description"] = "When hit by Thurvokun's Plague Breath in Fang Lair, be under the protection of Yisareh's Life Ward while standing in direct contact with three other party members who also have Yisareh's Life Ward.",
-	},
-	[1975] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 5,
-		["name"] = "Scalecaller Peak Vanquisher",
-		["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Scalecaller Peak.",
-	},
-	[1976] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 5,
-		["name"] = "Scalecaller Peak Conqueror",
-		["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak.",
-	},
-	[1977] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Veteran Ogre Slayer",
-		["description"] = "Defeat 50 Ogres in Veteran Scalecaller Peak.",
-	},
-	[1978] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Veteran Cultist Slayer",
-		["description"] = "Defeat 120 Cultists in Veteran Scalecaller Peak.",
-	},
-	[1979] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Peak Performance",
-		["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak in under 30 minutes. Timer starts when players engage the first group of Scalecaller creatures.",
-	},
-	[1980] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "On Top",
-		["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak, without suffering a group member death.",
-	},
-	[1981] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Breaker of Spells",
-		["description"] = "Defeat Zaan the Scalecaller after reading Zaan's Ritual Scroll in Veteran Scalecaller Peak.",
-	},
-	[1982] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Scalecaller Peak Challenger",
-		["description"] = "Complete the listed achievements for Veteran Scalecaller Peak.",
-	},
-	[1983] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 50,
-		["name"] = "Mountain God",
-		["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller after reading Zaan's Ritual Scroll in Veteran Scalecaller Peak in under 30 minutes without dying.",
-	},
-	[1984] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Pustulent Problems",
-		["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller without a single group member taking damage from a Skeever's Pestilent Pus in Veteran Scalecaller Peak.",
-	},
-	[1985] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Scalecaller Savior",
-		["description"] = "Collect both of the necessary ingredients and cure Jorvuld Davaux of the cult's plague.",
-	},
-	[1986] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Stony Situation",
-		["description"] = "Defeat Doylemish Ironheart in Veteran Scalecaller Peak without a single group member becoming Petrified by Stony Gaze.",
-	},
-	[1987] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Tremor Trouble",
-		["description"] = "Defeat Orzun the Foul-Smelling and Rinaerus the Rancid in Veteran Scalecaller Peak without a single group member being killed by a Terrorizing Tremor.",
-	},
-	[1988] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Doctor's Orders",
-		["description"] = "Defeat Plague Concocter Mortieu in Veteran Scalecaller Peak with four living group members all suffering from two of Mortieu's infections simultaneously.",
-	},
-	[1989] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Watch Your Step",
-		["description"] = "Defeat Matriarch Aldis without any member of your group taking damage from the water that surrounds her during the fight in Veteran Scalecaller Peak.",
-	},
-	[1990] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Stand Your Ground",
-		["description"] = "Defeat Zaan the Scalecaller without being knocked back by her shield.",
-	},
-	[1991] =
-	{
-		["Category"] = "Dragon Bones",
-		["Category_ID"] = 14,
-		["points"] = 10,
-		["name"] = "Daedric Deflector",
-		["description"] = "Defeat Zaan the Scalecaller without taking damage from her Pestilent Breath attack and without using the same avoidance method twice after reading Zaan's Ritual Scroll in Veteran Scalecaller Peak.",
-	},
-	[2079] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Asylum Sanctorium Vanquisher",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same fight in Veteran Asylum Sanctorium.",
-	},
-	[2078] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Asylum Sanctorium Contender",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same fight in Asylum Sanctorium.",
-	},
-	[2076] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Asylum Sanctorium Completed",
-		["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in Asylum Sanctorium.",
-	},
-	[2070] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Brass Fortress Helper",
-		["description"] = "Complete one Brass Fortress resupply daily.",
-	},
-	[2069] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Clockwork City Grand Adventurer",
-		["description"] = "Complete 24 Story Quests in Clockwork City.",
-	},
-	[2068] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Clockwork City Adventurer",
-		["description"] = "Complete 20 Story Quests in Clockwork City.",
-	},
-	[2067] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Honorary Blackfeather",
-		["description"] = "Complete 30 Blackfeather Court Dailies.",
-	},
-	[2066] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Blackfeather Attendent",
-		["description"] = "Complete 7 Blackfeather Court Dailies.",
-	},
-	[2065] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Courting the Crows",
-		["description"] = "Complete one Blackfeather Court Daily.",
-	},
-	[2001] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "King's Haven Pass Explorer",
-		["description"] = "Explore and clear King's Haven Pass.",
-	},
-	[2002] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Eton Nir Grotto Explorer",
-		["description"] = "Explore and clear Eton Nir Grotto.",
-	},
-	[2003] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Archon's Grove Explorer",
-		["description"] = "Explore and clear Archon's Grove.",
-	},
-	[2004] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Tor-Hame-Khard Explorer",
-		["description"] = "Explore and clear Tor-Hame-Khard.",
-	},
-	[2005] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Wasten Coraldale Explorer",
-		["description"] = "Explore and clear Wasten Coraldale.",
-	},
-	[2006] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 5,
-		["name"] = "Traitor's Vault Explorer",
-		["description"] = "Explore and clear Traitor's Vault.",
-	},
-	[2007] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Summerset Cave Delver",
-		["description"] = "Explore and clear all six explorable caves in Summerset.",
-	},
-	[2008] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Summerset Pathfinder",
-		["description"] = "Discover all the striking locales in Summerset.",
-	},
-	[2064] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "The Burden of Knowledge",
-		["description"] = "Complete the \"The Light of Knowledge\" quest.",
-	},
-	[2010] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Summerset Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in Summerset.",
-	},
-	[2063] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "The Real Sotha Sil",
-		["description"] = "Complete the \"Where Shadows Lie\" quest.",
-	},
-	[2062] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Shadow Boxing",
-		["description"] = "Complete the \"Unto the Dark\" quest.",
-	},
-	[2061] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Birds of a Feather",
-		["description"] = "Complete the \"Lost in the Gloam\" quest.",
-	},
-	[2060] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Middle-Man",
-		["description"] = "Complete the \"Deepening Shadows\" quest.",
-	},
-	[2059] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Smoke and Mirrors",
-		["description"] = "Complete the \"The Strangeness of Seht\" quest.",
-	},
-	[2016] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Halls of Regulation Explorer",
-		["description"] = "Explore and clear the Halls of Regulation.",
-	},
-	[2017] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Shadow Cleft Explorer",
-		["description"] = "Explore and clear the Shadow Cleft.",
-	},
-	[2018] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Clockwork City Master Explorer",
-		["description"] = "Discover and clear all caves and striking locales in the Clockwork City.",
-	},
-	[2019] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Clockwork City Cave Delver",
-		["description"] = "Discover and clear both explorable caves in the Clockwork City.",
-	},
-	[2020] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Clockwork City Pathfinder",
-		["description"] = "Discover all the striking locales in the Clockwork City.",
-	},
-	[2021] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Hlaalu Style Master",
-		["description"] = "Collect and learn every chapter in the Hlaalu style book.",
-	},
-	[2022] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Redoran Style Master",
-		["description"] = "Collect and learn every chapter in the Redoran style book.",
-	},
-	[2023] =
-	{
-		["Category"] = "Morrowind",
-		["Category_ID"] = 12,
-		["points"] = 50,
-		["name"] = "Telvanni Style Master",
-		["description"] = "Collect and learn every chapter in the Telvanni style book.",
-	},
-	[2313] =
-	{
-		["Category"] = "Holiday Events",
-		["Category_ID"] = 9,
-		["points"] = 5,
-		["name"] = "Cauldron Conjurer",
-		["description"] = "Use the Witchmother's Cauldron summoned from the Witchmother's Whistle 10 times during the Witches Festival.",
-	},
-	[2025] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 10,
-		["name"] = "Veteran Scorer",
-		["description"] = "Gain 2500 points from carrying the Chaosball.",
-	},
-	[2026] =
-	{
-		["Category"] = "Player VS Player",
-		["Category_ID"] = 2,
-		["points"] = 15,
-		["name"] = "Grand Scorer",
-		["description"] = "Gain 10000 points from carrying the Chaosball.",
-	},
-	[2027] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 5,
-		["name"] = "Clockwork City Master Angler",
-		["description"] = "Catch all 12 rare fish in Clockwork City.",
-	},
-	[2028] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Imperfection",
-		["description"] = "Defeat The Imperfect in the Sanctuary of Verification.",
-	},
-	[2312] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Perfect Hunt",
-		["description"] = "Defeat Balorgh after desecrating the Moon Hunter Pack's banner and without being hit by his Fire Remnant ability for the duration of the encounter in Veteran March of Sacrifices.",
-	},
-	[2311] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Element of Surprise",
-		["description"] = "Defeat Balorgh while avoiding both Lightning Water and Poison Plants in Veteran March of Sacrifices.",
-	},
-	[2310] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 10,
-		["name"] = "Stalwart Sisterhood",
-		["description"] = "Defeat the Wyrd Sisters while preventing them from ever using their auras to augment each other in Veteran March of Sacrifices.",
-	},
-	[2309] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Root of the Problem",
-		["description"] = "Defeat Hedge Maze Guardian while avoiding its Lurcher Roots attack in Veteran Moon Hunter Keep.",
-	},
-	[2308] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Sidestepping Stranglers",
-		["description"] = "Defeat Hedge Maze Guardian without any group member being caught by a Strangler Snare within the Moon Hunter Keep Gardens in Veteran Moon Hunter Keep.",
-	},
-	[2307] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Bloody Mess",
-		["description"] = "Defeat Jailer Melitus without being damaged by Bloody Geysers in Moon Hunter Keep.",
-	},
-	[2304] =
-	{
-		["Category"] = "Wolfhunter",
-		["Category_ID"] = 13,
-		["points"] = 5,
-		["name"] = "Light on Your Feet",
-		["description"] = "Defeat Dagrund the Bulky while always dodging his Upheaval ability in Veteran March of Sacrifices.",
-	},
-	[2036] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Reef Raider",
-		["description"] = "Defeat Queen of the Reef at The Queen's Hatchery.",
-	},
-	[2037] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Bucking the Matriarchy",
-		["description"] = "Defeat Caanerin at Indrik Frolic.",
-	},
-	[2038] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Sea Sload Slugger",
-		["description"] = "Defeat the Sea Sload B'Korgen at Welenkin Cove.",
-	},
-	[2039] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Talon Taker",
-		["description"] = "Defeat Haeliata and Nagravia at Gryphon Run.",
-	},
-	[2040] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Amphibian Agitator",
-		["description"] = "Defeat Graveld at Graveld's Hideaway.",
-	},
-	[2041] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 10,
-		["name"] = "Keel Hauler",
-		["description"] = "Defeat Keelsplitter at Keelsplitter's Nest.",
-	},
-	[2042] =
-	{
-		["Category"] = "Summerset",
-		["Category_ID"] = 11,
-		["points"] = 15,
-		["name"] = "Defender of Summerset",
-		["description"] = "Defeat all six world bosses in Summerset.",
-	},
-	[2043] =
-	{
-		["Category"] = "Character",
-		["Category_ID"] = 1,
-		["points"] = 50,
-		["name"] = "Truly Undaunted",
-		["description"] = "Reach rank 10 in the Undaunted Skill Line.",
-	},
-	[2044] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Apostle Style Master",
-		["description"] = "Learn every chapter in the Apostle style book, occasionally found as rewards for completing Brass Fortress Resupply daily quests, Clockwork City daily delve quests, and Clockwork City daily world boss quests.",
-	},
-	[2045] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 50,
-		["name"] = "Ebonshadow Style Master",
-		["description"] = "Learn every chapter in the Ebonshadow style book, occasionally found as rewards for completing Blackfeather Court daily quests, Clockwork City daily delve quests, and Clockwork City daily world boss quests.",
-	},
-	[2046] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 10,
-		["name"] = "Murderer of Crows",
-		["description"] = "Defeat Ithoxis, Abathoth, and Ssatinot in Exarchs' Egress.",
-	},
-	[2047] =
-	{
-		["Category"] = "Clockwork City",
-		["Category_ID"] = 15,
-		["points"] = 15,
-		["name"] = "Clockwork City Defender",
-		["description"] = "Defeat both world bosses in Clockwork City.",
-	},
+[1] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[3] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[4] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[5] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[6] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[7] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[8] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[9] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[10] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[11] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Akash gra-Mal, Chokethorn, and Canonreeve Oraneth in Elden Hollow I.",
+["name"] = "Elden Hollow I Vanquisher",
+["points"] = 10,
+}
+,
+[12] = {
+["Category"] = "NIL",
+["description"] = "Reach Level 10.",
+["name"] = "Level 10 Hero",
+["points"] = 10,
+}
+,
+[13] = {
+["Category"] = "NIL",
+["description"] = "Reach Level 20.",
+["name"] = "Level 20 Hero",
+["points"] = 10,
+}
+,
+[14] = {
+["Category"] = "NIL",
+["description"] = "Reach Level 30.",
+["name"] = "Level 30 Hero",
+["points"] = 10,
+}
+,
+[15] = {
+["Category"] = "NIL",
+["description"] = "Reach Level 40.",
+["name"] = "Level 40 Hero",
+["points"] = 10,
+}
+,
+[16] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach Level 50.",
+["name"] = "Level 50 Hero",
+["points"] = 10,
+}
+,
+[17] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Acquire a Superior quality item.",
+["name"] = "Superior Ransacker",
+["points"] = 5,
+}
+,
+[18] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Acquire an Epic quality item.",
+["name"] = "Epic Acquirer",
+["points"] = 5,
+}
+,
+[19] = {
+["Category"] = "NIL",
+["description"] = "Loot any 10 Treasure Chests.",
+["name"] = "Treasure Chest Spotter",
+["points"] = 5,
+}
+,
+[20] = {
+["Category"] = "NIL",
+["description"] = "Loot any 50 Treasure Chests.",
+["name"] = "Treasure Chest Seeker",
+["points"] = 5,
+}
+,
+[21] = {
+["Category"] = "NIL",
+["description"] = "Loot any 100 Treasure Chests.",
+["name"] = "Treasure Chest Stalker",
+["points"] = 5,
+}
+,
+[22] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Loot any 1000 Treasure Chests.",
+["name"] = "Treasure Chest Hunter",
+["points"] = 5,
+}
+,
+[23] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[24] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[25] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[26] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[27] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[28] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Faolchu the Changeling and set the city of Camlorn free.",
+["name"] = "Faolchu\'s Bane",
+["points"] = 5,
+}
+,
+[29] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[30] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Help the Wyresses remove Angof\'s corruption from their sacred groves and the Wyrd Tree.",
+["name"] = "Wyrd Friend",
+["points"] = 5,
+}
+,
+[31] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Stop Angof the Gravesinger\'s necromantic plan to conquer Glenumbra.",
+["name"] = "Savior of Glenumbra",
+["points"] = 5,
+}
+,
+[32] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[33] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[34] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 53 quests in Glenumbra.",
+["name"] = "Glenumbra Adventurer",
+["points"] = 50,
+}
+,
+[35] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Wear a full set of Superior, and only Superior, gear.",
+["name"] = "Superior Attire",
+["points"] = 15,
+}
+,
+[36] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Wear a full set of Epic, and only Epic, gear.",
+["name"] = "Epic Attire",
+["points"] = 15,
+}
+,
+[37] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[38] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill humanoids, Goblin-kin, and giant-kin.",
+["name"] = "Humanoid Slayer",
+["points"] = 15,
+}
+,
+[39] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill Daedric creatures from Oblivion.",
+["name"] = "Daedra Slayer",
+["points"] = 15,
+}
+,
+[40] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill Dwarven mechanical constructs.",
+["name"] = "Dwarven Construct Slayer",
+["points"] = 15,
+}
+,
+[41] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a variety of natural creatures in the wilds of Tamriel and beyond.",
+["name"] = "Nature Slayer",
+["points"] = 15,
+}
+,
+[42] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill skeletons, zombies, ghosts, spirits, and vampires.",
+["name"] = "Undead Slayer",
+["points"] = 15,
+}
+,
+[43] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[44] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[45] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[46] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[47] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[48] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[49] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[50] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[51] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete all of the Slayer Achievements.",
+["name"] = "Master Monster Slayer",
+["points"] = 50,
+}
+,
+[52] = {
+["Category"] = "NIL",
+["description"] = "Complete 50 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Quester",
+["points"] = 5,
+}
+,
+[53] = {
+["Category"] = "NIL",
+["description"] = "Complete 100 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Explorer",
+["points"] = 10,
+}
+,
+[54] = {
+["Category"] = "NIL",
+["description"] = "Complete 250 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Adventurer",
+["points"] = 15,
+}
+,
+[55] = {
+["Category"] = "NIL",
+["description"] = "Complete 500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Master Adventurer",
+["points"] = 15,
+}
+,
+[56] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 1000 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Indomitable Adventurer",
+["points"] = 15,
+}
+,
+[57] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 60 quests in Stormhaven.",
+["name"] = "Stormhaven Adventurer",
+["points"] = 50,
+}
+,
+[58] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 42 quests in Rivenspire.",
+["name"] = "Rivenspire Adventurer",
+["points"] = 50,
+}
+,
+[59] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 42 quests in Alik\'r Desert.",
+["name"] = "Alik\'r Desert Adventurer",
+["points"] = 50,
+}
+,
+[60] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 36 quests in Bangkorai.",
+["name"] = "Bangkorai Adventurer",
+["points"] = 50,
+}
+,
+[61] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all Daggerfall Covenant quest achievements.",
+["name"] = "Hero of the Daggerfall Covenant",
+["points"] = 50,
+}
+,
+[62] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[63] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[64] = {
+["Category"] = "NIL",
+["description"] = "Harvest any crafting materials 10 times.",
+["name"] = "Apprentice Crafting Harvester",
+["points"] = 5,
+}
+,
+[65] = {
+["Category"] = "NIL",
+["description"] = "Harvest any crafting materials 50 times.",
+["name"] = "Journeyman Crafting Harvester",
+["points"] = 5,
+}
+,
+[66] = {
+["Category"] = "NIL",
+["description"] = "Harvest any crafting materials 100 times.",
+["name"] = "Expert Crafting Harvester",
+["points"] = 5,
+}
+,
+[67] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest any crafting materials 1000 times.",
+["name"] = "Master Crafting Harvester",
+["points"] = 5,
+}
+,
+[68] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest any crafting materials 10000 times.",
+["name"] = "Grand Master Crafting Harvester",
+["points"] = 5,
+}
+,
+[69] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[70] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[71] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[72] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[73] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[74] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[75] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[76] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[77] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[78] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Foreman Llothan, the Hive Lord, and the Sentinel of Rkugamz in Darkshade Caverns I.",
+["name"] = "Darkshade Caverns I Vanquisher",
+["points"] = 10,
+}
+,
+[79] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Investigator Garron, Varain Pellingare and Allene Pellingare in Wayrest Sewers I.",
+["name"] = "Wayrest Sewers I Vanquisher",
+["points"] = 10,
+}
+,
+[80] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Archmaster Siniel, Death\'s Leviathan, and the Ilambris Twins in Crypt of Hearts I.",
+["name"] = "Crypt of Hearts I Vanquisher",
+["points"] = 10,
+}
+,
+[81] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Valaran Stormcaller, Stormfist, and Stormreeve Neidir in Tempest Island.",
+["name"] = "Tempest Island Vanquisher",
+["points"] = 10,
+}
+,
+[82] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[83] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[84] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[85] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[86] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[87] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[88] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 10 enemy Dragonknights.",
+["name"] = "Dragonknight Slayer",
+["points"] = 10,
+}
+,
+[89] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 10 enemy Sorcerers.",
+["name"] = "Sorcerer Slayer",
+["points"] = 10,
+}
+,
+[90] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 10 enemy Templars.",
+["name"] = "Templar Slayer",
+["points"] = 10,
+}
+,
+[91] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Help capture a resource (farm, lumbermill, or mine) in Cyrodiil.",
+["name"] = "Capture a Resource",
+["points"] = 10,
+}
+,
+[92] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first rank in the Alliance War.",
+["name"] = "Alliance War Volunteer",
+["points"] = 10,
+}
+,
+[93] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Recruit in the Alliance War.",
+["name"] = "Alliance War Recruit",
+["points"] = 10,
+}
+,
+[94] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Tyro in the Alliance War.",
+["name"] = "Alliance War Tyro",
+["points"] = 10,
+}
+,
+[95] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Legionary in the Alliance War.",
+["name"] = "Alliance War Legionary",
+["points"] = 10,
+}
+,
+[96] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Veteran in the Alliance War.",
+["name"] = "Alliance War Veteran",
+["points"] = 10,
+}
+,
+[97] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Corporal in the Alliance War.",
+["name"] = "Alliance War Corporal",
+["points"] = 10,
+}
+,
+[98] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Sergeant in the Alliance War.",
+["name"] = "Alliance War Sergeant",
+["points"] = 10,
+}
+,
+[99] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Lieutenant in the Alliance War.",
+["name"] = "Alliance War Lieutenant",
+["points"] = 10,
+}
+,
+[100] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Captain in the Alliance War.",
+["name"] = "Alliance War Captain",
+["points"] = 10,
+}
+,
+[101] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Major in the Alliance War.",
+["name"] = "Alliance War Major",
+["points"] = 10,
+}
+,
+[102] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Centurion in the Alliance War.",
+["name"] = "Alliance War Centurion",
+["points"] = 10,
+}
+,
+[103] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Colonel in the Alliance War.",
+["name"] = "Alliance War Colonel",
+["points"] = 10,
+}
+,
+[104] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Tribune in the Alliance War.",
+["name"] = "Alliance War Tribune",
+["points"] = 10,
+}
+,
+[105] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Brigadier in the Alliance War.",
+["name"] = "Alliance War Brigadier",
+["points"] = 10,
+}
+,
+[106] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Prefect in the Alliance War.",
+["name"] = "Alliance War Prefect",
+["points"] = 10,
+}
+,
+[107] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Praetorian in the Alliance War.",
+["name"] = "Alliance War Praetorian",
+["points"] = 10,
+}
+,
+[108] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Palatine in the Alliance War.",
+["name"] = "Alliance War Palatine",
+["points"] = 10,
+}
+,
+[109] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of August Palatine in the Alliance War.",
+["name"] = "Alliance War August Palatine",
+["points"] = 10,
+}
+,
+[110] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Legate in the Alliance War.",
+["name"] = "Alliance War Legate",
+["points"] = 10,
+}
+,
+[111] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of General in the Alliance War.",
+["name"] = "Alliance War General",
+["points"] = 10,
+}
+,
+[112] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Warlord in the Alliance War.",
+["name"] = "Alliance War Warlord",
+["points"] = 10,
+}
+,
+[113] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Grand Warlord in the Alliance War.",
+["name"] = "Alliance War Grand Warlord",
+["points"] = 10,
+}
+,
+[114] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Overlord in the Alliance War.",
+["name"] = "Alliance War Overlord",
+["points"] = 10,
+}
+,
+[115] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Score a Revenge kill in the Alliance War or Battlegrounds.",
+["name"] = "First Revenge",
+["points"] = 10,
+}
+,
+[116] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Score 10 Revenge kills in the Alliance War or Battlegrounds.",
+["name"] = "Sweet Vengeance",
+["points"] = 10,
+}
+,
+[117] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Score your first Avenge kill in the Alliance War or Battlegrounds.",
+["name"] = "First Avenge",
+["points"] = 10,
+}
+,
+[118] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Score 10 Avenge kills in the Alliance War or Battlegrounds.",
+["name"] = "Vindication",
+["points"] = 10,
+}
+,
+[119] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn a kill when below 5 percent health in the Alliance War or Battlegrounds.",
+["name"] = "Close Call Kill",
+["points"] = 10,
+}
+,
+[120] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn 5 kills when below 5 percent health in the Alliance War or Battlegrounds.",
+["name"] = "Five Under Five",
+["points"] = 10,
+}
+,
+[121] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn 10 kills when below 5 percent health in the Alliance War or Battlegrounds.",
+["name"] = "Ten Under Five",
+["points"] = 10,
+}
+,
+[122] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Capture your first keep in the Alliance War.",
+["name"] = "Keep Capture",
+["points"] = 10,
+}
+,
+[123] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[124] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[125] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[126] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[127] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[128] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[129] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[130] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[131] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[132] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[133] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[134] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill an enemy player of Alliance War rank 50.",
+["name"] = "Kill a Grand Overlord",
+["points"] = 10,
+}
+,
+[135] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Deal 1,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Damage Dealer",
+["points"] = 10,
+}
+,
+[136] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Deal 5,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Massive Damage Dealer",
+["points"] = 10,
+}
+,
+[137] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Deal 100,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Tremendous Damage Dealer",
+["points"] = 10,
+}
+,
+[138] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Heal 1,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Healer",
+["points"] = 10,
+}
+,
+[139] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Heal 5,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Massive Healer",
+["points"] = 10,
+}
+,
+[140] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Heal 100,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Tremendous Healer",
+["points"] = 10,
+}
+,
+[141] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Breton enemies in the Alliance War or Battlegrounds.",
+["name"] = "Breton Slayer",
+["points"] = 10,
+}
+,
+[142] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[143] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[144] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[145] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Stop the Reachmen from attacking Evermore.",
+["name"] = "Evermore Defender",
+["points"] = 5,
+}
+,
+[146] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Liberate the Bangkorai Garrison from the invaders.",
+["name"] = "Bangkorai Garrison Liberator",
+["points"] = 5,
+}
+,
+[147] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Rescue High King Emeric from the clutches of Septima Tharn.",
+["name"] = "High King Emeric\'s Savior",
+["points"] = 5,
+}
+,
+[148] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the spriggan Woodblight at Blighted Isle.",
+["name"] = "Woodblight Killer",
+["points"] = 5,
+}
+,
+[149] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill Dayarrus the Xivilai at Arlimahera\'s Sanctum.",
+["name"] = "Dayarrus\' Deathbringer",
+["points"] = 5,
+}
+,
+[150] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the frost atronach monarch Nomeg Hyril at Nilata Falls.",
+["name"] = "Nomeg Hyril\'s Executioner",
+["points"] = 5,
+}
+,
+[151] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the liches Qumehdi and Zaman at the Telesubi Ruins.",
+["name"] = "Lich Butcher",
+["points"] = 5,
+}
+,
+[152] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the summoner Caecilia Attius and her Daedra minions at the Summoner\'s Camp.",
+["name"] = "Summoner Slayer",
+["points"] = 5,
+}
+,
+[153] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy the ghost Garach Wolf-Father and his werewolf spirits at Lakewatch Tower.",
+["name"] = "Wolf-Father Exorcist",
+["points"] = 5,
+}
+,
+[154] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat the Omen of the Watchful Eye and lift the paranoia in Alcaire.",
+["name"] = "Dreamslayer",
+["points"] = 5,
+}
+,
+[155] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Return the Dream Shard to Pariah Abbey and restore peace to Menevia.",
+["name"] = "Spirit Warden Champion",
+["points"] = 5,
+}
+,
+[156] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat the Omen of Counting Stars and end the obsessions plaguing Gavaudon.",
+["name"] = "Azura\'s Ally",
+["points"] = 5,
+}
+,
+[157] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[158] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the giant spider, Aesar the Hatespinner, at Aesar\'s Web.",
+["name"] = "Hatespinner Hunter",
+["points"] = 5,
+}
+,
+[159] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the gargoyle, Menhir Stoneskin, at Valeguard Tower.",
+["name"] = "Menhir Hunter",
+["points"] = 5,
+}
+,
+[160] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the necromancer, Louna Darkblood, at Old Kalgon\'s Keep.",
+["name"] = "Darkblood Hunter",
+["points"] = 5,
+}
+,
+[161] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the hag, Magdelena, at Magdelena\'s Haunt.",
+["name"] = "Hag Hunter",
+["points"] = 5,
+}
+,
+[162] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Orc, Stroda gra-Drom, at East-Rock Landing.",
+["name"] = "Stroda\'s Assassin",
+["points"] = 5,
+}
+,
+[163] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the nereid, Desuuga the Siren, at Siren\'s Cove.",
+["name"] = "Siren Hunter",
+["points"] = 5,
+}
+,
+[164] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[165] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[166] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[167] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[168] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[169] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[170] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[171] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[172] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[173] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[174] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[175] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[176] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Glenumbra.",
+["name"] = "Glenumbra Cave Delver",
+["points"] = 15,
+}
+,
+[177] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Stormhaven.",
+["name"] = "Stormhaven Cave Delver",
+["points"] = 15,
+}
+,
+[178] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Rivenspire.",
+["name"] = "Rivenspire Cave Delver",
+["points"] = 15,
+}
+,
+[179] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[180] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Bangkorai.",
+["name"] = "Bangkorai Cave Delver",
+["points"] = 15,
+}
+,
+[181] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Stonefalls.",
+["name"] = "Stonefalls Cave Delver",
+["points"] = 15,
+}
+,
+[182] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[183] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[184] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Destroy the Dominion\'s ability to create Skin-Stealers.",
+["name"] = "Skin-Stealer Destroyer",
+["points"] = 5,
+}
+,
+[185] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Protect the Argonian eggs so a new generation can be born.",
+["name"] = "Egg Protector",
+["points"] = 5,
+}
+,
+[186] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Recover the Mnemic Egg from the Dominion.",
+["name"] = "Mnemic Egg Guardian",
+["points"] = 5,
+}
+,
+[187] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the wamasu champion Haynekhtnamet in its lair.",
+["name"] = "Haynekhtnamet Hunter",
+["points"] = 5,
+}
+,
+[188] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the ogre twins Argalog and Vlaga at Xal Thak.",
+["name"] = "Ogre Twin Tormentor",
+["points"] = 5,
+}
+,
+[189] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Ayleid Mummy Lord Talkynd at Nen Ria.",
+["name"] = "Mummy Lord Murderer",
+["points"] = 5,
+}
+,
+[190] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Captain Bones and his undead crew aboard the Captain\'s ship.",
+["name"] = "Captain Bones Destroyer",
+["points"] = 5,
+}
+,
+[191] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Daedroth Urrai at Bitterroot Cave.",
+["name"] = "Urrai\'s Bane",
+["points"] = 5,
+}
+,
+[192] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Slave Lord Rendrasa at the Slaver\'s Camp.",
+["name"] = "Slave Lord\'s Ruination",
+["points"] = 5,
+}
+,
+[193] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Shadowfen.",
+["name"] = "Shadowfen Cave Delver",
+["points"] = 15,
+}
+,
+[194] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Find Bleakrock\'s missing villagers and send them home.",
+["name"] = "Hero of Bleakrock",
+["points"] = 10,
+}
+,
+[195] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the champion of the Strifeswarm kwama hive.",
+["name"] = "Strifeswarm Eradicator",
+["points"] = 5,
+}
+,
+[196] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Enter the Cave of Memories and destroy the Ashlander Guardian.",
+["name"] = "Memory Masher",
+["points"] = 5,
+}
+,
+[197] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Survive the mudcrabs of Shipwreck Strand and kill Shellcracker, the cannibal crab.",
+["name"] = "Shellcracker",
+["points"] = 5,
+}
+,
+[198] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Storm the beach at Matron\'s Clutch, slay the Dreugh Matrons, and end the threat of the Dreugh egg-tenders.",
+["name"] = "Dreugh Destroyer",
+["points"] = 5,
+}
+,
+[199] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy the Golden Saint at the Shivering Shrine.",
+["name"] = "Saintly Slaughter",
+["points"] = 5,
+}
+,
+[200] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the bull netch Ozzacha in Brahma\'s Grove.",
+["name"] = "Netch Wrangler",
+["points"] = 5,
+}
+,
+[201] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Destroy Balreth and return the Brother of Strife to slumber.",
+["name"] = "Balreth\'s Bane",
+["points"] = 5,
+}
+,
+[202] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Inner Sea Armature.",
+["name"] = "Inner Sea Armature Explorer",
+["points"] = 10,
+}
+,
+[203] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Emberflint Mine.",
+["name"] = "Emberflint Mine Explorer",
+["points"] = 10,
+}
+,
+[204] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Slay General Serien and stop the Covenant invasion of Stonefalls.",
+["name"] = "General Serien\'s Demise",
+["points"] = 5,
+}
+,
+[205] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Mephala\'s Nest.",
+["name"] = "Mephala\'s Nest Explorer",
+["points"] = 10,
+}
+,
+[206] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Hightide Hollow.",
+["name"] = "Hightide Hollow Explorer",
+["points"] = 10,
+}
+,
+[207] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Softloam Cavern.",
+["name"] = "Softloam Cavern Explorer",
+["points"] = 10,
+}
+,
+[208] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Sheogorath\'s Tongue.",
+["name"] = "Sheogorath\'s Tongue Explorer",
+["points"] = 10,
+}
+,
+[209] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Destroy Sadal and save Stonefalls.",
+["name"] = "Sadal\'s Overthrower",
+["points"] = 5,
+}
+,
+[210] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the great werewolf, Rageclaw, at Rageclaw\'s Den.",
+["name"] = "Rageclaw Hunter",
+["points"] = 5,
+}
+,
+[211] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Breton necromancer, Vivien Armene, at the Dragon Mound.",
+["name"] = "Armene\'s Bane",
+["points"] = 5,
+}
+,
+[212] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the vampire, Olveidi the Ratmaster, at the Ratmaster\'s Prowl.",
+["name"] = "Ratmaster Crusher",
+["points"] = 5,
+}
+,
+[213] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the wild mammoth, Mannskadi, at Dragon\'s Hallow.",
+["name"] = "Mannskadi\'s Mauler",
+["points"] = 5,
+}
+,
+[214] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the great sabre cat, Ammabani, at Ammabani\'s Pride.",
+["name"] = "Ammabani Ambusher",
+["points"] = 5,
+}
+,
+[215] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Ilessan Tower.",
+["name"] = "Ilessan Tower Explorer",
+["points"] = 10,
+}
+,
+[216] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Silumm.",
+["name"] = "Silumm Explorer",
+["points"] = 10,
+}
+,
+[217] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Enduum.",
+["name"] = "Enduum Explorer",
+["points"] = 10,
+}
+,
+[218] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Mines of Khuras.",
+["name"] = "Mines of Khuras Explorer",
+["points"] = 10,
+}
+,
+[219] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Ebon Crypt.",
+["name"] = "Ebon Crypt Explorer",
+["points"] = 10,
+}
+,
+[220] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Cryptwatch Fort.",
+["name"] = "Cryptwatch Fort Explorer",
+["points"] = 10,
+}
+,
+[221] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Portdun Watch.",
+["name"] = "Portdun Watch Explorer",
+["points"] = 10,
+}
+,
+[222] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Koeglin Mine.",
+["name"] = "Koeglin Mine Explorer",
+["points"] = 10,
+}
+,
+[223] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Pariah Catacombs.",
+["name"] = "Pariah Catacombs Explorer",
+["points"] = 10,
+}
+,
+[224] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Farangel\'s Delve.",
+["name"] = "Farangel\'s Delve Explorer",
+["points"] = 10,
+}
+,
+[225] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Bearclaw Mine.",
+["name"] = "Bearclaw Mine Explorer",
+["points"] = 10,
+}
+,
+[226] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Norvolk Ruins.",
+["name"] = "Norvolk Ruins Explorer",
+["points"] = 10,
+}
+,
+[227] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Crestshade Mine.",
+["name"] = "Crestshade Mine Explorer",
+["points"] = 10,
+}
+,
+[228] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Flyleaf Catacombs.",
+["name"] = "Flyleaf Catacombs Explorer",
+["points"] = 10,
+}
+,
+[229] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Tribulation Crypt.",
+["name"] = "Tribulation Crypt Explorer",
+["points"] = 10,
+}
+,
+[230] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Orc\'s Finger Ruins.",
+["name"] = "Orc\'s Finger Ruins Explorer",
+["points"] = 10,
+}
+,
+[231] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Erokii Ruins.",
+["name"] = "Erokii Ruins Explorer",
+["points"] = 10,
+}
+,
+[232] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Hildune\'s Secret Refuge.",
+["name"] = "Hildune\'s Secret Refuge Explorer",
+["points"] = 10,
+}
+,
+[233] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[234] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[235] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[236] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[237] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[238] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[239] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[240] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[241] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[242] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[243] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[244] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[245] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Atanaz Ruins.",
+["name"] = "Atanaz Ruins Explorer",
+["points"] = 10,
+}
+,
+[246] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Broken Tusk.",
+["name"] = "Broken Tusk Explorer",
+["points"] = 10,
+}
+,
+[247] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Chid-Moska Ruins.",
+["name"] = "Chid-Moska Ruins Explorer",
+["points"] = 10,
+}
+,
+[248] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Gandranen.",
+["name"] = "Gandranen Explorer",
+["points"] = 10,
+}
+,
+[249] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Onkobra Kwama Mine.",
+["name"] = "Onkobra Kwama Mine Explorer",
+["points"] = 10,
+}
+,
+[250] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Shrine of the Black Maw.",
+["name"] = "Black Maw Shrine Explorer",
+["points"] = 10,
+}
+,
+[251] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear The Chill Hollow.",
+["name"] = "Chill Hollow Explorer",
+["points"] = 10,
+}
+,
+[252] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Icehammer\'s Vault.",
+["name"] = "Icehammer\'s Vault Explorer",
+["points"] = 10,
+}
+,
+[253] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Old Sord\'s Cave.",
+["name"] = "Old Sord\'s Cave Explorer",
+["points"] = 10,
+}
+,
+[254] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Frigid Grotto.",
+["name"] = "Frigid Grotto Explorer",
+["points"] = 10,
+}
+,
+[255] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Stormcrag Crypt.",
+["name"] = "Stormcrag Crypt Explorer",
+["points"] = 10,
+}
+,
+[256] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Bastard\'s Tomb.",
+["name"] = "Bastard\'s Tomb Explorer",
+["points"] = 10,
+}
+,
+[257] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the great bear, Beralagr, at Swiftblade\'s Camp.",
+["name"] = "Beralagr Hunter",
+["points"] = 5,
+}
+,
+[258] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy Thjormar and the Drowned Horde at Bitterpoint Strand.",
+["name"] = "Drowned Horde Decimator",
+["points"] = 5,
+}
+,
+[259] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Orc reaver Dugan the Red.",
+["name"] = "Dugan\'s Demolisher",
+["points"] = 5,
+}
+,
+[260] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the strangler Bone Grappler in its nest.",
+["name"] = "Bone Grappler\'s Bane",
+["points"] = 5,
+}
+,
+[261] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the nereid queen Tallatta the Lustrous in the Jagged Grotto.",
+["name"] = "Tallatta\'s Annihilator",
+["points"] = 5,
+}
+,
+[262] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill Skullbreaker the sea troll at Windshriek Strand.",
+["name"] = "Skullbreaker",
+["points"] = 5,
+}
+,
+[263] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill Commander Faldethil of the Green Hunters at River Edge.",
+["name"] = "Green Vanquisher",
+["points"] = 5,
+}
+,
+[264] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Lady Llarel\'s Shelter.",
+["name"] = "Lady Llarel\'s Shelter Explorer",
+["points"] = 10,
+}
+,
+[265] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the ruins of Lower Bthanual.",
+["name"] = "Lower Bthanual Explorer",
+["points"] = 10,
+}
+,
+[266] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Triple Circle Mine.",
+["name"] = "Triple Circle Mine Explorer",
+["points"] = 10,
+}
+,
+[267] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Taleon\'s Crag.",
+["name"] = "Taleon\'s Crag Explorer",
+["points"] = 10,
+}
+,
+[268] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Knife Ear Grotto.",
+["name"] = "Knife Ear Grotto Explorer",
+["points"] = 10,
+}
+,
+[269] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Corpse Garden.",
+["name"] = "Corpse Garden Explorer",
+["points"] = 10,
+}
+,
+[270] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Deshaan.",
+["name"] = "Deshaan Cave Delver",
+["points"] = 15,
+}
+,
+[271] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[272] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Ganakton the Tempest, Sliklenia the Songstress, and Sellistrix the Lamia Queen in Arx Corinium.",
+["name"] = "Arx Corinium Vanquisher",
+["points"] = 10,
+}
+,
+[273] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[274] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Dead Man\'s Drop.",
+["name"] = "Dead Man\'s Drop Explorer",
+["points"] = 10,
+}
+,
+[275] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the giant kagouti, Short-Tusk, at Short-Tusk\'s Hillock.",
+["name"] = "Short-Tusk Hunter",
+["points"] = 5,
+}
+,
+[276] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the corpse husk, the Abomination, at the Grove of the Abomination.",
+["name"] = "Abomination Slayer",
+["points"] = 5,
+}
+,
+[277] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the giant troll, Sharpfang, at the Dire Bramblepatch.",
+["name"] = "Sharpfang Killer",
+["points"] = 5,
+}
+,
+[278] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy the Mabrigash Shade at the Mabrigash Burial Circle.",
+["name"] = "Mabrigash Shade Destroyer",
+["points"] = 5,
+}
+,
+[279] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the Dremora ritualist, Druitularg, at Druitularg\'s Ritual Altar.",
+["name"] = "Druitularg\'s Bane",
+["points"] = 5,
+}
+,
+[280] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the giant guar, Bittergreen the Wild, at Caravan Crest.",
+["name"] = "Bittergreen Obliterator",
+["points"] = 5,
+}
+,
+[281] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Black Vine Ruins.",
+["name"] = "Black Vine Ruins Explorer",
+["points"] = 10,
+}
+,
+[282] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Roots of Silvenar.",
+["name"] = "Roots of Silvenar Explorer",
+["points"] = 10,
+}
+,
+[283] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Uncover the Hound\'s Plan to lure the Green Lady to Silvenar.",
+["name"] = "Hound Hinderer",
+["points"] = 5,
+}
+,
+[284] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Save the Silvenar from his captors.",
+["name"] = "Silvenar\'s Friend",
+["points"] = 5,
+}
+,
+[285] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Unite the Silvenar with the Green Lady.",
+["name"] = "Hero of Frond and Leaf",
+["points"] = 5,
+}
+,
+[286] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Shael Ruins.",
+["name"] = "Shael Ruins Explorer",
+["points"] = 10,
+}
+,
+[287] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Auridon.",
+["name"] = "Auridon Cave Delver",
+["points"] = 15,
+}
+,
+[288] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Del\'s Claim.",
+["name"] = "Del\'s Claim Explorer",
+["points"] = 10,
+}
+,
+[289] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Ondil.",
+["name"] = "Ondil Explorer",
+["points"] = 10,
+}
+,
+[290] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Entila\'s Folly.",
+["name"] = "Entila\'s Folly Explorer",
+["points"] = 10,
+}
+,
+[291] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Wansalen.",
+["name"] = "Wansalen Explorer",
+["points"] = 10,
+}
+,
+[292] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Mehrunes\' Spite.",
+["name"] = "Mehrunes\' Spite Explorer",
+["points"] = 10,
+}
+,
+[293] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Bewan.",
+["name"] = "Bewan Explorer",
+["points"] = 10,
+}
+,
+[294] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Goblin War Chief and the Dreugh King in Fungal Grotto I.",
+["name"] = "Fungal Grotto I Vanquisher",
+["points"] = 10,
+}
+,
+[295] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[296] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Malabal Tor.",
+["name"] = "Malabal Tor Cave Delver",
+["points"] = 15,
+}
+,
+[297] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Tomb of the Apostates.",
+["name"] = "Tomb of the Apostates Explorer",
+["points"] = 10,
+}
+,
+[298] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Hoarvor Pit.",
+["name"] = "Hoarvor Pit Explorer",
+["points"] = 10,
+}
+,
+[299] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Sanguine\'s Demesne.",
+["name"] = "Sanguine\'s Demesne Vanquisher",
+["points"] = 10,
+}
+,
+[300] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all six champions in Sanguine\'s Demesne.",
+["name"] = "Sanguine\'s Demesne Conqueror",
+["points"] = 50,
+}
+,
+[301] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Swarm Mother and the Whisperer in Spindleclutch I.",
+["name"] = "Spindleclutch I Vanquisher",
+["points"] = 10,
+}
+,
+[302] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[303] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Kathutet, Amkaos, and Ranyu, Molag Bal\'s torturers, at a Dark Anchor.",
+["name"] = "Torturers\' Demise",
+["points"] = 10,
+}
+,
+[304] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Glut, Hogshead, and Stumble, the three Ogrim Brothers, at a Dark Anchor.",
+["name"] = "Ogrim Brother Subjugator",
+["points"] = 10,
+}
+,
+[305] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Velehk Sain, the Dremora pirate, at a Dark Anchor.",
+["name"] = "Dremora Pirate Slayer",
+["points"] = 10,
+}
+,
+[306] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Methats, Vonshala, and Sumeer, the Dremora travelers, at a Dark Anchor.",
+["name"] = "Traveling Dremora Slayer",
+["points"] = 10,
+}
+,
+[307] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Menta Na, Molag Bal\'s most favored Daedroth, at a Dark Anchor.",
+["name"] = "Favored Daedroth Destroyer",
+["points"] = 10,
+}
+,
+[308] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Yggmanei the Ever-Open Eye, Molag Bal\'s greatest spy, at a Dark Anchor.",
+["name"] = "Closer of the Ever-Open Eye",
+["points"] = 10,
+}
+,
+[309] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Daedroth Hrelvesuu at a Dark Anchor.",
+["name"] = "Hrelvesuu\'s Bane",
+["points"] = 10,
+}
+,
+[310] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Rhagothan, the Devourer of Souls, at a Dark Anchor.",
+["name"] = "Devourer of Souls Subverter",
+["points"] = 10,
+}
+,
+[311] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Nomeg Haga, the giant Frost Atronach of Coldharbour, at a Dark Anchor.",
+["name"] = "Frost Lord Destroyer",
+["points"] = 10,
+}
+,
+[312] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Zymel Hriz, the giant Storm Atronach of Coldharbour, at a Dark Anchor.",
+["name"] = "Storm Lord Destroyer",
+["points"] = 10,
+}
+,
+[313] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Anaxes and Medrike, the Xivilai torturers, at a Dark Anchor.",
+["name"] = "Xivilai Slavemaster Destroyer",
+["points"] = 10,
+}
+,
+[314] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Vika, Dylora, and Jansa, the Dark Seducer sisters, at a Dark Anchor.",
+["name"] = "Seductive Sister Destroyer",
+["points"] = 10,
+}
+,
+[315] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat King Styriche of Verkarth and his companions, Fangaril and Zayzahad, at a Dark Anchor.",
+["name"] = "Verkarth Vampire Destroyer",
+["points"] = 10,
+}
+,
+[316] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Lord Dregas Volar, the holder of the Daedric Crescent, at a Dark Anchor.",
+["name"] = "Crescent Dremora Destroyer",
+["points"] = 10,
+}
+,
+[317] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Gedna Relvel, the Lich of Mournhold, at a Dark Anchor.",
+["name"] = "Mournhold Lich Destroyer",
+["points"] = 10,
+}
+,
+[318] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy all of Molag Bal\'s generals that appear at the Dark Anchors.",
+["name"] = "General Executioner",
+["points"] = 50,
+}
+,
+[319] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[320] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[321] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[322] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Release the Dark Anchor pinions to send the chains back to Coldharbour.",
+["name"] = "Chainbreaker",
+["points"] = 10,
+}
+,
+[323] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[324] = {
+["Category"] = "NIL",
+["description"] = "Destroy 10 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Destroyer",
+["points"] = 5,
+}
+,
+[325] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Shadowrend and High Kinlord Rilis in Banished Cells I.",
+["name"] = "Banished Cells I Vanquisher",
+["points"] = 10,
+}
+,
+[326] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[327] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[328] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in the Rift.",
+["name"] = "The Rift Cave Delver",
+["points"] = 15,
+}
+,
+[329] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Faldar\'s Tooth.",
+["name"] = "Faldar\'s Tooth Explorer",
+["points"] = 10,
+}
+,
+[330] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Broken Helm Hollow.",
+["name"] = "Broken Helm Hollow Explorer",
+["points"] = 10,
+}
+,
+[331] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Avancheznel.",
+["name"] = "Avancheznel Explorer",
+["points"] = 10,
+}
+,
+[332] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Fort Greenwall.",
+["name"] = "Fort Greenwall Explorer",
+["points"] = 10,
+}
+,
+[333] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Shroud Hearth Barrow.",
+["name"] = "Shroud Hearth Barrow Explorer",
+["points"] = 10,
+}
+,
+[334] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Snapleg Cave.",
+["name"] = "Snapleg Cave Explorer",
+["points"] = 10,
+}
+,
+[335] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Crush the Reach\'s presence in the Rift.",
+["name"] = "Reach Crusher",
+["points"] = 5,
+}
+,
+[336] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Thallik Wormfather and scatter the Worm Cult.",
+["name"] = "Wormsquasher",
+["points"] = 5,
+}
+,
+[337] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Return Sinmur to his grave.",
+["name"] = "Ysgramor\'s Prodigy",
+["points"] = 5,
+}
+,
+[338] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[339] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[340] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Mephala\'s Fang, Gamyne Bandu, Ciirenas the Sheperd, Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Veteran Fungal Grotto II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
+["name"] = "Fungal Grotto II Assassin",
+["points"] = 50,
+}
+,
+[341] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[342] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Vila Theran in Veteran Fungal Grotto II without any member of your party using the protection of the Obsidian Husk.",
+["name"] = "Fearless Assaulter",
+["points"] = 50,
+}
+,
+[343] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran in Veteran Fungal Grotto II.",
+["name"] = "Fungal Grotto II Conqueror",
+["points"] = 10,
+}
+,
+[344] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[345] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Indur-sa and the Khajiiti Hunters at the Hunter Camp.",
+["name"] = "Khajiiti Hunters\' Bane",
+["points"] = 5,
+}
+,
+[346] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the trolls, Frostdrool and Sleetclaw, at the Troll Cave.",
+["name"] = "Troll Killer",
+["points"] = 5,
+}
+,
+[347] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Frost Atronach, Nomeg Rine, at the Frozen Ruins.",
+["name"] = "Frost Atronach Destroyer",
+["points"] = 5,
+}
+,
+[348] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Put Ghoragham to rest at Angarvunde Mound.",
+["name"] = "Ghost Banisher",
+["points"] = 5,
+}
+,
+[349] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Longstride the Giant and his Mammoth at the Giant Camp.",
+["name"] = "Giant Slayer",
+["points"] = 5,
+}
+,
+[350] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Banish Aereus the Wispmother from Wisplight Glen.",
+["name"] = "Wispmother Vanquisher",
+["points"] = 5,
+}
+,
+[351] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "End the threat of the necromancers at Soulfire Plateau and avenge the First Auridon Marines.",
+["name"] = "Marines Avenger",
+["points"] = 5,
+}
+,
+[352] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Quenyas, leader of Auridon\'s bandit gangs, in the camp at Seaside Scarp.",
+["name"] = "Bandit Lord Bounty Hunter",
+["points"] = 5,
+}
+,
+[353] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy Ghost Captain Blanchete at the Wreck of the Raptor.",
+["name"] = "Ghost Captain Crusher",
+["points"] = 5,
+}
+,
+[354] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the clannfear champion, Snapjaw, and end the murder of innocents at Heretic\'s Summons.",
+["name"] = "Snapjaw\'s Bane",
+["points"] = 5,
+}
+,
+[355] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the giant snake known as the Nestmother in her den.",
+["name"] = "Nestmother Eradicator",
+["points"] = 5,
+}
+,
+[356] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Anarume at the Heritance Proving Ground and end his treason.",
+["name"] = "Anarume Bounty Hunter",
+["points"] = 5,
+}
+,
+[357] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Guardian of the Flame, the Empowered Frost Atronach, and Drodda of Icereach at Direfrost Keep.",
+["name"] = "Direfrost Keep Vanquisher",
+["points"] = 10,
+}
+,
+[358] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[359] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[360] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Execute the traitor at Tanzelwil in the name of Queen Ayrenn.",
+["name"] = "Sunder the First Veil",
+["points"] = 5,
+}
+,
+[361] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Infiltrate the Veiled Heritance and discover its secret.",
+["name"] = "Sunder the Second Veil",
+["points"] = 5,
+}
+,
+[362] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat the Daedric army and their leader at Firsthold.",
+["name"] = "Sunder the Third Veil",
+["points"] = 5,
+}
+,
+[363] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Merdyndril the Alchemist at Obsidian Gorge and put an end to the Llodos plague.",
+["name"] = "Plague Ender",
+["points"] = 5,
+}
+,
+[364] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Free the Tribunal Temple from invading Daedric forces.",
+["name"] = "Temple Knight",
+["points"] = 15,
+}
+,
+[365] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Magistrix Vox at Eidolon\'s Hollow and restore peace to Deshaan.",
+["name"] = "Vox Slayer",
+["points"] = 15,
+}
+,
+[366] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[367] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Crow\'s Wood.",
+["name"] = "Crow\'s Wood Vanquisher",
+["points"] = 10,
+}
+,
+[368] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of Crow\'s Wood\'s champions.",
+["name"] = "Crow\'s Wood Conqueror",
+["points"] = 50,
+}
+,
+[369] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Vanquisher",
+["points"] = 10,
+}
+,
+[370] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Conqueror",
+["points"] = 50,
+}
+,
+[371] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Lonely Giant and his angry mammoths in the Lion\'s Den.",
+["name"] = "Lion\'s Den Group Event",
+["points"] = 50,
+}
+,
+[372] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Fight-Master Grel and his adepts at Sanguine\'s Demesne.",
+["name"] = "Sanguine\'s Group Event",
+["points"] = 50,
+}
+,
+[373] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in the Lion\'s Den.",
+["name"] = "Lion\'s Den Vanquisher",
+["points"] = 10,
+}
+,
+[374] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in the Lion\'s Den.",
+["name"] = "Lion\'s Den Conqueror",
+["points"] = 50,
+}
+,
+[375] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Vanquisher",
+["points"] = 10,
+}
+,
+[376] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Conqueror",
+["points"] = 50,
+}
+,
+[377] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Obsidian Scar.",
+["name"] = "Obsidian Scar Vanquisher",
+["points"] = 10,
+}
+,
+[378] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Obsidian Scar.",
+["name"] = "Obsidian Scar Conqueror",
+["points"] = 50,
+}
+,
+[379] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Destroy the Soul Wraiths to summon and slay Ghyslain in Crow\'s Wood.",
+["name"] = "Crow\'s Wood Group Event",
+["points"] = 50,
+}
+,
+[380] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Slay the Giant Snake Mother in Bad Man\'s Hallows.",
+["name"] = "Bad Man\'s Group Event",
+["points"] = 50,
+}
+,
+[381] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Reynir the Destroyer and his minions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Group Event",
+["points"] = 50,
+}
+,
+[382] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the giant bear Graufang at Seaview Point.",
+["name"] = "Graufang Hunter",
+["points"] = 5,
+}
+,
+[383] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the lurcher Limbscather at the Western Overlook.",
+["name"] = "Limbscather Slayer",
+["points"] = 5,
+}
+,
+[384] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Kill the werewolf, Salazar the Wolf, at the Wolf\'s Camp.",
+["name"] = "Werewolf\'s Bane",
+["points"] = 5,
+}
+,
+[385] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Bloodthorn zombie, Asard the Putrid, at North Shore Point.",
+["name"] = "Asard\'s Assassin",
+["points"] = 5,
+}
+,
+[386] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the wamasu, Trapjaw, at Trapjaw\'s Cove.",
+["name"] = "Trapjaw Stalker",
+["points"] = 5,
+}
+,
+[387] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the necromancer, Grivier Bloodcaller, at Balefire Island.",
+["name"] = "Bloodcaller\'s Ruin",
+["points"] = 5,
+}
+,
+[388] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Eradicate the Kwama infestation and kill the Kwama Guardians in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Group Event",
+["points"] = 50,
+}
+,
+[389] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Toothmaul Gully.",
+["name"] = "Toothmaul Gully Vanquisher",
+["points"] = 10,
+}
+,
+[390] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Toothmaul Gully.",
+["name"] = "Toothmaul Gully Conqueror",
+["points"] = 50,
+}
+,
+[391] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Quintus Verres, Tremorscale, and the Guardian Council at Volenfell.",
+["name"] = "Volenfell Vanquisher",
+["points"] = 10,
+}
+,
+[392] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[393] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Pack, the Beast Master, and the Lava Queen at the Blessed Crucible.",
+["name"] = "Blessed Crucible Vanquisher",
+["points"] = 10,
+}
+,
+[394] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[395] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in the Lost City of the Na-Totambu.",
+["name"] = "Lost City Vanquisher",
+["points"] = 10,
+}
+,
+[396] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in the Lost City of the Na-Totambu.",
+["name"] = "Lost City Conqueror",
+["points"] = 50,
+}
+,
+[397] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Stonefalls.",
+["name"] = "Stonefalls Skyshard Hunter",
+["points"] = 15,
+}
+,
+[398] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 3 Skyshards in Bleakrock.",
+["name"] = "Bleakrock Skyshard Hunter",
+["points"] = 5,
+}
+,
+[399] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Titanclaw the mudcrab at Mudcrab Beach.",
+["name"] = "Titanclaw Cracker",
+["points"] = 5,
+}
+,
+[400] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Old Widow Silk and the Bloodweaver spiders at the Spider Nest.",
+["name"] = "Spider Slayer",
+["points"] = 5,
+}
+,
+[401] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Dreugh Brood Queen at the Dreugh Waters.",
+["name"] = "Brood Queen Destroyer",
+["points"] = 5,
+}
+,
+[402] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Daedroth Gar Xuu Gar and his minions at the Abandoned Farm.",
+["name"] = "Gar Xuu Gar\'s Bane",
+["points"] = 5,
+}
+,
+[403] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Ogre called Cousin Scrag at Scrag\'s Larder.",
+["name"] = "Cousin Scrag\'s Demolisher",
+["points"] = 5,
+}
+,
+[404] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Zymel Kruz the Storm Atronach at the Ancient Altar.",
+["name"] = "Kruz Control",
+["points"] = 5,
+}
+,
+[405] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 3 Skyshards in Bal Foyen.",
+["name"] = "Bal Foyen Skyshard Hunter",
+["points"] = 5,
+}
+,
+[406] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Jump from the nose of the Weeping Giant.",
+["name"] = "Nose Diver",
+["points"] = 5,
+}
+,
+[407] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 3 Skyshards in Stros M\'Kai.",
+["name"] = "Stros M\'Kai Skyshard Hunter",
+["points"] = 5,
+}
+,
+[408] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 3 Skyshards in Betnikh.",
+["name"] = "Betnikh Skyshard Hunter",
+["points"] = 5,
+}
+,
+[409] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Glenumbra.",
+["name"] = "Glenumbra Skyshard Hunter",
+["points"] = 15,
+}
+,
+[410] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Atarus, the Roost Mother, and Captain Blackheart in Blackheart Haven.",
+["name"] = "Blackheart Haven Vanquisher",
+["points"] = 10,
+}
+,
+[411] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[412] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Santaki Ruins.",
+["name"] = "Santaki Ruins Explorer",
+["points"] = 10,
+}
+,
+[413] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in the Alik\'r Desert.",
+["name"] = "Alik\'r Desert Cave Delver",
+["points"] = 15,
+}
+,
+[414] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Divad\'s Chagrin Mine.",
+["name"] = "Divad\'s Chagrin Mine Explorer",
+["points"] = 10,
+}
+,
+[415] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Recruit all three famous privateers on Stros M\'Kai.",
+["name"] = "Famed Recruiter",
+["points"] = 10,
+}
+,
+[416] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Aldunz Ruins.",
+["name"] = "Aldunz Ruins Explorer",
+["points"] = 10,
+}
+,
+[417] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Longclaw, Foulhide, and Selene in Selene\'s Web.",
+["name"] = "Selene\'s Web Vanquisher",
+["points"] = 10,
+}
+,
+[418] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[419] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Coldrock Diggings.",
+["name"] = "Coldrock Diggings Explorer",
+["points"] = 10,
+}
+,
+[420] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Sandblown Mine.",
+["name"] = "Sandblown Mine Explorer",
+["points"] = 10,
+}
+,
+[421] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Blood Golem, Praxin\'s Ghost, and Vorenor Winterbourne in Veteran Spindleclutch II.",
+["name"] = "Spindleclutch II Conqueror",
+["points"] = 10,
+}
+,
+[422] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[423] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Yldzuun Ruins.",
+["name"] = "Yldzuun Ruins Explorer",
+["points"] = 10,
+}
+,
+[424] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Eastmarch.",
+["name"] = "Eastmarch Cave Delver",
+["points"] = 15,
+}
+,
+[425] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy the tainted plant creatures at Deathsong Cleft in Reaper\'s March.",
+["name"] = "Deathsong Deforester",
+["points"] = 5,
+}
+,
+[426] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Big Ozur the Ogre in Big Ozur\'s Valley.",
+["name"] = "Big Ozur\'s Bane",
+["points"] = 5,
+}
+,
+[427] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Queen of Three Mercies and her entourage at Waterdancer Falls in Reaper\'s March.",
+["name"] = "Mercy Killer",
+["points"] = 5,
+}
+,
+[428] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Gravecaller Niramo and his dark daughter Varien at the Reaper\'s Henge.",
+["name"] = "Gravecaller\'s Doom",
+["points"] = 5,
+}
+,
+[429] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Daedroth, Ysolmarr the Roving Pyre, near the Old S\'ren-ja Docks in Reaper\'s March.",
+["name"] = "Ysolmarr\'s Ruin",
+["points"] = 5,
+}
+,
+[430] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the vampire, Overlord Nur-dro, at Ushmal\'s Rest in Reaper\'s March.",
+["name"] = "Nur-dro\'s Downfall",
+["points"] = 5,
+}
+,
+[431] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 6 Skyshards in Khenarthi\'s Roost.",
+["name"] = "Khenarthi\'s Skyshard Hunter",
+["points"] = 5,
+}
+,
+[432] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Aba-Loria.",
+["name"] = "Aba-Loria Explorer",
+["points"] = 10,
+}
+,
+[433] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Grotto of Depravity.",
+["name"] = "Grotto of Depravity Explorer",
+["points"] = 10,
+}
+,
+[434] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Cave of Trophies.",
+["name"] = "Cave of Trophies Explorer",
+["points"] = 10,
+}
+,
+[435] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Vault of Haman Forgefire.",
+["name"] = "Forgefire Vault Explorer",
+["points"] = 10,
+}
+,
+[436] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Mal Sorra\'s Tomb.",
+["name"] = "Mal Sorra\'s Tomb Explorer",
+["points"] = 10,
+}
+,
+[437] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Wailing Maw.",
+["name"] = "Wailing Maw Explorer",
+["points"] = 10,
+}
+,
+[438] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Coldharbour.",
+["name"] = "Coldharbour Cave Delver",
+["points"] = 15,
+}
+,
+[439] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the daedroth, Sthorha the Crazed, at Aba-Darre.",
+["name"] = "Sthorha\'s Doom",
+["points"] = 5,
+}
+,
+[440] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the ice wraith, Duriatundur, at Duriatundur\'s Killing Field.",
+["name"] = "Ice Wraith Hunter",
+["points"] = 5,
+}
+,
+[441] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the ancient Dwarven Centurion, Zemarek-thul, at Zemarek\'s Hollow.",
+["name"] = "Centurion\'s Ruin",
+["points"] = 5,
+}
+,
+[442] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the daedroth trio, Nolagha, Keggagiha and Rsolignah, at the Daedroth Larder.",
+["name"] = "Daedroth Trio Hunter",
+["points"] = 5,
+}
+,
+[443] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Dremora necromancer, Brolsgerbwd, at the Risen Court.",
+["name"] = "Brolsgerbwd\'s Bane",
+["points"] = 5,
+}
+,
+[444] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the harvester, Cynhamoth, at Cynhamoth\'s Grove.",
+["name"] = "Cynhamoth\'s End",
+["points"] = 5,
+}
+,
+[445] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the undead hordes of Hergor the Fallen at Rulanyil\'s Fall.",
+["name"] = "Rulanyil\'s Fall Group Event",
+["points"] = 50,
+}
+,
+[446] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Mad Mortine, Blood Spawn, Praxin Douare, the Flesh Atronach trio, Urvan Veleth, and Vorenor Winterbourne in Veteran Spindleclutch II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
+["name"] = "Spindleclutch II Assassin",
+["points"] = 50,
+}
+,
+[447] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[448] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Vorenor Winterbourne in Veteran Spindleclutch II without killing any of the innocent victims held captive in his lair.",
+["name"] = "Compassionate Hero",
+["points"] = 50,
+}
+,
+[449] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "In Veteran Banished Cells II, defeat Keepers Imiril, Areldur, and Voranil, as well as the Maw of the Infernal and the Sisters Sihna and Vera, before defeating High Kinlord Rilis, all within twenty minutes. Timer starts upon engaging the first group of Banished skeletons.",
+["name"] = "Banished Cells II Assassin",
+["points"] = 50,
+}
+,
+[450] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[451] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "In Veteran Banished Cells II, defeat High Kinlord Rilis while three or more Daedroth still live.",
+["name"] = "Cursed Hero",
+["points"] = 50,
+}
+,
+[452] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Reaper\'s March.",
+["name"] = "Reaper\'s March Cave Delver",
+["points"] = 15,
+}
+,
+[453] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Kuna\'s Delve.",
+["name"] = "Kuna\'s Delve Explorer",
+["points"] = 10,
+}
+,
+[454] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Thibaut\'s Cairn.",
+["name"] = "Thibaut\'s Cairn Explorer",
+["points"] = 10,
+}
+,
+[455] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Weeping Wind Cave.",
+["name"] = "Weeping Wind Cave Explorer",
+["points"] = 10,
+}
+,
+[456] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Claw\'s Strike.",
+["name"] = "Claw\'s Strike Explorer",
+["points"] = 10,
+}
+,
+[457] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Fardir\'s Folly.",
+["name"] = "Fardir\'s Folly Explorer",
+["points"] = 10,
+}
+,
+[458] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Jode\'s Light.",
+["name"] = "Jode\'s Light Explorer",
+["points"] = 10,
+}
+,
+[459] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Veteran Elden Hollow II.",
+["name"] = "Elden Hollow II Conqueror",
+["points"] = 10,
+}
+,
+[460] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Flat Tooth and his minions at Crimson Cove.",
+["name"] = "Crimson Cove Group Event",
+["points"] = 50,
+}
+,
+[461] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Dubroze the Infestor, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame in Veteran Elden Hollow II within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
+["name"] = "Elden Hollow II Assassin",
+["points"] = 50,
+}
+,
+[462] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[463] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment in Veteran Elden Hollow II.",
+["name"] = "Closing the Book",
+["points"] = 50,
+}
+,
+[464] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Transmuted Hive Lord, Grobull the Transmuted, and the Engine Guardian in Veteran Darkshade Caverns II.",
+["name"] = "Darkshade Caverns II Conqueror",
+["points"] = 10,
+}
+,
+[465] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Fallen Foreman, the Hive Lord and its Scribs, the Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Veteran Darkshade Caverns II, all within twenty minutes. Timer starts upon engaging the first group of kwama.",
+["name"] = "Darkshade Caverns II Assassin",
+["points"] = 50,
+}
+,
+[466] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[467] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Engine Guardian in Veteran Darkshade Caverns II without anyone in your group activating an Engine Lever.",
+["name"] = "Deadly Engineer",
+["points"] = 50,
+}
+,
+[468] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Destroy Bloodroot and its guardians at Toothmaul Gully.",
+["name"] = "Toothmaul Gully Group Event",
+["points"] = 50,
+}
+,
+[469] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the damned creations of Graccus\' frost experiments at the Vile Manse.",
+["name"] = "Vile Manse Group Event",
+["points"] = 50,
+}
+,
+[470] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Bonemonger and its captors in Root Sunder Ruins.",
+["name"] = "Root Sunder Group Event",
+["points"] = 50,
+}
+,
+[471] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Glenumbra.",
+["name"] = "Glenumbra Angler",
+["points"] = 5,
+}
+,
+[472] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Stormhaven.",
+["name"] = "Stormhaven Angler",
+["points"] = 5,
+}
+,
+[473] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Rivenspire.",
+["name"] = "Rivenspire Angler",
+["points"] = 5,
+}
+,
+[474] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Alik\'r Desert.",
+["name"] = "Alik\'r Desert Angler",
+["points"] = 5,
+}
+,
+[475] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Bangkorai.",
+["name"] = "Bangkorai Angler",
+["points"] = 5,
+}
+,
+[476] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all Daggerfall Covenant fishing achievements.",
+["name"] = "Covenant Fisherman",
+["points"] = 10,
+}
+,
+[477] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Stonefalls.",
+["name"] = "Stonefalls Angler",
+["points"] = 5,
+}
+,
+[478] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Deshaan.",
+["name"] = "Deshaan Angler",
+["points"] = 5,
+}
+,
+[479] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Shadowfen.",
+["name"] = "Shadowfen Angler",
+["points"] = 5,
+}
+,
+[480] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Eastmarch.",
+["name"] = "Eastmarch Angler",
+["points"] = 5,
+}
+,
+[481] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in the Rift.",
+["name"] = "Rift Angler",
+["points"] = 5,
+}
+,
+[482] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all Ebonheart Pact fishing achievements.",
+["name"] = "Pact Fisherman",
+["points"] = 10,
+}
+,
+[483] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Auridon.",
+["name"] = "Auridon Angler",
+["points"] = 5,
+}
+,
+[484] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Grahtwood.",
+["name"] = "Grahtwood Angler",
+["points"] = 5,
+}
+,
+[485] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Greenshade.",
+["name"] = "Greenshade Angler",
+["points"] = 5,
+}
+,
+[486] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Malabal Tor.",
+["name"] = "Malabal Tor Angler",
+["points"] = 5,
+}
+,
+[487] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Reaper\'s March.",
+["name"] = "Reaper\'s March Angler",
+["points"] = 5,
+}
+,
+[488] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all Aldmeri Dominion fishing achievements.",
+["name"] = "Dominion Fisherman",
+["points"] = 10,
+}
+,
+[489] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Cyrodiil.",
+["name"] = "Cyrodiil Angler",
+["points"] = 10,
+}
+,
+[490] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Coldharbour.",
+["name"] = "Coldharbour Angler",
+["points"] = 5,
+}
+,
+[491] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch a rare Eltheric Grouper in the saltwaters of Stros M\'Kai.",
+["name"] = "Stros M\'Kai Angler",
+["points"] = 5,
+}
+,
+[492] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch a rare Pyandonean Ray in the saltwaters of Khenarthi\'s Roost.",
+["name"] = "Khenarthi\'s Roost Angler",
+["points"] = 5,
+}
+,
+[493] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch a rare Inner Sea Scalyfin fish in the saltwaters of Bleakrock.",
+["name"] = "Bleakrock Angler",
+["points"] = 5,
+}
+,
+[494] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all fishing achievements.",
+["name"] = "Master Fisher",
+["points"] = 50,
+}
+,
+[495] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the duneripper, Mother Sands, at the Lost Caravan.",
+["name"] = "Duneripper\'s Downfall",
+["points"] = 5,
+}
+,
+[496] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the giant, Lonely Papa, at the Giant Camp.",
+["name"] = "Lonely Papa\'s Doom",
+["points"] = 5,
+}
+,
+[497] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Hag Sisters, Igazkad, Orochar and Ukha, at the Hag Camp.",
+["name"] = "Hag Upheaval",
+["points"] = 5,
+}
+,
+[498] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Korignah the harvester in the Forsaken Hearts Cave.",
+["name"] = "Korignah\'s Bane",
+["points"] = 5,
+}
+,
+[499] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Mummy King at King\'s Rest.",
+["name"] = "Mummy King Murderer",
+["points"] = 5,
+}
+,
+[500] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the golden saint, Staada, at the Lesser Circle.",
+["name"] = "Saint Slayer",
+["points"] = 5,
+}
+,
+[501] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[502] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[503] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[504] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[505] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[506] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[507] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[508] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[509] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[510] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Protect the Court of the Wilderking.",
+["name"] = "Court Ranger",
+["points"] = 5,
+}
+,
+[511] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "End the Veiled Heritance threat in Greenshade.",
+["name"] = "Veil Lifter",
+["points"] = 5,
+}
+,
+[512] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Cleanse the corruption from Valenwood.",
+["name"] = "Valenwood Protector",
+["points"] = 5,
+}
+,
+[513] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[514] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[515] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Stormhaven.",
+["name"] = "Stormhaven Skyshard Hunter",
+["points"] = 15,
+}
+,
+[516] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Uwafa and reclaim the Ansei Ward.",
+["name"] = "Uwafa\'s Ruination",
+["points"] = 5,
+}
+,
+[517] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Alasan and restore the Ansei Ward.",
+["name"] = "Alasan\'s Devastation",
+["points"] = 5,
+}
+,
+[518] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat the Withered Hand and reclaim all the Ansei Wards.",
+["name"] = "Ash\'abah Hero",
+["points"] = 5,
+}
+,
+[519] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[520] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[521] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[522] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[523] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[524] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Gather all of the Lights of Meridia within Coldharbour.",
+["name"] = "Meridia\'s Lightbearer",
+["points"] = 15,
+}
+,
+[525] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Stop the Maormer from summoning a hurricane to destroy Khenarthi\'s Roost.",
+["name"] = "Maormer\'s Bane",
+["points"] = 10,
+}
+,
+[526] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Intervene in all instances of skooma abuse on Khenarthi\'s Roost.",
+["name"] = "Skooma Watch",
+["points"] = 5,
+}
+,
+[527] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[528] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[529] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[530] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[531] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[532] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[533] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[534] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[535] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[536] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Restore the Clanmother to power in Arenthia.",
+["name"] = "Clanmother Inaugurator",
+["points"] = 5,
+}
+,
+[537] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Shackle the Dark Mane to his prison beneath Moonmont.",
+["name"] = "Dark Mane Incarcerator",
+["points"] = 5,
+}
+,
+[538] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Walk the Two Moons Path with the next Mane.",
+["name"] = "Two Moons Pathwalker",
+["points"] = 5,
+}
+,
+[539] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Troll\'s Toothpick.",
+["name"] = "Troll\'s Toothpick Explorer",
+["points"] = 10,
+}
+,
+[540] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Torog\'s Spite.",
+["name"] = "Torog\'s Spite Explorer",
+["points"] = 10,
+}
+,
+[541] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Crypt of the Exiles.",
+["name"] = "Crypt of the Exiles Explorer",
+["points"] = 10,
+}
+,
+[542] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Viridian Watch.",
+["name"] = "Viridian Watch Explorer",
+["points"] = 10,
+}
+,
+[543] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Rubble Butte.",
+["name"] = "Rubble Butte Explorer",
+["points"] = 10,
+}
+,
+[544] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Klathzgar.",
+["name"] = "Klathzgar Explorer",
+["points"] = 10,
+}
+,
+[545] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Maw of the Infernal, Keeper Imiril, and High Kinlord Rilis in Veteran Banished Cells II.",
+["name"] = "Banished Cells II Conqueror",
+["points"] = 10,
+}
+,
+[546] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[547] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Deshaan.",
+["name"] = "Deshaan Skyshard Hunter",
+["points"] = 15,
+}
+,
+[548] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy Ozozzachar, the favored Titan of Molag Bal.",
+["name"] = "Ozozzachar\'s Door",
+["points"] = 10,
+}
+,
+[549] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[550] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Underroot.",
+["name"] = "Underroot Explorer",
+["points"] = 10,
+}
+,
+[551] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in City of Ash I.",
+["name"] = "City of Ash I Vanquisher",
+["points"] = 10,
+}
+,
+[552] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[553] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Carac Dena.",
+["name"] = "Carac Dena Explorer",
+["points"] = 10,
+}
+,
+[554] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Rivenspire.",
+["name"] = "Rivenspire Skyshard Hunter",
+["points"] = 15,
+}
+,
+[555] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Gurzag\'s Mine.",
+["name"] = "Gurzag\'s Mine Explorer",
+["points"] = 10,
+}
+,
+[556] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Alik\'r Desert.",
+["name"] = "Alik\'r Desert Skyshard Hunter",
+["points"] = 15,
+}
+,
+[557] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Bangkorai.",
+["name"] = "Bangkorai Skyshard Hunter",
+["points"] = 15,
+}
+,
+[558] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Harridan\'s Lair.",
+["name"] = "Harridan\'s Lair Explorer",
+["points"] = 10,
+}
+,
+[559] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Barrow Trench.",
+["name"] = "Barrow Trench Explorer",
+["points"] = 10,
+}
+,
+[560] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Argonian Behemoth, Gathongor the Mauler, at Gathongor\'s Mire.",
+["name"] = "Gathongor Hunter",
+["points"] = 5,
+}
+,
+[561] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the ogre, Thodundor of the Hill, at Thodundor\'s View.",
+["name"] = "King of the Hill",
+["points"] = 5,
+}
+,
+[562] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Sea Elf, Jahlasri, and her Maormer companions at the Maormer Camp.",
+["name"] = "Sea Elf\'s Woe",
+["points"] = 5,
+}
+,
+[563] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the lurcher known as the Heart of Rootwater at Rootwater Spring.",
+["name"] = "Rootwater\'s Demise",
+["points"] = 5,
+}
+,
+[564] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Argonian Maheelius and his force of spies at the Reconnaissance Camp.",
+["name"] = "Spy Smasher",
+["points"] = 5,
+}
+,
+[565] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the Storm Atronach, Zymel Etitan, at Pelda Tarn.",
+["name"] = "Zymel Chaser",
+["points"] = 5,
+}
+,
+[566] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[567] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Naril Nagaia.",
+["name"] = "Naril Nagaia Explorer",
+["points"] = 10,
+}
+,
+[568] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Greenshade.",
+["name"] = "Greenshade Cave Delver",
+["points"] = 15,
+}
+,
+[569] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[570] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Ulguna Soul-Reaver, Grothdarr, Iskra the Omen, and the Mad Architect in the Vaults of Madness.",
+["name"] = "Vaults of Madness Vanquisher",
+["points"] = 10,
+}
+,
+[571] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[572] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves in Grahtwood.",
+["name"] = "Grahtwood Cave Delver",
+["points"] = 15,
+}
+,
+[573] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Ne Salas.",
+["name"] = "Ne Salas Explorer",
+["points"] = 10,
+}
+,
+[574] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Scuttle Pit.",
+["name"] = "Scuttle Pit Explorer",
+["points"] = 10,
+}
+,
+[575] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Vinedeath Cave.",
+["name"] = "Vinedeath Cave Explorer",
+["points"] = 10,
+}
+,
+[576] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Burroot Kwama Mine.",
+["name"] = "Burroot Kwama Mine Explorer",
+["points"] = 10,
+}
+,
+[577] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Wormroot Depths.",
+["name"] = "Wormroot Depths Explorer",
+["points"] = 10,
+}
+,
+[578] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Mobar Mine.",
+["name"] = "Mobar Mine Explorer",
+["points"] = 10,
+}
+,
+[579] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy every Dark Anchor in Aldmeri Dominion territory.",
+["name"] = "Dominion Anchor Shatterer",
+["points"] = 15,
+}
+,
+[580] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[581] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[582] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[583] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[584] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy every Dark Anchor in Daggerfall Covenant territory.",
+["name"] = "Covenant Anchor Shatterer",
+["points"] = 15,
+}
+,
+[585] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy every Dark Anchor in Ebonheart Pact territory.",
+["name"] = "Pact Anchor Shatterer",
+["points"] = 15,
+}
+,
+[586] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy every Dark Anchor in the contested lands of Cyrodiil.",
+["name"] = "Imperial Anchor Shatterer",
+["points"] = 15,
+}
+,
+[587] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy every Dark Anchor in Tamriel.",
+["name"] = "Anchors Away",
+["points"] = 50,
+}
+,
+[588] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[589] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Reezal-Jul at Camp Tamrith and save the Crestshade refugees.",
+["name"] = "Hero of House Tamrith",
+["points"] = 5,
+}
+,
+[590] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Lady Lleraya Montclair at Northpoint and set Baron Dorell\'s city free.",
+["name"] = "Hero of House Dorell",
+["points"] = 5,
+}
+,
+[591] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Baron Wylon Montclair and destroy the Lightless Remnant at the Doomcrag to save Rivenspire.",
+["name"] = "Sword of Ravenwatch",
+["points"] = 5,
+}
+,
+[592] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[593] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 59 quests in Stonefalls.",
+["name"] = "Stonefalls Adventurer",
+["points"] = 50,
+}
+,
+[594] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[595] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 55 quests in Deshaan.",
+["name"] = "Deshaan Adventurer",
+["points"] = 50,
+}
+,
+[596] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 51 quests in Shadowfen.",
+["name"] = "Shadowfen Adventurer",
+["points"] = 50,
+}
+,
+[597] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Kill Lob the Cleaver and befriend the Giants at the Cradlecrush Arena.",
+["name"] = "Giant-Friend",
+["points"] = 5,
+}
+,
+[598] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Save Jorunn the Skald-King at Mistwatch Tower.",
+["name"] = "Skald-King\'s Salvation",
+["points"] = 5,
+}
+,
+[599] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Fildgor Orcthane at Skuldafn and earn the title of Arrow of Jorunn the Skald-King.",
+["name"] = "Skald-King\'s Arrow",
+["points"] = 5,
+}
+,
+[600] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 43 quests in Eastmarch.",
+["name"] = "Eastmarch Adventurer",
+["points"] = 50,
+}
+,
+[601] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[602] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 45 quests in Reaper\'s March.",
+["name"] = "Reaper\'s March Adventurer",
+["points"] = 50,
+}
+,
+[603] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 61 quests in the Rift.",
+["name"] = "The Rift Adventurer",
+["points"] = 50,
+}
+,
+[604] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 37 quests in Auridon.",
+["name"] = "Auridon Adventurer",
+["points"] = 50,
+}
+,
+[605] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Free Southpoint from the influence of the Daedric Prince, Sheogorath.",
+["name"] = "Southpoint Savior",
+["points"] = 5,
+}
+,
+[606] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Retrieve the Heart of Anumaril from the Reliquary of Stars.",
+["name"] = "Reliquary Retriever",
+["points"] = 5,
+}
+,
+[607] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Free Nairume from her prison and retrieve Rajhin\'s Mantle.",
+["name"] = "Hero of Falinesti",
+["points"] = 5,
+}
+,
+[608] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 38 quests in Grahtwood.",
+["name"] = "Grahtwood Adventurer",
+["points"] = 50,
+}
+,
+[609] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[610] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 40 quests in Greenshade.",
+["name"] = "Greenshade Adventurer",
+["points"] = 50,
+}
+,
+[611] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 40 quests in Malabal Tor.",
+["name"] = "Malabal Tor Adventurer",
+["points"] = 50,
+}
+,
+[612] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Rescue the last Ayleid King, Laloriaran Dynar, from the Lightless Oubliette.",
+["name"] = "Light of the Ayleid King",
+["points"] = 5,
+}
+,
+[613] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Rescue the Great Mage, Vanus Galerion, and help him destroy Molag Bal\'s Great Shackle.",
+["name"] = "Guardian of the Great Mage",
+["points"] = 5,
+}
+,
+[614] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Stop the Planemeld and defeat Molag Bal\'s plan of conquest at the Endless Stair.",
+["name"] = "Planemeld Sunderer",
+["points"] = 5,
+}
+,
+[615] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[616] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete 29 quests in Coldharbour.",
+["name"] = "Coldharbour Adventurer",
+["points"] = 50,
+}
+,
+[617] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all Ebonheart Pact quest achievements.",
+["name"] = "Hero of the Ebonheart Pact",
+["points"] = 50,
+}
+,
+[618] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all Aldmeri Dominion quest achievements.",
+["name"] = "Hero of the Aldmeri Dominion",
+["points"] = 50,
+}
+,
+[619] = {
+["Category"] = "NIL",
+["description"] = "Destroy 50 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Demolisher",
+["points"] = 10,
+}
+,
+[620] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy 100 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Decimator",
+["points"] = 15,
+}
+,
+[621] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Destroy 250 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Devastator",
+["points"] = 50,
+}
+,
+[622] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all of the Aldmeri Dominion cave exploration achievements.",
+["name"] = "Dominion Cave Delver",
+["points"] = 50,
+}
+,
+[623] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[624] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[625] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all of the Daggerfall Covenant cave exploration achievements.",
+["name"] = "Covenant Cave Delver",
+["points"] = 50,
+}
+,
+[626] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete all of the Ebonheart Pact cave exploration achievements.",
+["name"] = "Pact Cave Delver",
+["points"] = 50,
+}
+,
+[627] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Complete every cave exploration achievement in Tamriel.",
+["name"] = "Tamriel Master Cave Delver",
+["points"] = 50,
+}
+,
+[628] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all of the quest achievements across Tamriel.",
+["name"] = "Tamriel Expert Adventurer",
+["points"] = 50,
+}
+,
+[629] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[630] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[631] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[632] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[633] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[634] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[635] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[636] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[637] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[638] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[639] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[640] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[641] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[642] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[643] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[644] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[645] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[646] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[647] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[648] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[649] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[650] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[651] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[652] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[653] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[654] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[655] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[656] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[657] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[658] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[659] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[660] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[661] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[662] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[663] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[664] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[665] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[666] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[667] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[668] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[669] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[670] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[671] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[672] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[673] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[674] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[675] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[676] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[677] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[678] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in Veteran Wayrest Sewers II.",
+["name"] = "Wayrest Sewers II Conqueror",
+["points"] = 10,
+}
+,
+[679] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Malubeth the Scourger, Skull Reaper, Uulgarg the Risen, Garron the Returned, the Forgotten One, and the Pellingare Twins in Veteran Wayrest Sewers II, all within twenty minutes. Timer starts upon engaging the first necromancer and his minions.",
+["name"] = "Wayrest Sewers II Assassin",
+["points"] = 50,
+}
+,
+[680] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[681] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers II.",
+["name"] = "Pellingare Ghoul Slayer",
+["points"] = 50,
+}
+,
+[682] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Grahtwood.",
+["name"] = "Grahtwood Skyshard Hunter",
+["points"] = 15,
+}
+,
+[683] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Greenshade.",
+["name"] = "Greenshade Skyshard Hunter",
+["points"] = 15,
+}
+,
+[684] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Malabal Tor.",
+["name"] = "Malabal Tor Skyshard Hunter",
+["points"] = 15,
+}
+,
+[685] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Reaper\'s March.",
+["name"] = "Reaper\'s March Skyshard Hunter",
+["points"] = 15,
+}
+,
+[686] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Coldharbour.",
+["name"] = "Coldharbour Skyshard Hunter",
+["points"] = 15,
+}
+,
+[687] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Shadowfen.",
+["name"] = "Shadowfen Skyshard Hunter",
+["points"] = 15,
+}
+,
+[688] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Eastmarch.",
+["name"] = "Eastmarch Skyshard Hunter",
+["points"] = 15,
+}
+,
+[689] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in the Rift.",
+["name"] = "The Rift Skyshard Hunter",
+["points"] = 15,
+}
+,
+[690] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[691] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Kill 100 named enemies in dungeons.",
+["name"] = "Dungeon Ruler",
+["points"] = 10,
+}
+,
+[692] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 15 Skyshards in the Ebonheart Pact territory of Cyrodiil.",
+["name"] = "Cyrodiil Pact Skyshard Hunter",
+["points"] = 15,
+}
+,
+[693] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 15 Skyshards in the Daggerfall Covenant territory of Cyrodiil.",
+["name"] = "Cyrodiil Covenant Skyshards",
+["points"] = 15,
+}
+,
+[694] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 15 Skyshards in the Aldmeri Dominion territory of Cyrodiil.",
+["name"] = "Cyrodiil Aldmeri Skyshard Hunter",
+["points"] = 15,
+}
+,
+[695] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 16 Skyshards in Auridon.",
+["name"] = "Auridon Skyshard Hunter",
+["points"] = 15,
+}
+,
+[696] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the crazed Orc hunter Shagura at Hircine\'s Henge.",
+["name"] = "Shagura\'s Doom",
+["points"] = 5,
+}
+,
+[697] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the senche-tigress Nindaeril the Monsoon atop Nindaeril\'s Perch.",
+["name"] = "Monsoon Marauder",
+["points"] = 5,
+}
+,
+[698] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the nereid Lady Solace in Lady Solace\'s Fen.",
+["name"] = "Water Walloper",
+["points"] = 5,
+}
+,
+[699] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat Otho Rufinus, the poacher leader, at the Poacher Camp.",
+["name"] = "Poacher Pounder",
+["points"] = 5,
+}
+,
+[700] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the giant flesh atronach Thugrub the Reformed in Thugrub\'s Cave.",
+["name"] = "Thugrub Dissector",
+["points"] = 5,
+}
+,
+[701] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeat the lich Valanir the Restless at Valanir\'s Rest.",
+["name"] = "Valanir\'s Bane",
+["points"] = 5,
+}
+,
+[702] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete the Mages Guild series of quests.",
+["name"] = "Arch-Mage",
+["points"] = 50,
+}
+,
+[703] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete the Fighters Guild series of quests.",
+["name"] = "Fighters Guild Veteran",
+["points"] = 50,
+}
+,
+[704] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Buy drinks for your Undaunted companions at each gathering.",
+["name"] = "This One\'s On Me",
+["points"] = 15,
+}
+,
+[705] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of Grand Overlord in the Alliance War.",
+["name"] = "Alliance War Grand Overlord",
+["points"] = 10,
+}
+,
+[706] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn the rank of First Sergeant in the Alliance War.",
+["name"] = "Alliance War First Sergeant",
+["points"] = 10,
+}
+,
+[707] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Solve the puzzle of the Guardians in the Lost City of the Na-Totambu.",
+["name"] = "Na-Totambu Group Event",
+["points"] = 50,
+}
+,
+[708] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the flesh atronach at Razak\'s Wheel.",
+["name"] = "Razak\'s Wheel Group Event",
+["points"] = 50,
+}
+,
+[709] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat 1000 named enemies in Dungeons.",
+["name"] = "Dungeon Lord",
+["points"] = 50,
+}
+,
+[710] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat 1000 enemies in Dungeons.",
+["name"] = "Dungeon Marauder",
+["points"] = 10,
+}
+,
+[711] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat 10,000 enemies in Dungeons.",
+["name"] = "Dungeon Annihilator",
+["points"] = 50,
+}
+,
+[712] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[713] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Orc, Zilbash the Deceiver, at Obsidian Scar.",
+["name"] = "Obsidian Scar Group Event",
+["points"] = 50,
+}
+,
+[714] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Eternal One in the Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Group Event",
+["points"] = 50,
+}
+,
+[715] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[716] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Help ease cultural tensions and reconcile the allies in Grahtwood.",
+["name"] = "Peacemaker",
+["points"] = 5,
+}
+,
+[717] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 10 enemy Nightblades.",
+["name"] = "Nightblade Slayer",
+["points"] = 10,
+}
+,
+[718] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Redguard enemies in the Alliance War or Battlegrounds.",
+["name"] = "Redguard Slayer",
+["points"] = 10,
+}
+,
+[719] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Orc enemies in the Alliance War or Battlegrounds.",
+["name"] = "Orc Slayer",
+["points"] = 10,
+}
+,
+[720] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Dunmer enemies in the Alliance War or Battlegrounds.",
+["name"] = "Dark Elf Slayer",
+["points"] = 10,
+}
+,
+[721] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Nord enemies in the Alliance War or Battlegrounds.",
+["name"] = "Nord Slayer",
+["points"] = 10,
+}
+,
+[722] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Argonian enemies in the Alliance War or Battlegrounds.",
+["name"] = "Argonian Slayer",
+["points"] = 10,
+}
+,
+[723] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Bosmer enemies in the Alliance War or Battlegrounds.",
+["name"] = "Wood Elf Slayer",
+["points"] = 10,
+}
+,
+[724] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Altmer enemies in the Alliance War or Battlegrounds.",
+["name"] = "High Elf Slayer",
+["points"] = 10,
+}
+,
+[725] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Khajiit enemies in the Alliance War or Battlegrounds.",
+["name"] = "Khajiit Slayer",
+["points"] = 10,
+}
+,
+[726] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 Imperial enemies in the Alliance War or Battlegrounds.",
+["name"] = "Imperial Slayer",
+["points"] = 10,
+}
+,
+[727] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 12 Skyshards in Lower Craglorn.",
+["name"] = "Lower Craglorn Skyshards",
+["points"] = 15,
+}
+,
+[728] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[729] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[730] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Bloodmayne Cave.",
+["name"] = "Bloodmayne Cave Explorer",
+["points"] = 10,
+}
+,
+[731] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Breakneck Cave.",
+["name"] = "Breakneck Cave Explorer",
+["points"] = 10,
+}
+,
+[732] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Haynote Cave.",
+["name"] = "Haynote Cave Explorer",
+["points"] = 10,
+}
+,
+[733] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Nisin Cave.",
+["name"] = "Nisin Cave Explorer",
+["points"] = 10,
+}
+,
+[734] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Pothole Caverns.",
+["name"] = "Pothole Caverns Explorer",
+["points"] = 10,
+}
+,
+[735] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Serpent Hollow.",
+["name"] = "Serpent Hollow Explorer",
+["points"] = 10,
+}
+,
+[736] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Capstone Cave.",
+["name"] = "Capstone Cave Explorer",
+["points"] = 10,
+}
+,
+[737] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Echo Cave.",
+["name"] = "Echo Cave Explorer",
+["points"] = 10,
+}
+,
+[738] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Lipsand Tarn.",
+["name"] = "Lipsand Tarn Explorer",
+["points"] = 10,
+}
+,
+[739] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Red Ruby Cave.",
+["name"] = "Red Ruby Cave Explorer",
+["points"] = 10,
+}
+,
+[740] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Toadstool Hollow.",
+["name"] = "Toadstool Hollow Explorer",
+["points"] = 10,
+}
+,
+[741] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Underpall Cave.",
+["name"] = "Underpall Cave Explorer",
+["points"] = 10,
+}
+,
+[742] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Cracked Wood Cave.",
+["name"] = "Cracked Wood Cave Explorer",
+["points"] = 10,
+}
+,
+[743] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Kingscrest Cavern.",
+["name"] = "Kingscrest Cavern Explorer",
+["points"] = 10,
+}
+,
+[744] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Muck Valley Cavern.",
+["name"] = "Muck Valley Cavern Explorer",
+["points"] = 10,
+}
+,
+[745] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Newt Cave.",
+["name"] = "Newt Cave Explorer",
+["points"] = 10,
+}
+,
+[746] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Quickwater Cave.",
+["name"] = "Quickwater Cave Explorer",
+["points"] = 10,
+}
+,
+[747] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Vahtacen.",
+["name"] = "Vahtacen Explorer",
+["points"] = 10,
+}
+,
+[748] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find the Skyshard on top of the mountain in Cyrodiil.",
+["name"] = "Mountain Skyshard Hunter",
+["points"] = 5,
+}
+,
+[749] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Deal 1,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Damage Dealer",
+["points"] = 10,
+}
+,
+[750] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Deal 10,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Damage Dispenser",
+["points"] = 50,
+}
+,
+[751] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Heal 1,000,000 points of damage to allies in Dungeons.",
+["name"] = "Dungeon Healer",
+["points"] = 10,
+}
+,
+[752] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Heal 10,000,000 points of damage to allies in Dungeons.",
+["name"] = "Greater Dungeon Healer",
+["points"] = 50,
+}
+,
+[753] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Block 1,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Blocker",
+["points"] = 10,
+}
+,
+[754] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Block 10,000,000 points of damage in Dungeons.",
+["name"] = "Greater Dungeon Blocker",
+["points"] = 50,
+}
+,
+[755] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[756] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[757] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[758] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quests in Bruma.",
+["name"] = "Bruma Adventurer",
+["points"] = 10,
+}
+,
+[759] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quests in Cheydinhal.",
+["name"] = "Cheydinhal Adventurer",
+["points"] = 10,
+}
+,
+[760] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quests in Chorrol and Weynon Priory.",
+["name"] = "Chorrol Weynon Priory Adventurer",
+["points"] = 10,
+}
+,
+[761] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quests in Cropsford.",
+["name"] = "Cropsford Adventurer",
+["points"] = 10,
+}
+,
+[762] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quests in Vlastarus.",
+["name"] = "Vlastarus Adventurer",
+["points"] = 10,
+}
+,
+[763] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[764] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[765] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[766] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear all 18 caves in Cyrodiil.",
+["name"] = "Cyrodiil Cave Delver",
+["points"] = 50,
+}
+,
+[767] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete all quest achievements in Cyrodiil.",
+["name"] = "Cyrodiil Champion",
+["points"] = 50,
+}
+,
+[768] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Khenarthi\'s Roost.",
+["name"] = "Khenarthi\'s Roost Pathfinder",
+["points"] = 5,
+}
+,
+[769] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Auridon.",
+["name"] = "Auridon Pathfinder",
+["points"] = 5,
+}
+,
+[770] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Bleakrock Isle.",
+["name"] = "Bleakrock Isle Pathfinder",
+["points"] = 5,
+}
+,
+[771] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Bal Foyen.",
+["name"] = "Bal Foyen Pathfinder",
+["points"] = 5,
+}
+,
+[772] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Stonefalls.",
+["name"] = "Stonefalls Pathfinder",
+["points"] = 5,
+}
+,
+[773] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Stros M\'kai.",
+["name"] = "Stros M\'kai Pathfinder",
+["points"] = 5,
+}
+,
+[774] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Betnikh.",
+["name"] = "Betnikh Pathfinder",
+["points"] = 5,
+}
+,
+[775] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Glenumbra.",
+["name"] = "Glenumbra Pathfinder",
+["points"] = 5,
+}
+,
+[776] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[777] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[778] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Unravel the mysteries of Rahni\'Za, School of Warriors.",
+["name"] = "Champion of Rahni\'Za",
+["points"] = 15,
+}
+,
+[779] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Positive Potency runes.",
+["name"] = "Positive Potency",
+["points"] = 10,
+}
+,
+[780] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Negative Potency runes.",
+["name"] = "Negative Potency",
+["points"] = 10,
+}
+,
+[781] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Essence runes.",
+["name"] = "Essence",
+["points"] = 10,
+}
+,
+[782] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[783] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[784] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[785] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[786] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[787] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[788] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Aspect runes.",
+["name"] = "Aspect",
+["points"] = 10,
+}
+,
+[789] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[790] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[791] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[792] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[793] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[794] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[795] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[796] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[797] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[798] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[799] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[800] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[801] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[802] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[803] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[804] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[805] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[806] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[807] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[808] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[809] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[810] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[811] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[812] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[813] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[814] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[815] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[816] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[817] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[818] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[819] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[820] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[821] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[822] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[823] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[824] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[825] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[826] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[827] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[828] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[829] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[830] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[831] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[832] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Grahtwood.",
+["name"] = "Grahtwood Pathfinder",
+["points"] = 5,
+}
+,
+[833] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Stormhaven.",
+["name"] = "Stormhaven Pathfinder",
+["points"] = 5,
+}
+,
+[834] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Deshaan.",
+["name"] = "Deshaan Pathfinder",
+["points"] = 5,
+}
+,
+[835] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Reaper\'s March.",
+["name"] = "Reaper\'s March Pathfinder",
+["points"] = 5,
+}
+,
+[836] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Defeated by slaughterfish.",
+["name"] = "Slaughtered",
+["points"] = 5,
+}
+,
+[837] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[838] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all the beasts of Tamriel.",
+["name"] = "Tamriel Beast Collector",
+["points"] = 10,
+}
+,
+[839] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Greenshade.",
+["name"] = "Greenshade Pathfinder",
+["points"] = 5,
+}
+,
+[840] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Rivenspire.",
+["name"] = "Rivenspire Pathfinder",
+["points"] = 5,
+}
+,
+[841] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all the undead of Tamriel.",
+["name"] = "Undead Hoarder",
+["points"] = 10,
+}
+,
+[842] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all the chitinous creatures of Tamriel.",
+["name"] = "Chitin Accumulator",
+["points"] = 10,
+}
+,
+[843] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from nature spirits and natural creatures from across Tamriel.",
+["name"] = "Nature Collector",
+["points"] = 10,
+}
+,
+[844] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all the monstrous creatures of Tamriel.",
+["name"] = "Monstrous Component Collector",
+["points"] = 10,
+}
+,
+[845] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Shadowfen.",
+["name"] = "Shadowfen Pathfinder",
+["points"] = 5,
+}
+,
+[846] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from Dwemer constructs.",
+["name"] = "Dwarven Secrets Gatherer",
+["points"] = 10,
+}
+,
+[847] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all types of atronachs.",
+["name"] = "Atronach Element Collector",
+["points"] = 10,
+}
+,
+[848] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Collect trophies from all types of slain Daedra.",
+["name"] = "Oblivion Shard Gatherer",
+["points"] = 10,
+}
+,
+[849] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Alik\'r Desert.",
+["name"] = "Alik\'r Desert Pathfinder",
+["points"] = 5,
+}
+,
+[850] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 200 Spiders in Veteran Fungal Grotto II.",
+["name"] = "Veteran Arachnid Slayer",
+["points"] = 10,
+}
+,
+[851] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 425 Obsidian Warriors in Veteran Fungal Grotto II.",
+["name"] = "Veteran Obsidian Slayer",
+["points"] = 10,
+}
+,
+[852] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 120 Skeletons in Veteran Banished Cells II.",
+["name"] = "Veteran Bonebreaker II",
+["points"] = 10,
+}
+,
+[853] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 300 Dremora in Veteran Banished Cells II.",
+["name"] = "Rilis Dremora Slayer",
+["points"] = 10,
+}
+,
+[854] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 220 Vampire Thralls in Veteran Spindleclutch II.",
+["name"] = "Veteran Thrall Slayer",
+["points"] = 10,
+}
+,
+[855] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 65 Flesh Atronachs in Veteran Spindleclutch II.",
+["name"] = "Veteran Flesh Atronach Conqueror",
+["points"] = 10,
+}
+,
+[856] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 200 Kwama in Veteran Darkshade Caverns II.",
+["name"] = "Veteran Kwama Slayer II",
+["points"] = 10,
+}
+,
+[857] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 800 Dwarven Constructs in Veteran Darkshade Caverns II.",
+["name"] = "Veteran Construct Slayer",
+["points"] = 10,
+}
+,
+[858] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 140 Banekin in Veteran Elden Hollow II.",
+["name"] = "Veteran Banekin Slayer",
+["points"] = 10,
+}
+,
+[859] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 60 Lurchers in Veteran Elden Hollow II.",
+["name"] = "Veteran Lurcher Slayer",
+["points"] = 10,
+}
+,
+[860] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 350 Zombies in Veteran Wayrest Sewers II.",
+["name"] = "Veteran Zombie Slayer",
+["points"] = 10,
+}
+,
+[861] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 40 Bone Colossi in Veteran Wayrest Sewers II.",
+["name"] = "Veteran Colossus Slayer",
+["points"] = 10,
+}
+,
+[862] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Malabal Tor.",
+["name"] = "Malabal Tor Pathfinder",
+["points"] = 5,
+}
+,
+[863] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in the Rift.",
+["name"] = "The Rift Pathfinder",
+["points"] = 5,
+}
+,
+[864] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Coldharbour.",
+["name"] = "Coldharbour Pathfinder",
+["points"] = 5,
+}
+,
+[865] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Bangkorai.",
+["name"] = "Bangkorai Pathfinder",
+["points"] = 5,
+}
+,
+[866] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Eastmarch.",
+["name"] = "Eastmarch Pathfinder",
+["points"] = 5,
+}
+,
+[867] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in the core regions of the Aldmeri Dominion, the Daggerfall Covenant, the Ebonheart Pact, and Coldharbour.",
+["name"] = "Tamriel Trailblazer",
+["points"] = 50,
+}
+,
+[868] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[869] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Extort gold from merchants across Tamriel.",
+["name"] = "Crime Pays",
+["points"] = 15,
+}
+,
+[870] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Sound the war horn in Veteran Hel Ra Citadel and defeat the ancient warriors who answer.",
+["name"] = "Hel Ra Citadel: The War Horn",
+["points"] = 5,
+}
+,
+[871] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Share your wealth with needy beggars across Tamriel.",
+["name"] = "Give to the Poor",
+["points"] = 15,
+}
+,
+[872] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Track the movements of M\'aiq the Liar across Tamriel and beyond.",
+["name"] = "I Like M\'aiq",
+["points"] = 15,
+}
+,
+[873] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Bring light to the dark places of the world.",
+["name"] = "Lightbringer",
+["points"] = 15,
+}
+,
+[874] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Zatalguch in the Village of the Lost.",
+["name"] = "Village of the Lost Group Event",
+["points"] = 50,
+}
+,
+[875] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[876] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien\'eth in Veteran Crypt of Hearts II.",
+["name"] = "Crypt of Hearts II Conqueror",
+["points"] = 10,
+}
+,
+[877] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[878] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran City of Ash II by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
+["name"] = "City of Ash II Conqueror",
+["points"] = 15,
+}
+,
+[879] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[880] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, the Lord Warden\'s Council, and Lord Warden Dusk in Veteran Imperial City Prison.",
+["name"] = "Imperial City Prison Conqueror",
+["points"] = 15,
+}
+,
+[881] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[882] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat the Emperor of your Home Campaign in the Alliance War.",
+["name"] = "Emperor Assassin",
+["points"] = 50,
+}
+,
+[883] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[884] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Molavar.",
+["name"] = "Molavar Explorer",
+["points"] = 10,
+}
+,
+[885] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Rkundzelft.",
+["name"] = "Rkundzelft Explorer",
+["points"] = 10,
+}
+,
+[886] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Serpent\'s Nest.",
+["name"] = "Serpent\'s Nest Explorer",
+["points"] = 10,
+}
+,
+[887] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Ilthag\'s Undertower.",
+["name"] = "Ilthag\'s Undertower Explorer",
+["points"] = 10,
+}
+,
+[888] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Ruins of Kardala.",
+["name"] = "Ruins of Kardala Explorer",
+["points"] = 10,
+}
+,
+[889] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Loth\'Na Caverns.",
+["name"] = "Loth\'Na Caverns Explorer",
+["points"] = 10,
+}
+,
+[890] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Rkhardahrk.",
+["name"] = "Rkhardahrk Explorer",
+["points"] = 10,
+}
+,
+[891] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Haddock\'s Market.",
+["name"] = "Haddock\'s Market Explorer",
+["points"] = 10,
+}
+,
+[892] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Chiselshriek Mine.",
+["name"] = "Chiselshriek Mine Explorer",
+["points"] = 10,
+}
+,
+[893] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Buried Sands.",
+["name"] = "Buried Sands Explorer",
+["points"] = 10,
+}
+,
+[894] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Mtharnaz.",
+["name"] = "Mtharnaz Explorer",
+["points"] = 10,
+}
+,
+[895] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Howling Sepulchers.",
+["name"] = "The Howling Sepulchers Explorer",
+["points"] = 10,
+}
+,
+[896] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Balamath.",
+["name"] = "Balamath Explorer",
+["points"] = 10,
+}
+,
+[897] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Fearfangs Cavern.",
+["name"] = "Fearfangs Cavern Explorer",
+["points"] = 10,
+}
+,
+[898] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Exarch\'s Stronghold.",
+["name"] = "Exarch\'s Stronghold Explorer",
+["points"] = 10,
+}
+,
+[899] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Zalgaz\'s Den.",
+["name"] = "Zalgaz\'s Den Explorer",
+["points"] = 10,
+}
+,
+[900] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear the Tombs of the Na-Totambu.",
+["name"] = "Tombs of the Na-Totambu Explorer",
+["points"] = 10,
+}
+,
+[901] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Explore and clear Hircine\'s Haunt.",
+["name"] = "Hircine\'s Haunt Explorer",
+["points"] = 10,
+}
+,
+[902] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Lower Craglorn.",
+["name"] = "Lower Craglorn Pathfinder",
+["points"] = 5,
+}
+,
+[903] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Reach level 10 and become eligible to enter Cyrodiil and join the Alliance War.",
+["name"] = "Cyrodiil Recruit",
+["points"] = 10,
+}
+,
+[904] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat an enemy Emperor from any campaign.",
+["name"] = "Emperor Slayer",
+["points"] = 50,
+}
+,
+[905] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Shada and cleanse the waters of Shada\'s Tear.",
+["name"] = "Shada\'s Tear Curse-Breaker",
+["points"] = 15,
+}
+,
+[906] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Uncover the secrets hidden within the Seeker\'s Archive.",
+["name"] = "Tenacious Seeker",
+["points"] = 15,
+}
+,
+[907] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Prevent a catastrophic explosion of magic from within the Spellscar.",
+["name"] = "Spellscar Defender",
+["points"] = 15,
+}
+,
+[908] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Yamanu-ko and end the strife in Elinhir.",
+["name"] = "Exalted of Elinhir",
+["points"] = 15,
+}
+,
+[909] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Discover why the Celestials have appeared in Craglorn.",
+["name"] = "Celestial Investigator",
+["points"] = 50,
+}
+,
+[910] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[911] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[912] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all 6 Skyshards in Upper Craglorn.",
+["name"] = "Upper Craglorn Skyshards",
+["points"] = 15,
+}
+,
+[913] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "QA_test",
+["points"] = 0,
+}
+,
+[914] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[915] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[916] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Catch all 12 rare fish in Craglorn.",
+["name"] = "Craglorn Angler",
+["points"] = 5,
+}
+,
+[917] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[918] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[919] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[920] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[921] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[922] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[923] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[924] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[925] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[926] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[927] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[928] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[929] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[930] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[931] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[932] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[933] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[934] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[935] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Dominate the Alliance War battlefield and become Emperor of Tamriel. \n\nLong may you reign!",
+["name"] = "Emperor!",
+["points"] = 50,
+}
+,
+[936] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Dismantle the Serpent\'s forces and vanquish the Exalted Viper.",
+["name"] = "Serpents and Secrets",
+["points"] = 50,
+}
+,
+[937] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales in Upper Craglorn.",
+["name"] = "Upper Craglorn Pathfinder",
+["points"] = 5,
+}
+,
+[938] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[939] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 250 Spiderkith in Veteran Crypt of Hearts II.",
+["name"] = "Veteran Spiderkith Slayer",
+["points"] = 10,
+}
+,
+[940] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 50 Flesh Atronachs in Veteran Crypt of Hearts II.",
+["name"] = "Veteran Flesh Atronach Slayer",
+["points"] = 10,
+}
+,
+[941] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, Chamber Guardian, Ilambris Amalgam, and Mezeluth, before defeating Nerien\'eth in Veteran Crypt of Hearts II within thirty minutes of starting the dungeon. Timer starts when the entrance gate opens.",
+["name"] = "Crypt of Hearts II Assassin",
+["points"] = 50,
+}
+,
+[942] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, Chamber Guardian, Ilambris Amalgam, and Mezeluth, before defeating Nerien\'eth in Veteran Crypt of Hearts II without suffering a group member death.",
+["name"] = "Deadly Crypt Survivor",
+["points"] = 50,
+}
+,
+[943] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat a hidden threat to the Dominion in Auridon.",
+["name"] = "A Rule Unquestioned",
+["points"] = 15,
+}
+,
+[944] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "You thwarted perilous Daedric schemes in Grahtwood.",
+["name"] = "Iconoclast",
+["points"] = 15,
+}
+,
+[945] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Drive corruption from the heart of Valenwood in Greenshade.",
+["name"] = "Spirit of the Bosmer",
+["points"] = 15,
+}
+,
+[946] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Restore the Silvenar and the Green Lady to their rightful place in Malabal Tor.",
+["name"] = "Matchmaker",
+["points"] = 15,
+}
+,
+[947] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Walk the Two Moons Path in Reaper\'s March.",
+["name"] = "Hallowed Moons",
+["points"] = 15,
+}
+,
+[948] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Imprison the Brothers of Strife in Stonefalls.",
+["name"] = "Hearts of Darkness",
+["points"] = 15,
+}
+,
+[949] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Avert the destruction of Deshaan.",
+["name"] = "Plague Eater",
+["points"] = 15,
+}
+,
+[950] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "You defeated a great threat to the Hist in Shadowfen.",
+["name"] = "Egg and Root",
+["points"] = 15,
+}
+,
+[951] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Prevent a great threat to the Skald-King in Eastmarch.",
+["name"] = "Blood Feud",
+["points"] = 15,
+}
+,
+[952] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat the Worm Cult in the Rift.",
+["name"] = "Shattered Remnants",
+["points"] = 15,
+}
+,
+[953] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Stop an insidious cultist plot in Glenumbra.",
+["name"] = "Ritual Destruction",
+["points"] = 15,
+}
+,
+[954] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "End the nightmares in Stormhaven.",
+["name"] = "Rude Awakening",
+["points"] = 15,
+}
+,
+[955] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "End the blood-curse and restore order in Rivenspire.",
+["name"] = "Curse Breaker",
+["points"] = 15,
+}
+,
+[956] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Put the dead to rest in Alik\'r.",
+["name"] = "Consecrated Ground",
+["points"] = 15,
+}
+,
+[957] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defy the will of Molag Bal in Coldharbour.",
+["name"] = "Radiant Champion",
+["points"] = 15,
+}
+,
+[958] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Drive the Imperial forces out of Bangkorai.",
+["name"] = "End of Empire",
+["points"] = 15,
+}
+,
+[959] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 enemy Nightblades.",
+["name"] = "Grand Nightblade Slayer",
+["points"] = 15,
+}
+,
+[960] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 enemy Sorcerers.",
+["name"] = "Grand Sorcerer Slayer",
+["points"] = 15,
+}
+,
+[961] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 enemy Templars.",
+["name"] = "Grand Templar Slayer",
+["points"] = 15,
+}
+,
+[962] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 enemy Dragonknights.",
+["name"] = "Grand Dragonknight Slayer",
+["points"] = 15,
+}
+,
+[963] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Help capture a Resource (Farm, Lumber Mill, or Mine), and Keep in Cyrodiil.",
+["name"] = "Support the Fight",
+["points"] = 10,
+}
+,
+[964] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Glenumbra.",
+["name"] = "Glenumbra Master Explorer",
+["points"] = 50,
+}
+,
+[965] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Stormhaven.",
+["name"] = "Stormhaven Master Explorer",
+["points"] = 50,
+}
+,
+[966] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Rivenspire.",
+["name"] = "Rivenspire Master Explorer",
+["points"] = 50,
+}
+,
+[967] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in the Alik\'r Desert.",
+["name"] = "Alik\'r Desert Master Explorer",
+["points"] = 50,
+}
+,
+[968] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Bangkorai.",
+["name"] = "Bangkorai Master Explorer",
+["points"] = 50,
+}
+,
+[969] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all caves and locales throughout the Aldmeri Dominion Territory.",
+["name"] = "Aldmeri Master Explorer",
+["points"] = 50,
+}
+,
+[970] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Stonefalls.",
+["name"] = "Stonefalls Master Explorer",
+["points"] = 50,
+}
+,
+[971] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Deshaan.",
+["name"] = "Deshaan Master Explorer",
+["points"] = 50,
+}
+,
+[972] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Shadowfen.",
+["name"] = "Shadowfen Master Explorer",
+["points"] = 50,
+}
+,
+[973] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Eastmarch.",
+["name"] = "Eastmarch Master Explorer",
+["points"] = 50,
+}
+,
+[974] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in The Rift.",
+["name"] = "The Rift Master Explorer",
+["points"] = 50,
+}
+,
+[975] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Bleakrock and Bal Foyen.",
+["name"] = "Bleakrock and Bal Foyen Explorer",
+["points"] = 15,
+}
+,
+[976] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Auridon.",
+["name"] = "Auridon Master Explorer",
+["points"] = 50,
+}
+,
+[977] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Grahtwood.",
+["name"] = "Grahtwood Master Explorer",
+["points"] = 50,
+}
+,
+[978] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Greenshade.",
+["name"] = "Greenshade Master Explorer",
+["points"] = 50,
+}
+,
+[979] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Malabal Tor.",
+["name"] = "Malabal Tor Master Explorer",
+["points"] = 50,
+}
+,
+[980] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Reaper\'s March.",
+["name"] = "Reaper\'s March Master Explorer",
+["points"] = 50,
+}
+,
+[981] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover all of the striking locales on Stros M\'kai and Betnikh.",
+["name"] = "Stros M\'kai and Betnikh Explorer",
+["points"] = 15,
+}
+,
+[982] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all caves and locales throughout the Daggerfall Covenant Territory.",
+["name"] = "Daggerfall Master Explorer",
+["points"] = 50,
+}
+,
+[983] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all caves and locales throughout the Ebonheart Pact Territory.",
+["name"] = "Ebonheart Master Explorer",
+["points"] = 50,
+}
+,
+[984] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six caves and striking locales in Coldharbour.",
+["name"] = "Coldharbour Master Explorer",
+["points"] = 50,
+}
+,
+[985] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all twelve explorable caves in Lower Craglorn.",
+["name"] = "Lower Craglorn Cave Delver",
+["points"] = 15,
+}
+,
+[986] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all caves and locales throughout Lower Craglorn.",
+["name"] = "Lower Craglorn Master Explorer",
+["points"] = 50,
+}
+,
+[987] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Potency runes.",
+["name"] = "Potency",
+["points"] = 10,
+}
+,
+[988] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[989] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Find all the Skyshards located throughout Tamriel.",
+["name"] = "Tamriel Skyshard Hunter",
+["points"] = 50,
+}
+,
+[990] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Mage, freeing her from the Serpent\'s control.",
+["name"] = "Aetherian Archive Completed",
+["points"] = 50,
+}
+,
+[991] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Warrior, freeing him from the Serpent\'s control.",
+["name"] = "Hel Ra Citadel Completed",
+["points"] = 50,
+}
+,
+[992] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Conquer all challengers and earn the title of Dragonstar Arena Champion!",
+["name"] = "Dragonstar Arena Champion",
+["points"] = 50,
+}
+,
+[993] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 1.",
+["name"] = "Soul Shriven in Coldharbour",
+["points"] = 10,
+}
+,
+[994] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 1.5.",
+["name"] = "The Harborage",
+["points"] = 10,
+}
+,
+[995] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 2.",
+["name"] = "Daughter of Giants",
+["points"] = 10,
+}
+,
+[996] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 2.5.",
+["name"] = "Chasing Shadows",
+["points"] = 10,
+}
+,
+[997] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 3.",
+["name"] = "Castle of the Worm",
+["points"] = 10,
+}
+,
+[998] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 3.5.",
+["name"] = "The Tharn Speaks",
+["points"] = 10,
+}
+,
+[999] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 4.",
+["name"] = "The Halls of Torment",
+["points"] = 10,
+}
+,
+[1000] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 4.5.",
+["name"] = "The Valley of Blades",
+["points"] = 10,
+}
+,
+[1001] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 5.",
+["name"] = "The Shadow of Sancre Tor",
+["points"] = 10,
+}
+,
+[1002] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 5.5.",
+["name"] = "Council of the Five Companions",
+["points"] = 10,
+}
+,
+[1003] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete Main Quest Chapter 6.",
+["name"] = "The God of Schemes",
+["points"] = 10,
+}
+,
+[1004] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Join the Mages Guild.",
+["name"] = "Student of the Mages Guild",
+["points"] = 5,
+}
+,
+[1005] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Join the Fighters Guild.",
+["name"] = "Associate of the Fighters Guild",
+["points"] = 5,
+}
+,
+[1006] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Join the Undaunted.",
+["name"] = "Recruit of the Undaunted",
+["points"] = 5,
+}
+,
+[1007] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Become a Werewolf.",
+["name"] = "Lycanthropy",
+["points"] = 10,
+}
+,
+[1008] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Become a Vampire.",
+["name"] = "Vampirism",
+["points"] = 10,
+}
+,
+[1009] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach the max level of the Werewolf Skill Line.",
+["name"] = "Lycanthropy Master",
+["points"] = 50,
+}
+,
+[1010] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach the max level of the Vampire Skill Line.",
+["name"] = "Vampirism Master",
+["points"] = 50,
+}
+,
+[1011] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach the max level of the Mages Guild Skill Line.",
+["name"] = "Mages Guild Skill Master",
+["points"] = 50,
+}
+,
+[1012] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach the max level of the Fighters Guild Skill Line.",
+["name"] = "Fighters Guild Skill Master",
+["points"] = 50,
+}
+,
+[1013] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach rank 5 in the Undaunted Skill Line.",
+["name"] = "Undaunted Skill Master",
+["points"] = 50,
+}
+,
+[1014] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Exarch Arnoth and clear Skyreach Hold of the Scaled Court and its allies.",
+["name"] = "Shatterer of Scales",
+["points"] = 15,
+}
+,
+[1015] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Virmaril the Betrayer and his undead legions within Skyreach Catacombs.",
+["name"] = "Vanquisher of Virmaril",
+["points"] = 15,
+}
+,
+[1016] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Defeat Aetherion and restore the Nedic wards within Skyreach Pinnacle.",
+["name"] = "Warden of the Pinnacle",
+["points"] = 15,
+}
+,
+[1017] = {
+["Category"] = "NIL",
+["description"] = "Deconstruct 50 items.",
+["name"] = "Apprentice Deconstructor",
+["points"] = 5,
+}
+,
+[1018] = {
+["Category"] = "NIL",
+["description"] = "Deconstruct 100 items.",
+["name"] = "Expert Deconstructor",
+["points"] = 5,
+}
+,
+[1019] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct 1000 items.",
+["name"] = "Master Deconstructor",
+["points"] = 10,
+}
+,
+[1020] = {
+["Category"] = "NIL",
+["description"] = "Refine raw materials 30 times.",
+["name"] = "Apprentice of Refinement",
+["points"] = 5,
+}
+,
+[1021] = {
+["Category"] = "NIL",
+["description"] = "Refine raw materials 300 times.",
+["name"] = "Expert of Refinement",
+["points"] = 5,
+}
+,
+[1022] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Refine raw materials 3000 times.",
+["name"] = "Master of Refinement",
+["points"] = 10,
+}
+,
+[1023] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Research a Trait for any weapon or armor type.",
+["name"] = "Learn a Trait",
+["points"] = 5,
+}
+,
+[1024] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1025] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn any Racial Style.",
+["name"] = "Racial Style Learned",
+["points"] = 5,
+}
+,
+[1026] = {
+["Category"] = "NIL",
+["description"] = "Learn 10 Provisioning Recipes.",
+["name"] = "Recipe Card",
+["points"] = 5,
+}
+,
+[1027] = {
+["Category"] = "NIL",
+["description"] = "Learn 50 Provisioning Recipes.",
+["name"] = "Recipe Book",
+["points"] = 10,
+}
+,
+[1028] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 100 Provisioning Recipes.",
+["name"] = "Recipe Compendium",
+["points"] = 15,
+}
+,
+[1029] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1030] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all Alliance Racial Styles.",
+["name"] = "Alliance Style Master",
+["points"] = 15,
+}
+,
+[1031] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain an Alchemy rank of 50.",
+["name"] = "Master Alchemist",
+["points"] = 50,
+}
+,
+[1032] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain a Blacksmith rank of 50.",
+["name"] = "Master Blacksmith",
+["points"] = 50,
+}
+,
+[1033] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain a Clothier rank of 50.",
+["name"] = "Master Clothier",
+["points"] = 50,
+}
+,
+[1034] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain an Enchanting rank of 50.",
+["name"] = "Master Enchanter",
+["points"] = 50,
+}
+,
+[1035] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain a Provisioning rank of 50.",
+["name"] = "Master Provisioner",
+["points"] = 50,
+}
+,
+[1036] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain a Woodworking rank of 50.",
+["name"] = "Master Woodworker",
+["points"] = 50,
+}
+,
+[1037] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1038] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1039] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1040] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Improve Blacksmithing items to all available Qualities.",
+["name"] = "Legendary Blacksmith",
+["points"] = 50,
+}
+,
+[1041] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Research every available Trait at least once.",
+["name"] = "Trait Master",
+["points"] = 50,
+}
+,
+[1042] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Have a character apply a Legendary Enchantment that they created, to a Legendary piece of gear that they created.",
+["name"] = "Truly Legendary",
+["points"] = 50,
+}
+,
+[1043] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all Rare Racial Styles.",
+["name"] = "Rare Style Master",
+["points"] = 50,
+}
+,
+[1044] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Improve Woodworking items to all available Qualities.",
+["name"] = "Legendary Woodworker",
+["points"] = 50,
+}
+,
+[1045] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every trait for each of the Alchemy reagents listed below.",
+["name"] = "Botanist",
+["points"] = 50,
+}
+,
+[1046] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Make a Renowned and an Epic Food or Drink.",
+["name"] = "Master Chef",
+["points"] = 50,
+}
+,
+[1047] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1048] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Improve Clothier items to all available Qualities.",
+["name"] = "Legendary Clothier",
+["points"] = 50,
+}
+,
+[1049] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Root Sunder.",
+["name"] = "Root Sunder Conqueror",
+["points"] = 50,
+}
+,
+[1050] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the Champions in Rulanyil\'s Fall.",
+["name"] = "Rulanyil\'s Fall Conqueror",
+["points"] = 50,
+}
+,
+[1051] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Crimson Cove.",
+["name"] = "Crimson Cove Conqueror",
+["points"] = 50,
+}
+,
+[1052] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in The Vile Manse.",
+["name"] = "The Vile Manse Conqueror",
+["points"] = 50,
+}
+,
+[1053] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Bad Man\'s Hallows.",
+["name"] = "Bad Man\'s Hallows Conqueror",
+["points"] = 50,
+}
+,
+[1054] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Conqueror",
+["points"] = 50,
+}
+,
+[1055] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Razak\'s Wheel.",
+["name"] = "Razak\'s Wheel Conqueror",
+["points"] = 50,
+}
+,
+[1056] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the champions in Village of the Lost.",
+["name"] = "Village of the Lost Conqueror",
+["points"] = 50,
+}
+,
+[1057] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Root Sunder.",
+["name"] = "Root Sunder Vanquisher",
+["points"] = 10,
+}
+,
+[1058] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Rulanyil\'s Fall.",
+["name"] = "Rulanyil\'s Fall Vanquisher",
+["points"] = 10,
+}
+,
+[1059] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Crimson Cove.",
+["name"] = "Crimson Cove Vanquisher",
+["points"] = 10,
+}
+,
+[1060] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in The Vile Manse.",
+["name"] = "The Vile Manse Vanquisher",
+["points"] = 10,
+}
+,
+[1061] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Bad Man\'s Hallows.",
+["name"] = "Bad Man\'s Hallows Vanquisher",
+["points"] = 10,
+}
+,
+[1062] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Vanquisher",
+["points"] = 10,
+}
+,
+[1063] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Razak\'s Wheel.",
+["name"] = "Razak\'s Wheel Vanquisher",
+["points"] = 10,
+}
+,
+[1064] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat three of the champions in Village of the Lost.",
+["name"] = "Village of the Lost Vanquisher",
+["points"] = 10,
+}
+,
+[1065] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1066] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1067] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1068] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the Public Dungeon champions in the Ebonheart Pact.",
+["name"] = "Ebonheart Pact Conqueror",
+["points"] = 50,
+}
+,
+[1069] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the Public Dungeon champions in the Aldmeri Dominion.",
+["name"] = "Aldmeri Dominion Conqueror",
+["points"] = 50,
+}
+,
+[1070] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all of the Public Dungeon champions in the Daggerfall Covenant.",
+["name"] = "Daggerfall Covenant Conqueror",
+["points"] = 50,
+}
+,
+[1071] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete the listed Speed Challenges.",
+["name"] = "Complete All Speed Challenges",
+["points"] = 50,
+}
+,
+[1072] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete the listed Death Challenges.",
+["name"] = "Complete All Death Challenges",
+["points"] = 50,
+}
+,
+[1073] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Ebonheart Pact.",
+["name"] = "Vanquisher of the Pact",
+["points"] = 50,
+}
+,
+[1074] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Daggerfall Covenant.",
+["name"] = "Vanquisher of the Covenant",
+["points"] = 50,
+}
+,
+[1075] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Aldmeri Dominion.",
+["name"] = "Vanquisher of the Dominion",
+["points"] = 50,
+}
+,
+[1076] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1077] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1078] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete a Weekly Trial.",
+["name"] = "Weekly Trial Complete",
+["points"] = 50,
+}
+,
+[1079] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Completed a Weekly Trial within 33 minutes.",
+["name"] = "Time Trial: Weekly",
+["points"] = 50,
+}
+,
+[1080] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
+["name"] = "Time Trial: Hel Ra Citadel",
+["points"] = 50,
+}
+,
+[1081] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Completed the Aetherian Archive within a time limit of 33 minutes.",
+["name"] = "Time Trial: Aetherian Archive",
+["points"] = 50,
+}
+,
+[1082] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Rescue all of the members of the failed Undaunted expedition to the Deadlands of Mehrunes Dagon.",
+["name"] = "Undaunted Rescuer",
+["points"] = 10,
+}
+,
+[1083] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1084] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "In Veteran Crypt of Hearts II, allow four of Nerien\'eth\'s Students to survive until he takes the Ebony Blade before defeating them all.",
+["name"] = "The Blade\'s Edge",
+["points"] = 50,
+}
+,
+[1085] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Make a Renowned Food or Drink.",
+["name"] = "Renowned Provisioner",
+["points"] = 10,
+}
+,
+[1086] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Make an Epic Food or Drink.",
+["name"] = "Epic Provisioner",
+["points"] = 15,
+}
+,
+[1087] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Blessed Thistle Alchemy reagent.",
+["name"] = "Blessed Thistle",
+["points"] = 5,
+}
+,
+[1088] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Wormwood Alchemy reagent.",
+["name"] = "Wormwood",
+["points"] = 5,
+}
+,
+[1089] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Lady\'s Smock Alchemy reagent.",
+["name"] = "Lady\'s Smock",
+["points"] = 5,
+}
+,
+[1090] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Bugloss Alchemy reagent.",
+["name"] = "Bugloss",
+["points"] = 5,
+}
+,
+[1091] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Dragonthorn Alchemy reagent.",
+["name"] = "Dragonthorn",
+["points"] = 5,
+}
+,
+[1092] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Mountain Flower Alchemy reagent.",
+["name"] = "Mountain Flower",
+["points"] = 5,
+}
+,
+[1093] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Columbine Alchemy reagent.",
+["name"] = "Columbine",
+["points"] = 5,
+}
+,
+[1094] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the Traits for the Corn Flower Alchemy Plant.",
+["name"] = "Corn Flower",
+["points"] = 5,
+}
+,
+[1095] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Nirnroot Alchemy reagent.",
+["name"] = "Nirnroot",
+["points"] = 5,
+}
+,
+[1096] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Water Hyacinth Alchemy reagent.",
+["name"] = "Water Hyacinth",
+["points"] = 5,
+}
+,
+[1097] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Stinkhorn Alchemy reagent.",
+["name"] = "Stinkhorn",
+["points"] = 5,
+}
+,
+[1098] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Blue Entoloma Alchemy reagent.",
+["name"] = "Blue Entoloma",
+["points"] = 5,
+}
+,
+[1099] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Emetic Russula Alchemy reagent.",
+["name"] = "Emetic Russula",
+["points"] = 5,
+}
+,
+[1100] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Violet Coprinus Alchemy reagent.",
+["name"] = "Violet Coprinus",
+["points"] = 5,
+}
+,
+[1101] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Namira\'s Rot Alchemy reagent.",
+["name"] = "Namira\'s Rot",
+["points"] = 5,
+}
+,
+[1102] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the White Cap Alchemy reagent.",
+["name"] = "White Cap",
+["points"] = 5,
+}
+,
+[1103] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Luminous Russula Alchemy reagent.",
+["name"] = "Luminous Russula",
+["points"] = 5,
+}
+,
+[1104] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all of the Traits for the Imp Stool Alchemy reagent.",
+["name"] = "Imp Stool",
+["points"] = 5,
+}
+,
+[1105] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 300 Dremora in Veteran City of Ash II.",
+["name"] = "Mehrunes Dremora Slayer",
+["points"] = 10,
+}
+,
+[1106] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 50 Flame Colossi in Veteran City of Ash II.",
+["name"] = "Veteran Flame Colossus Slayer",
+["points"] = 10,
+}
+,
+[1107] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Rukhan, Marruz, Akezel, Urata the Legion, Horvantud the Fire Maw, the Ash Titan, and the Daedra at the bridge to Valkyn Skoria, before defeating Valkyn Skoria himself in Veteran City of Ash II without suffering a group member death.",
+["name"] = "Deadly Deadlands Survivor",
+["points"] = 50,
+}
+,
+[1108] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Rukhan, Marruz, Akezel, Urata the Legion, Horvantud the Fire Maw, and the Ash Titan; reassemble the bridge; and defeat Valkyn Skoria himself in Veteran City of Ash II, all within thirty minutes. Timer starts when players enter the Inner Grove.",
+["name"] = "City of Ash II Assassin",
+["points"] = 50,
+}
+,
+[1109] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill all the named champions lurking in the Imperial Sewers",
+["name"] = "Sewer Subjugator",
+["points"] = 15,
+}
+,
+[1110] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1111] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Explore the culinary traditions of the Dremora.",
+["name"] = "Easy as Pie",
+["points"] = 5,
+}
+,
+[1112] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Complete the Gray Passage pilgrimage within the alloted time limit.",
+["name"] = "Craglorn Pilgrim",
+["points"] = 15,
+}
+,
+[1113] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Use the feed pile in Sanctum Ophidia and survive the ensuing battle.",
+["name"] = "Sanctum Ophidia: Feeding Pit",
+["points"] = 5,
+}
+,
+[1114] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "In Veteran City of Ash II, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
+["name"] = "A World On Fire",
+["points"] = 50,
+}
+,
+[1115] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Deal 1,000,000 points of damage in Trials.",
+["name"] = "Trials Damage Dealer",
+["points"] = 10,
+}
+,
+[1116] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Heal 1,000,000 points of damage to allies in Trials.",
+["name"] = "Trials Healer",
+["points"] = 10,
+}
+,
+[1117] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Block 1,000,000 points of damage in Trials.",
+["name"] = "Trials Blocker",
+["points"] = 10,
+}
+,
+[1118] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1119] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1120] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Adjudicator, the Elite Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower.",
+["name"] = "White-Gold Tower Conqueror",
+["points"] = 15,
+}
+,
+[1121] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Find Geldrion Treehelm\'s stash in Belkarth.",
+["name"] = "Earthly Possessions",
+["points"] = 5,
+}
+,
+[1122] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Free prisoners from their cell blocks in Imperial City Prison.",
+["name"] = "Blockbuster",
+["points"] = 5,
+}
+,
+[1123] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Serpent.",
+["name"] = "Sanctum Ophidia Completed",
+["points"] = 50,
+}
+,
+[1124] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
+["name"] = "Time Trial: Sanctum Ophidia",
+["points"] = 50,
+}
+,
+[1125] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Research the Nirnhoned Trait for any weapon or armor type.",
+["name"] = "Learn the Nirnhoned Trait",
+["points"] = 5,
+}
+,
+[1126] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all caves and locales throughout Upper Craglorn.",
+["name"] = "Upper Craglorn Master Explorer",
+["points"] = 50,
+}
+,
+[1127] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and clear all six explorable caves in Upper Craglorn.",
+["name"] = "Upper Craglorn Cave Delver",
+["points"] = 15,
+}
+,
+[1128] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat all mini-boss and boss enemies in Veteran Imperial City Prison within forty five minutes of starting the dungeon. Timer starts when players enter The Bastion.",
+["name"] = "No Prison Can Hold Me",
+["points"] = 50,
+}
+,
+[1129] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat all mini-boss and boss enemies in Veteran Imperial City Prison without suffering a group member death.",
+["name"] = "Life Sentence",
+["points"] = 50,
+}
+,
+[1130] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat 50 Vigilant Watchers in Veteran Imperial City Prison.",
+["name"] = "Vigilant Watcher Slayer",
+["points"] = 10,
+}
+,
+[1131] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat 300 Mindshriven in Veteran Imperial City Prison.",
+["name"] = "Mindshriven Slayer",
+["points"] = 10,
+}
+,
+[1132] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Complete the listed Challenges for veteran dungeons in Imperial City.",
+["name"] = "Imperial City Challenger",
+["points"] = 50,
+}
+,
+[1133] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "In Imperial City Prison, defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, and Lord Warden Dusk without any group member being noticed by the Vigilant Watchers.",
+["name"] = "Out of Sight",
+["points"] = 50,
+}
+,
+[1134] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1135] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1136] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Warrior after enraging him through the destruction of his statue army.",
+["name"] = "Hel Ra Citadel Difficult Mode",
+["points"] = 50,
+}
+,
+[1137] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
+["name"] = "Aetherian Archive Difficult Mode",
+["points"] = 50,
+}
+,
+[1138] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
+["name"] = "Sanctum Ophidia Difficult Mode",
+["points"] = 50,
+}
+,
+[1139] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
+["name"] = "Craglorn Trials Conqueror",
+["points"] = 50,
+}
+,
+[1140] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Conquer all challengers on the increased difficulty version of Dragonstar Arena.",
+["name"] = "Dragonstar Arena Conqueror",
+["points"] = 50,
+}
+,
+[1141] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1142] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Lord Warden Dusk of Imperial City Prison while you and your group members avoid every Darklight Burst.",
+["name"] = "Darklight Dancer",
+["points"] = 50,
+}
+,
+[1143] = {
+["Category"] = "Quests",
+["Category_ID"] = 7,
+["description"] = "Eliminate the threat of the Serpent and his Scaled Court throughout all of Craglorn.",
+["name"] = "Craglorn Completist",
+["points"] = 50,
+}
+,
+[1144] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn from every Dwemer Style book.",
+["name"] = "Dwemer Style Master",
+["points"] = 50,
+}
+,
+[1145] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Become certified in Alchemy, Blacksmithing, Clothing, Enchanting, Provisioning, and Woodworking.",
+["name"] = "Certified Jack-of-All-Trades",
+["points"] = 10,
+}
+,
+[1146] = {
+["Category"] = "NIL",
+["description"] = "Complete one Crafting Writ.",
+["name"] = "First Writ",
+["points"] = 5,
+}
+,
+[1147] = {
+["Category"] = "NIL",
+["description"] = "Complete 25 Crafting Writs.",
+["name"] = "I Must Complete My Contract",
+["points"] = 10,
+}
+,
+[1148] = {
+["Category"] = "NIL",
+["description"] = "Complete 150 Crafting Writs.",
+["name"] = "Signed the Manifest",
+["points"] = 15,
+}
+,
+[1149] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Complete 250 Crafting Writs.",
+["name"] = "Writ Upon the Sky",
+["points"] = 50,
+}
+,
+[1150] = {
+["Category"] = "NIL",
+["description"] = "Complete one Undaunted Pledge bestowed by Maj al-Ragath.",
+["name"] = "Pledge Taker",
+["points"] = 5,
+}
+,
+[1151] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 10 Undaunted Pledges bestowed by Maj al-Ragath.",
+["name"] = "Returned Undaunted",
+["points"] = 10,
+}
+,
+[1152] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 50 Undaunted Pledges bestowed by Maj al-Ragath.",
+["name"] = "Undaunted, Daily",
+["points"] = 15,
+}
+,
+[1153] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 100 Undaunted Pledges bestowed by Maj al-Ragath.",
+["name"] = "Maj\'s Cohort",
+["points"] = 50,
+}
+,
+[1154] = {
+["Category"] = "NIL",
+["description"] = "Complete one Undaunted Pledge bestowed by Glirion the Redbeard.",
+["name"] = "Prove Them Wrong",
+["points"] = 5,
+}
+,
+[1155] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 10 Undaunted Pledges bestowed by Glirion the Redbeard.",
+["name"] = "You Still Draw Breath",
+["points"] = 10,
+}
+,
+[1156] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 50 Undaunted Pledges bestowed by Glirion the Redbeard.",
+["name"] = "Death Has Not Claimed You",
+["points"] = 15,
+}
+,
+[1157] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 100 Undaunted Pledges bestowed by Glirion the Redbeard.",
+["name"] = "Glirion\'s Cohort",
+["points"] = 50,
+}
+,
+[1158] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Reach level 45, attracting the attention of the Undaunted elite.",
+["name"] = "Call of the Undaunted",
+["points"] = 10,
+}
+,
+[1159] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete the following achievements associated with City of Ash II.",
+["name"] = "Deadlands Savvy",
+["points"] = 50,
+}
+,
+[1160] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Find all 13 Skyshards in the Imperial City.",
+["name"] = "Imperial City Skyshard Hunter",
+["points"] = 15,
+}
+,
+[1161] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1162] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1163] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1164] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1165] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1166] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1167] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1168] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1169] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Discover all of the striking locales in the Imperial Sewers.",
+["name"] = "Imperial Sewers Pathfinder",
+["points"] = 10,
+}
+,
+[1170] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1171] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Assemble a key for each of the trophy chests found in the Imperial City.",
+["name"] = "Imperial City Locksmith",
+["points"] = 10,
+}
+,
+[1172] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Assemble a total of 25 trophy door keys in the Imperial City.",
+["name"] = "Key Collector",
+["points"] = 50,
+}
+,
+[1173] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1174] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat all the Patrolling Horrors in the Imperial City.",
+["name"] = "Horror of Horrors",
+["points"] = 15,
+}
+,
+[1175] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Bring an end to Molag Bal\'s secret plot in the Imperial City.",
+["name"] = "The Sublime Protector",
+["points"] = 15,
+}
+,
+[1176] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 1 player while inside the Imperial City.",
+["name"] = "Imperial City Recruit",
+["points"] = 5,
+}
+,
+[1177] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 50 players while inside the Imperial City.",
+["name"] = "Imperial City Veteran",
+["points"] = 10,
+}
+,
+[1178] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 100 players while inside the Imperial City.",
+["name"] = "Imperial City Warlord",
+["points"] = 15,
+}
+,
+[1179] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 900 Tel Var Stones from a single gain.",
+["name"] = "Big Score",
+["points"] = 15,
+}
+,
+[1180] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1181] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Collect and learn from every Xivkyn Style book.",
+["name"] = "Xivkyn Style Master",
+["points"] = 50,
+}
+,
+[1182] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 1 Trove Scamp while adventuring in the Imperial Sewers.",
+["name"] = "Trove Scamp Seeker",
+["points"] = 10,
+}
+,
+[1183] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1184] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Complete the Imperial City Arena by slaying the Ringmaster and her monstrous servants.",
+["name"] = "Imperial Arena Champion",
+["points"] = 15,
+}
+,
+[1185] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Complete the Imperial City Temple event by defeating the Daedric Titan, Uzuruz.",
+["name"] = "Protector of the Faith",
+["points"] = 15,
+}
+,
+[1186] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Catch all 12 rare fish in Imperial City.",
+["name"] = "Imperial City Angler",
+["points"] = 5,
+}
+,
+[1187] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1188] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1189] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1190] = {
+["Category"] = "NIL",
+["description"] = "Successfully pickpocket any citizen of Tamriel.",
+["name"] = "Pocket Picker",
+["points"] = 5,
+}
+,
+[1191] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully pickpocket one hundred citizens of Tamriel.",
+["name"] = "Purse Snatcher",
+["points"] = 10,
+}
+,
+[1192] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully pickpocket one thousand citizens of Tamriel.",
+["name"] = "Sneak Thief Extraordinaire",
+["points"] = 15,
+}
+,
+[1193] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully escape a guard after choosing the \"Flee\" option in the Accost Dialogue Window.",
+["name"] = "Cut and Run",
+["points"] = 5,
+}
+,
+[1194] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully escape the guards a total of one hundred times after choosing the \"Flee\" option in the Accost Dialogue Window.",
+["name"] = "Escape Artist",
+["points"] = 15,
+}
+,
+[1195] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Make a one time transaction of 1,000 gold or greater for crimes committed against the citizens of Tamriel.",
+["name"] = "Make Amends",
+["points"] = 15,
+}
+,
+[1196] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Pay a total of 100,000 gold to the Fence OR to the Tamriel Guards to clear your criminal record.",
+["name"] = "Felonious Recompense",
+["points"] = 15,
+}
+,
+[1197] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Earn 1,000 gold by selling stolen goods to a Fence.",
+["name"] = "Ill-Gotten Gains",
+["points"] = 5,
+}
+,
+[1198] = {
+["Category"] = "NIL",
+["description"] = "Break into and loot the contents of a safebox.",
+["name"] = "Safebox Pilferer",
+["points"] = 5,
+}
+,
+[1199] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Break into and loot the contents of ten safeboxes.",
+["name"] = "Safebox Looter",
+["points"] = 10,
+}
+,
+[1200] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Break into and loot the contents of one hundred safeboxes.",
+["name"] = "Safebox Cracker",
+["points"] = 15,
+}
+,
+[1201] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Earn 100,000 gold by selling stolen goods to a Fence.",
+["name"] = "Illicit Entrepreneur",
+["points"] = 15,
+}
+,
+[1202] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Earn 1,000,000 gold by selling stolen goods to a Fence.",
+["name"] = "Black Market Mogul",
+["points"] = 50,
+}
+,
+[1203] = {
+["Category"] = "NIL",
+["description"] = "Spend 100 gold to launder stolen items through a Fence.",
+["name"] = "Loot Cleaner",
+["points"] = 5,
+}
+,
+[1204] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend 1,000 gold to launder stolen items through a Fence.",
+["name"] = "Loot Sanitizer",
+["points"] = 10,
+}
+,
+[1205] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend 10,000 gold to launder stolen items through a Fence.",
+["name"] = "Illustrious Launderer",
+["points"] = 15,
+}
+,
+[1206] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully pick the lock on a locked door.",
+["name"] = "Home Trespasser",
+["points"] = 5,
+}
+,
+[1207] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully pick the locks on fifty locked doors.",
+["name"] = "Sneaky Housebreaker",
+["points"] = 10,
+}
+,
+[1208] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Successfully pick the locks on one hundred locked doors.",
+["name"] = "Master Burglar",
+["points"] = 15,
+}
+,
+[1209] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Have an article of stolen clothing that you are wearing repossessed by a guard.",
+["name"] = "Disrobed Discipline",
+["points"] = 5,
+}
+,
+[1210] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Have stolen clothing from all your armor slots repossessed at the same time by a guard.",
+["name"] = "Indecent Exposure",
+["points"] = 10,
+}
+,
+[1211] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Steal an item of Fine quality.",
+["name"] = "Discerning Pilferer",
+["points"] = 5,
+}
+,
+[1212] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Steal an item of Superior quality.",
+["name"] = "Discriminating Plunderer",
+["points"] = 10,
+}
+,
+[1213] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Steal an item of Epic quality.",
+["name"] = "Grand Larcenist",
+["points"] = 15,
+}
+,
+[1214] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend your first Champion Point.",
+["name"] = "Dawn of a Champion",
+["points"] = 10,
+}
+,
+[1215] = {
+["Category"] = "NIL",
+["description"] = "Spend 100 Champion Points in the Warrior Constellation.",
+["name"] = "Robust Destiny",
+["points"] = 15,
+}
+,
+[1216] = {
+["Category"] = "NIL",
+["description"] = "Spend 50 Champion Points in the Warrior Constellation.",
+["name"] = "Vigorous Decree",
+["points"] = 10,
+}
+,
+[1217] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend 150 Champion Points in the Warrior Constellation.",
+["name"] = "Champion of Last Seed",
+["points"] = 50,
+}
+,
+[1218] = {
+["Category"] = "NIL",
+["description"] = "Spend 50 Champion Points in the Mage Constellation.",
+["name"] = "Arcane Decree",
+["points"] = 10,
+}
+,
+[1219] = {
+["Category"] = "NIL",
+["description"] = "Spend 100 Champion Points in the Mage Constellation.",
+["name"] = "Mysterious Destiny",
+["points"] = 15,
+}
+,
+[1220] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend 150 Champion Points in the Mage Constellation.",
+["name"] = "Champion of Rain\'s Hand",
+["points"] = 50,
+}
+,
+[1221] = {
+["Category"] = "NIL",
+["description"] = "Spend 50 Champion Points in the Thief Constellation.",
+["name"] = "Stealthy Decree",
+["points"] = 10,
+}
+,
+[1222] = {
+["Category"] = "NIL",
+["description"] = "Spend 100 Champion Points in the Thief Constellation.",
+["name"] = "Devious Destiny",
+["points"] = 15,
+}
+,
+[1223] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Spend 150 Champion Points in the Thief Constellation.",
+["name"] = "Champion of Evening Star",
+["points"] = 50,
+}
+,
+[1224] = {
+["Category"] = "NIL",
+["description"] = "Kill a citizen of Tamriel.",
+["name"] = "Murderer",
+["points"] = 5,
+}
+,
+[1225] = {
+["Category"] = "NIL",
+["description"] = "Kill fifty citizens of Tamriel.",
+["name"] = "Serial Killer",
+["points"] = 5,
+}
+,
+[1226] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill one hundred citizens of Tamriel.",
+["name"] = "Mass Murderer",
+["points"] = 5,
+}
+,
+[1227] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a livestock cow, bull, or ox.",
+["name"] = "Ground Beef",
+["points"] = 5,
+}
+,
+[1228] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a livestock chicken or bantam guar.",
+["name"] = "Poultry Assassin",
+["points"] = 5,
+}
+,
+[1229] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a livestock goat or sheep.",
+["name"] = "Wicked Shepherd",
+["points"] = 5,
+}
+,
+[1230] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a livestock pig.",
+["name"] = "Hog Killer",
+["points"] = 5,
+}
+,
+[1231] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a livestock guar.",
+["name"] = "Guar Slayer",
+["points"] = 5,
+}
+,
+[1232] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a total of ten livestock animals.",
+["name"] = "Butcher",
+["points"] = 5,
+}
+,
+[1233] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a total of one hundred livestock animals.",
+["name"] = "Slaughterer",
+["points"] = 5,
+}
+,
+[1234] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Kill a total of five hundred livestock animals.",
+["name"] = "Livestock Mass Murderer",
+["points"] = 5,
+}
+,
+[1235] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Activate the ancient centurion in Rkindaleft.",
+["name"] = "Rkindaleft Group Event",
+["points"] = 50,
+}
+,
+[1236] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat all of Rkindaleft\'s champions.",
+["name"] = "Rkindaleft Conqueror",
+["points"] = 50,
+}
+,
+[1237] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat 3 champions in the Rkindaleft public dungeon.",
+["name"] = "Rkindaleft Vanquisher",
+["points"] = 15,
+}
+,
+[1238] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Resist the cultist onslaught in Old Orsinium.",
+["name"] = "Old Orsinium Group Event",
+["points"] = 50,
+}
+,
+[1239] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat all of the champions in Old Orsinium.",
+["name"] = "Old Orsinium Conqueror",
+["points"] = 50,
+}
+,
+[1240] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat 3 champions in the Old Orsinium public dungeon.",
+["name"] = "Old Orsinium Vanquisher",
+["points"] = 15,
+}
+,
+[1241] = {
+["Category"] = "NIL",
+["description"] = "Complete 3 quests in Wrothgar.",
+["name"] = "Wrothgar Newcomer",
+["points"] = 10,
+}
+,
+[1242] = {
+["Category"] = "NIL",
+["description"] = "Complete 9 quests in Wrothgar.",
+["name"] = "Wrothgar Explorer",
+["points"] = 10,
+}
+,
+[1243] = {
+["Category"] = "NIL",
+["description"] = "Complete 15 quests in Wrothgar.",
+["name"] = "Wrothgar Trailblazer",
+["points"] = 10,
+}
+,
+[1244] = {
+["Category"] = "NIL",
+["description"] = "Complete 21 quests in Wrothgar.",
+["name"] = "Wrothgar Pathfinder",
+["points"] = 10,
+}
+,
+[1245] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 27 quests in Wrothgar.",
+["name"] = "Wrothgar Adventurer",
+["points"] = 10,
+}
+,
+[1246] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1247] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Grant 5 elderly Orc warriors a glorious death.",
+["name"] = "One Last Brawl",
+["points"] = 10,
+}
+,
+[1248] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Wrothgar.",
+["name"] = "Hero of Wrothgar",
+["points"] = 50,
+}
+,
+[1249] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat 4 Wrothgar world bosses.",
+["name"] = "Defender of Orsinium",
+["points"] = 15,
+}
+,
+[1250] = {
+["Category"] = "NIL",
+["description"] = "Collect 16 relics for the House of Orsimer Glories museum.",
+["name"] = "Wrothgar Relic Hunter",
+["points"] = 15,
+}
+,
+[1251] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1252] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1253] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1254] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1255] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1256] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1257] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete both Wrothgar public dungeon boss achievements.",
+["name"] = "Wrothgar Dungeon Slayer",
+["points"] = 15,
+}
+,
+[1258] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1259] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1260] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete Wrothgar\'s main quests.",
+["name"] = "Kingmaker",
+["points"] = 15,
+}
+,
+[1261] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 1 member of the Coldharbour Elite Guard.",
+["name"] = "Xivkyn Assassin",
+["points"] = 10,
+}
+,
+[1262] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 50 members of the Coldharbour Elite Guard.",
+["name"] = "Xivkyn\'s Scourge",
+["points"] = 15,
+}
+,
+[1263] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 100 members of the Coldharbour Elite Guard.",
+["name"] = "Xivkyn\'s Bane",
+["points"] = 50,
+}
+,
+[1264] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1265] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1266] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1267] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 100 players while inside the Imperial Arena.",
+["name"] = "Alliance Gladiator",
+["points"] = 15,
+}
+,
+[1268] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 1 Cunning Scamp while adventuring in the Imperial Sewers.",
+["name"] = "Cunning Scamp Seeker",
+["points"] = 10,
+}
+,
+[1269] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 50 Trove Scamps while adventuring in the Imperial Sewers.",
+["name"] = "Trove Scamp Slayer",
+["points"] = 15,
+}
+,
+[1270] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 100 Trove Scamps while adventuring in the Imperial Sewers.",
+["name"] = "Trove Scamp Exterminator",
+["points"] = 50,
+}
+,
+[1271] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 50 Cunning Scamps while adventuring in the Imperial Sewers.",
+["name"] = "Cunning Scamp Slayer",
+["points"] = 15,
+}
+,
+[1272] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Kill 100 Cunning Scamps while adventuring in the Imperial Sewers.",
+["name"] = "Cunning Scamp Exterminator",
+["points"] = 50,
+}
+,
+[1273] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Complete the Barathrum Centrata event deep beneath the Imperial City.",
+["name"] = "Imperial Lightbringer",
+["points"] = 50,
+}
+,
+[1274] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1275] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Adjudicator, the Empress Regent\'s Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower within 30 minutes of starting the dungeon. Timer starts when you enter Green Emperor Way.",
+["name"] = "First to the Top",
+["points"] = 50,
+}
+,
+[1276] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Adjudicator, the Empress Regent\'s Guard, the Planar Inhibitor, and Molag Kena in Veteran White-Gold Tower without experiencing the death of a group member.",
+["name"] = "To Spite a Tharn",
+["points"] = 50,
+}
+,
+[1277] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat 100 Xivkyn in Veteran White-Gold Tower.",
+["name"] = "Horn Breaker",
+["points"] = 10,
+}
+,
+[1278] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat 75 Daedroth in Veteran White-Gold Tower.",
+["name"] = "Daedroth Dropper",
+["points"] = 10,
+}
+,
+[1279] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "In Veteran White-Gold Tower, complete the ritual listed in the Obelisk Tome, then defeat Molag Kena.",
+["name"] = "Ire of the Storm",
+["points"] = 50,
+}
+,
+[1280] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "In Veteran White-Gold Tower, destroy all portals to prevent the arrival of the Planar Inhibitor\'s reinforcements.",
+["name"] = "Entry Denied",
+["points"] = 10,
+}
+,
+[1281] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Locate and interact with all of the speaking stones in the White-Gold Tower.",
+["name"] = "Imperial Transgressions",
+["points"] = 5,
+}
+,
+[1282] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1283] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1284] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1285] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Kill Old Snagara the echatere in the Poacher\'s Encampment.",
+["name"] = "Kill Old Snagara",
+["points"] = 10,
+}
+,
+[1286] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Defeat Zandadunoz the Reborn at the Unfinished Dolmen.",
+["name"] = "Kill Zandadunoz the Reborn",
+["points"] = 10,
+}
+,
+[1287] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Kill the Riekr regent King-Chief Edu at the King-Chief\'s Throne.",
+["name"] = "Kill King-Chief Edu",
+["points"] = 10,
+}
+,
+[1288] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Kill the Winterborn Briarheart Warrior, Corintthac the Abomination, at the Accursed Nursery.",
+["name"] = "Kill Corintthac the Abomination",
+["points"] = 10,
+}
+,
+[1289] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Kill Mad Urkazbur at the Mad-Ogre\'s Altar.",
+["name"] = "Kill Mad Urkazbur the Ogre",
+["points"] = 10,
+}
+,
+[1290] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Kill Nyzchaleft the Dwarven Centurion at Nyzchaleft Falls.",
+["name"] = "Kill Nyzchaleft",
+["points"] = 10,
+}
+,
+[1291] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1292] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1293] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1294] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1295] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1296] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1297] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Nikolvara\'s Kennel.",
+["name"] = "Nikolvara\'s Kennel Explorer",
+["points"] = 5,
+}
+,
+[1298] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Coldperch Cavern.",
+["name"] = "Coldperch Cavern Explorer",
+["points"] = 5,
+}
+,
+[1299] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Argent Mine.",
+["name"] = "Argent Mine Explorer",
+["points"] = 5,
+}
+,
+[1300] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Thukhozod\'s Sanctum.",
+["name"] = "Thukhozod\'s Sanctum Explorer",
+["points"] = 5,
+}
+,
+[1301] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Watcher\'s Hold.",
+["name"] = "Watcher\'s Hold Explorer",
+["points"] = 5,
+}
+,
+[1302] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Explore and clear Zthenganaz.",
+["name"] = "Zthenganaz Explorer",
+["points"] = 5,
+}
+,
+[1303] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "In Veteran Imperial City Prison, destroy the Warden\'s Tome, then defeat Lord Warden Dusk.",
+["name"] = "Lord Warden\'s Retaliation",
+["points"] = 50,
+}
+,
+[1304] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Conquer all challengers and earn the title of Maelstrom Arena Champion.",
+["name"] = "Maelstrom Arena Champion",
+["points"] = 15,
+}
+,
+[1305] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Conquer all challengers in Veteran Maelstrom Arena.",
+["name"] = "Maelstrom Arena Conqueror",
+["points"] = 50,
+}
+,
+[1306] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "In Veteran White-Gold Tower, become completely engulfed in flame by the Planar Inhibitor\'s Heat Stroke attack before it completes its Daedric Catastrophe attack. Then stay alive until the Planar Inhibitor is defeated.",
+["name"] = "Out of the Frying Pan",
+["points"] = 15,
+}
+,
+[1307] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Assemble a key for each of the trophy chests found in the White-Gold Tower and Imperial City Prison group dungeons.",
+["name"] = "Imperial City Dungeon Locksmith",
+["points"] = 10,
+}
+,
+[1308] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1309] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1310] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1311] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 1,000 Tel Var Stones over the lifetime of your character.",
+["name"] = "Tel Var Collector",
+["points"] = 10,
+}
+,
+[1312] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 10,000 Tel Var Stones over the lifetime of your character.",
+["name"] = "Tel Var Baron",
+["points"] = 15,
+}
+,
+[1313] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 100,000 Tel Var Stones over the lifetime of your character.",
+["name"] = "Tel Var Master",
+["points"] = 50,
+}
+,
+[1314] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 300 Tel Var Stones from a single gain.",
+["name"] = "Sudden Spoils",
+["points"] = 5,
+}
+,
+[1315] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Gain 600 Tel Var Stones from a single gain.",
+["name"] = "Windfall Profits",
+["points"] = 10,
+}
+,
+[1316] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Make 15 donations to the Orsinium City Solicitor.",
+["name"] = "Orsinium Patron",
+["points"] = 5,
+}
+,
+[1317] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Translate all of the Champion 150 and Champion 160 runestones.",
+["name"] = "Ruby Potency",
+["points"] = 10,
+}
+,
+[1318] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn from every Akaviri Style book.",
+["name"] = "Akaviri Style Master",
+["points"] = 50,
+}
+,
+[1319] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn from every Glass Style book.",
+["name"] = "Glass Style Master",
+["points"] = 50,
+}
+,
+[1320] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Find all 17 Skyshards in Wrothgar.",
+["name"] = "Wrothgar Skyshard Hunter",
+["points"] = 15,
+}
+,
+[1321] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Discover and clear all 6 explorable caves in Wrothgar.",
+["name"] = "Wrothgar Master Delver",
+["points"] = 15,
+}
+,
+[1322] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Discover all the striking locales in Wrothgar.",
+["name"] = "Wrothgar Master Seeker",
+["points"] = 10,
+}
+,
+[1323] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Discover and clear all caves and striking locales in Wrothgar.",
+["name"] = "Wrothgar Master Explorer",
+["points"] = 15,
+}
+,
+[1324] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Collect all 20 relics for the House of Orsimer Glories museum.",
+["name"] = "Wrothgar Master Relic Hunter",
+["points"] = 50,
+}
+,
+[1325] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete quest \"A King-Sized Problem\" in Wrothgar.",
+["name"] = "Orc King\'s Councilor",
+["points"] = 10,
+}
+,
+[1326] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete quest \"The Anger of a King\" in Wrothgar.",
+["name"] = "Orc King\'s Marshal",
+["points"] = 10,
+}
+,
+[1327] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete quest \"Blood on a King\'s Hands\" in Wrothgar.",
+["name"] = "Orc King\'s Conqueror",
+["points"] = 10,
+}
+,
+[1328] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 40 quests in Wrothgar.",
+["name"] = "Wrothgar Grand Adventurer",
+["points"] = 15,
+}
+,
+[1329] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1330] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete Veteran Maelstrom Arena in a single attempt, without dying or leaving the arena.",
+["name"] = "Maelstrom Arena: Perfect Run",
+["points"] = 50,
+}
+,
+[1331] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Leap from the cliff west of Frostbreak Ridge and survive.",
+["name"] = "Wrothgar Cliff Jumper",
+["points"] = 5,
+}
+,
+[1332] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1333] = {
+["Category"] = "NIL",
+["description"] = "Complete 1 group boss daily quest in Wrothgar.",
+["name"] = "One at a Time",
+["points"] = 5,
+}
+,
+[1334] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 7 group boss daily quests in Wrothgar.",
+["name"] = "Lucky Seven",
+["points"] = 10,
+}
+,
+[1335] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 30 group boss daily quests in Wrothgar.",
+["name"] = "Monster Hunter of the Month",
+["points"] = 15,
+}
+,
+[1336] = {
+["Category"] = "NIL",
+["description"] = "Complete 1 Delve Daily in Wrothgar.",
+["name"] = "A Delve a Day",
+["points"] = 5,
+}
+,
+[1337] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 7 Delve Dailies in Wrothgar.",
+["name"] = "Wrothgar Delve Weekly",
+["points"] = 10,
+}
+,
+[1338] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Complete 30 Delve Dailies in Wrothgar.",
+["name"] = "Wrothgar Delve Monthly",
+["points"] = 15,
+}
+,
+[1339] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Catch the rare Crab-Slaughter-Crane fish found in Wrothgar.",
+["name"] = "Hooking Wrothgar\'s Biggest Catch",
+["points"] = 10,
+}
+,
+[1340] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Catch all 12 rare fish in Wrothgar.",
+["name"] = "Wrothgar Master Angler",
+["points"] = 5,
+}
+,
+[1341] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Collect and learn every chapter in the Ancient Orc style book found in Wrothgar.",
+["name"] = "Ancient Orc Style Master",
+["points"] = 50,
+}
+,
+[1342] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Find all 6 skyshards in the Gold Coast.",
+["name"] = "Gold Coast Skyshard Hunter",
+["points"] = 10,
+}
+,
+[1343] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Drive the dro-m\'Athra back to the void and close the Maw of Lorkhaj in Normal Mode.",
+["name"] = "Maw of Lorkhaj Completed",
+["points"] = 15,
+}
+,
+[1344] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat Rakkhat after empowering him at the lunar shrines in Veteran Maw of Lorkhaj.",
+["name"] = "Maw of Lorkhaj Difficult Mode",
+["points"] = 50,
+}
+,
+[1345] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Overfiend, Ibomez the Flesh Sculptor, the Gravelight Sentry, the Flesh Abomination, the Lord Warden\'s Council, and Lord Warden Dusk in the Imperial City Prison.",
+["name"] = "Imperial City Prison Vanquisher",
+["points"] = 10,
+}
+,
+[1346] = {
+["Category"] = "Imperial City",
+["Category_ID"] = 22,
+["description"] = "Defeat the Adjudicator, the Elite Guard, the Planar Inhibitor, and Molag Kena in White-Gold Tower.",
+["name"] = "White-Gold Tower Vanquisher",
+["points"] = 10,
+}
+,
+[1347] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Find all 6 skyshards in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Skyshard Hunter",
+["points"] = 10,
+}
+,
+[1348] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn from every Mercenary Style book.",
+["name"] = "Mercenary Style Master",
+["points"] = 50,
+}
+,
+[1349] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Trespass in seven locked locations throughout Abah\'s Landing.",
+["name"] = "Breaking and Entering",
+["points"] = 5,
+}
+,
+[1350] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Learn every rumor about the statue in the Thieves Den.",
+["name"] = "The Lady in the Cistern",
+["points"] = 5,
+}
+,
+[1351] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Catch all 12 rare fish in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Master Angler",
+["points"] = 5,
+}
+,
+[1352] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Kill Syvarra of the Deep at Ko Estaran.",
+["name"] = "Deepest Shallows",
+["points"] = 10,
+}
+,
+[1353] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Kill Captain Virindi Slave-Taker at Thrall Cove.",
+["name"] = "Cutting the Keel",
+["points"] = 10,
+}
+,
+[1354] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat both Hew\'s Bane world bosses.",
+["name"] = "Defender of Hew\'s Bane",
+["points"] = 15,
+}
+,
+[1355] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Explore and clear Bahraha\'s Gloom.",
+["name"] = "Bahraha\'s Gloom Explorer",
+["points"] = 5,
+}
+,
+[1356] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Explore and clear Shark\'s Teeth Grotto.",
+["name"] = "Shark\'s Teeth Grotto Explorer",
+["points"] = 5,
+}
+,
+[1357] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Discover and clear both explorable caves in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Cave Delver",
+["points"] = 10,
+}
+,
+[1358] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Discover all the striking locales in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Pathfinder",
+["points"] = 10,
+}
+,
+[1359] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Discover and clear all caves and striking locales in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Master Explorer",
+["points"] = 15,
+}
+,
+[1360] = {
+["Category"] = "NIL",
+["description"] = "Complete quest \"Cleaning House\" in Hew\'s Bane.",
+["name"] = "Always Travel Separately",
+["points"] = 10,
+}
+,
+[1361] = {
+["Category"] = "NIL",
+["description"] = "Complete quest \"A Flawless Plan\" in Hew\'s Bane.",
+["name"] = "Never, Ever Steal From the Guild",
+["points"] = 10,
+}
+,
+[1362] = {
+["Category"] = "NIL",
+["description"] = "Complete quest \"Forever Hold Your Peace\" in Hew\'s Bane.",
+["name"] = "Wedding Crashers",
+["points"] = 10,
+}
+,
+[1363] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quest \"Prison Break\" in Hew\'s Bane.",
+["name"] = "Broken Wheel",
+["points"] = 10,
+}
+,
+[1364] = {
+["Category"] = "NIL",
+["description"] = "Complete 12 story quests in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Adventurer",
+["points"] = 15,
+}
+,
+[1365] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Hew\'s Bane.",
+["name"] = "Hero of Hew\'s Bane",
+["points"] = 50,
+}
+,
+[1366] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 16 story quests in Hew\'s Bane.",
+["name"] = "Hew\'s Bane Grand Adventurer",
+["points"] = 50,
+}
+,
+[1367] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete Veteran Maw of Lorkhaj within a time limit of 40 minutes. Your trial begins when you cross the threshold of the Temple of Seven Riddles.",
+["name"] = "Time Trial: Maw of Lorkhaj",
+["points"] = 50,
+}
+,
+[1368] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat Rakkhat, Fang of Lorkhaj and his legions of dro-m\'Athra in Veteran Maw of Lorkhaj.",
+["name"] = "Maw of Lorkhaj Conqueror",
+["points"] = 50,
+}
+,
+[1369] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Use both chain switches within ten seconds in Veteran Maw of Lorkhaj, then defeat the dro-m\'Athra invaders.",
+["name"] = "Maw of Lorkhaj: Unchained Ambush",
+["points"] = 5,
+}
+,
+[1370] = {
+["Category"] = "NIL",
+["description"] = "Complete quest \"The Long Game\" in Hew\'s Bane.",
+["name"] = "Iron Wheel Infiltration",
+["points"] = 10,
+}
+,
+[1371] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Join the Thieves Guild by completing quest \"Partners in Crime\" in Hew\'s Bane.",
+["name"] = "Welcome to the Thieves Guild",
+["points"] = 10,
+}
+,
+[1372] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 1 heist from the Heist Board for the Thieves Guild.",
+["name"] = "Fledgling Filcher",
+["points"] = 5,
+}
+,
+[1373] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 7 heists from the Heist Board for the Thieves Guild.",
+["name"] = "Seasoned Sneak-Thief",
+["points"] = 10,
+}
+,
+[1374] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 15 heists from the Heist Board for the Thieves Guild.",
+["name"] = "Professional Pilferer",
+["points"] = 15,
+}
+,
+[1375] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quest \"His Greatest Treasure\" in Hew\'s Bane.",
+["name"] = "A Life Deferred",
+["points"] = 10,
+}
+,
+[1376] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quest \"That Which Was Lost\" in Hew\'s Bane.",
+["name"] = "Seeds Untilled",
+["points"] = 10,
+}
+,
+[1377] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quest \"Everyone Has A Price\" in Hew\'s Bane.",
+["name"] = "What Price, Freedom?",
+["points"] = 10,
+}
+,
+[1378] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete quest \"The One That Got Away\" in Hew\'s Bane.",
+["name"] = "Loose Ends",
+["points"] = 10,
+}
+,
+[1379] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Steal the treasures on Kari\'s Hit List from every territory of the Aldmeri Dominion and place them in the Thieves Den.",
+["name"] = "Despoil the Dominion",
+["points"] = 15,
+}
+,
+[1380] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Steal the treasures on Kari\'s Hit List from every territory of the Daggerfall Covenant and place them in the Thieves Den.",
+["name"] = "Con the Covenant",
+["points"] = 15,
+}
+,
+[1381] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Steal the treasures on Kari\'s Hit List from every territory of the Ebonheart Pact and place them in the Thieves Den.",
+["name"] = "Purloin the Pact",
+["points"] = 15,
+}
+,
+[1382] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Steal the treasure on Kari\'s Hit List from Abah\'s Landing and place it in the Thieves Den.",
+["name"] = "Loot the Landing",
+["points"] = 15,
+}
+,
+[1383] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Steal every treasure from Kari\'s Hit List and place them all within the Thieves Den.",
+["name"] = "A Cutpurse Above",
+["points"] = 50,
+}
+,
+[1384] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1385] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat 25 Void Callers in the Maw of Lorkhaj.",
+["name"] = "Maw of Lorkhaj: Shadow Slayer",
+["points"] = 10,
+}
+,
+[1386] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat Rakkhat without anyone dying while afflicted by the Breath of Lorkhaj.",
+["name"] = "Maw of Lorkhaj: Stainless Souls",
+["points"] = 15,
+}
+,
+[1387] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1388] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "In Veteran Maw of Lorkhaj, force Rakkhat into his final phase within two lunar cycles, then defeat him.",
+["name"] = "Maw of Lorkhaj: Two-Moons Dance",
+["points"] = 15,
+}
+,
+[1389] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat Rakkhat in Veteran Maw of Lorkhaj, with a maximum of two players ever being afflicted by the Breath of Lorkhaj.",
+["name"] = "Maw of Lorkhaj: Void Avoided",
+["points"] = 15,
+}
+,
+[1390] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Defeat Rakkhat in Veteran Maw of Lorkhaj, with at least three dro-m\'Athra Dreadstalkers still alive.",
+["name"] = "Maw of Lorkhaj: Fang Focused",
+["points"] = 15,
+}
+,
+[1391] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete all achievements related to defeating Rakkhat, Fang of Lorkhaj in Veteran Maw of Lorkhaj.",
+["name"] = "Maw of Lorkhaj: Moons\' Champion",
+["points"] = 50,
+}
+,
+[1392] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete Veteran Maw of Lorkhaj without suffering a group member death.",
+["name"] = "Maw of Lorkhaj: Spotless Triumph",
+["points"] = 50,
+}
+,
+[1393] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Come visit the Orcs\' newly rebuilt capital city: Orsinium!",
+["name"] = "A Gift from Orsinium",
+["points"] = 5,
+}
+,
+[1394] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Successfully pick pockets at each of the four most popular shops in Abah\'s Landing.",
+["name"] = "Five Finger Discount",
+["points"] = 5,
+}
+,
+[1395] = {
+["Category"] = "NIL",
+["description"] = "Discover and loot 1 Thieves Trove.",
+["name"] = "Finders Keepers",
+["points"] = 5,
+}
+,
+[1396] = {
+["Category"] = "NIL",
+["description"] = "Discover and loot 5 Thieves Troves.",
+["name"] = "An Eye For Details",
+["points"] = 10,
+}
+,
+[1397] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Discover and loot 15 Thieves Troves.",
+["name"] = "Leave No Stash Behind",
+["points"] = 15,
+}
+,
+[1398] = {
+["Category"] = "NIL",
+["description"] = "Complete 1 job from the Tip Board for the Thieves Guild.",
+["name"] = "Fresh Footpad",
+["points"] = 5,
+}
+,
+[1399] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 10 jobs from the Tip Board for the Thieves Guild.",
+["name"] = "Practiced Prowler",
+["points"] = 10,
+}
+,
+[1400] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 30 jobs from the Tip Board for the Thieves Guild.",
+["name"] = "Sophisticated Shadowfoot",
+["points"] = 15,
+}
+,
+[1401] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Assist each member of the Thieves Guild in resolving personal matters.",
+["name"] = "Honor Among Thieves",
+["points"] = 50,
+}
+,
+[1402] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Evade justice with the help of the \"Timely Escape\" Thieves Guild skill, as well as a friendly footpad.",
+["name"] = "And Then They Were Gone",
+["points"] = 5,
+}
+,
+[1403] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Complete 1 heist for the Thieves Guild without being detected.",
+["name"] = "Master of Shadows",
+["points"] = 10,
+}
+,
+[1404] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Receive the highest possible reward in 5 heists for the Thieves Guild.",
+["name"] = "Deep Pockets",
+["points"] = 15,
+}
+,
+[1405] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "At each Outlaws Refuge within the Aldmeri Dominion, receive 4000 gold for fencing items.",
+["name"] = "Eagle\'s Nest-Egg",
+["points"] = 15,
+}
+,
+[1406] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "At each Outlaws Refuge within the Ebonheart Pact, receive 4000 gold for fencing items.",
+["name"] = "Dragon\'s Hoard",
+["points"] = 15,
+}
+,
+[1407] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "At each Outlaws Refuge within the Daggerfall Covenant, receive 4000 gold for fencing items.",
+["name"] = "Lion\'s Golden Pride",
+["points"] = 15,
+}
+,
+[1408] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Receive 4000 gold for fencing items at the Thieves Den in Abah\'s Landing.",
+["name"] = "Merchant Lord\'s Coffers",
+["points"] = 10,
+}
+,
+[1409] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "At each Outlaws Refuge within every Alliance territory, as well as the Thieves Den, receive 4000 gold for fencing items.",
+["name"] = "Magnanimous Magnate",
+["points"] = 50,
+}
+,
+[1410] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Execute all targets listed in the Litany of Blood and collect your reward.",
+["name"] = "Litany of Blood",
+["points"] = 50,
+}
+,
+[1411] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Collect and learn every chapter in the Trinimac style book found in Wrothgar.",
+["name"] = "Trinimac Style Master",
+["points"] = 50,
+}
+,
+[1412] = {
+["Category"] = "Orsinium",
+["Category_ID"] = 21,
+["description"] = "Collect and learn every chapter in the Malacath style book found in Wrothgar.",
+["name"] = "Malacath Style Master",
+["points"] = 50,
+}
+,
+[1413] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Travel to the notorious free port of Abah\'s Landing!",
+["name"] = "Spoils of Abah\'s Landing",
+["points"] = 5,
+}
+,
+[1414] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn every chapter in the Ebonheart Pact style book found in Cyrodiil and Imperial City.",
+["name"] = "Ebonheart Pact Style Master",
+["points"] = 50,
+}
+,
+[1415] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn every chapter in the Aldmeri Dominion style book found in Cyrodiil and Imperial City.",
+["name"] = "Aldmeri Dominion Style Master",
+["points"] = 50,
+}
+,
+[1416] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn every chapter in the Daggerfall Covenant style book found in Cyrodiil and Imperial City.",
+["name"] = "Daggerfall Covenant Style Master",
+["points"] = 50,
+}
+,
+[1417] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Collect and learn every chapter in the Outlaw style book found in Hew\'s Bane.",
+["name"] = "Outlaw Style Master",
+["points"] = 50,
+}
+,
+[1418] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn the Soul Shriven style book found by completing Cadwell\'s Silver.",
+["name"] = "Soul Shriven Style Master",
+["points"] = 15,
+}
+,
+[1419] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Defeat Limenauruus the possessed minotaur and the shadow spirits at Tribune\'s Folly.",
+["name"] = "Defeat Limenauruus",
+["points"] = 10,
+}
+,
+[1420] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Enter the Kvatch Arena and defeat all challengers.",
+["name"] = "Conquer the Kvatch Arena",
+["points"] = 10,
+}
+,
+[1421] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Visit the Gold Coast and take in the local scenery.",
+["name"] = "Gold Coast Tourist",
+["points"] = 5,
+}
+,
+[1422] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Collect and learn every chapter in the Abah\'s Watch style book found in Hew\'s Bane.",
+["name"] = "Abah\'s Watch Style Master",
+["points"] = 50,
+}
+,
+[1423] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Collect and learn every chapter in the Thieves Guild style book found in Hew\'s Bane.",
+["name"] = "Thieves Guild Style Master",
+["points"] = 50,
+}
+,
+[1424] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Collect and learn every chapter in the Assassins League style book found in the Gold Coast.",
+["name"] = "Assassins League Style Master",
+["points"] = 50,
+}
+,
+[1425] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Defeat both world bosses in the Gold Coast.",
+["name"] = "Defender of the Gold Coast",
+["points"] = 15,
+}
+,
+[1426] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Explore and clear Hrota Cave.",
+["name"] = "Hrota Cave Explorer",
+["points"] = 5,
+}
+,
+[1427] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Explore and clear Garlas Agea.",
+["name"] = "Garlas Agea Explorer",
+["points"] = 5,
+}
+,
+[1428] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Discover and clear all caves and striking locales in the Gold Coast.",
+["name"] = "Gold Coast Master Explorer",
+["points"] = 15,
+}
+,
+[1429] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Discover and clear both explorable caves in the Gold Coast.",
+["name"] = "Gold Coast Cave Delver",
+["points"] = 10,
+}
+,
+[1430] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Discover all the striking locales in the Gold Coast.",
+["name"] = "Gold Coast Pathfinder",
+["points"] = 10,
+}
+,
+[1431] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Catch all 12 rare fish in the Gold Coast.",
+["name"] = "Gold Coast Master Angler",
+["points"] = 5,
+}
+,
+[1432] = {
+["Category"] = "NIL",
+["description"] = "Complete 14 story quests in the Gold Coast.",
+["name"] = "Gold Coast Adventurer",
+["points"] = 15,
+}
+,
+[1433] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete 17 story quests in the Gold Coast.",
+["name"] = "Gold Coast Grand Adventurer",
+["points"] = 50,
+}
+,
+[1434] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Bane of the Gold Coast.",
+["name"] = "Bane of the Gold Coast",
+["points"] = 50,
+}
+,
+[1435] = {
+["Category"] = "NIL",
+["description"] = "Join the Dark Brotherhood and complete the \"Voices in the Dark\" quest.",
+["name"] = "First Blood",
+["points"] = 10,
+}
+,
+[1436] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"Signed in Blood\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Dark Initiate",
+["points"] = 10,
+}
+,
+[1437] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"Welcome Home\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "New-blade",
+["points"] = 10,
+}
+,
+[1438] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"A Lesson in Silence\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Sermonizer Subduer",
+["points"] = 10,
+}
+,
+[1439] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete the \"Questions of Faith\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Brethren Benefactor",
+["points"] = 10,
+}
+,
+[1440] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"A Special Request\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Assassin",
+["points"] = 10,
+}
+,
+[1441] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"Dark Revelations\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Dark Discovery",
+["points"] = 10,
+}
+,
+[1442] = {
+["Category"] = "NIL",
+["description"] = "Complete the \"A Ghost from the Past\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Dark Investigator",
+["points"] = 10,
+}
+,
+[1443] = {
+["Category"] = "NIL",
+["description"] = "Complete \"The Wrath of Sithis\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Wrath of Sithis",
+["points"] = 10,
+}
+,
+[1444] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete the \"Filling the Void\" Dark Brotherhood quest in the Gold Coast.",
+["name"] = "Silencer",
+["points"] = 10,
+}
+,
+[1445] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete your first Black Sacrament contract, as the Speaker commanded.",
+["name"] = "First Sacrament",
+["points"] = 5,
+}
+,
+[1446] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete 7 Black Sacrament contracts, as the Speaker commanded.",
+["name"] = "Seventh Sacrament",
+["points"] = 10,
+}
+,
+[1447] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete 15 Black Sacrament contracts, as the Speaker commanded.",
+["name"] = "Fifteenth Sacrament",
+["points"] = 15,
+}
+,
+[1448] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete 5 Black Sacrament contracts at the highest possible reward level.",
+["name"] = "Perfect Sacrament",
+["points"] = 15,
+}
+,
+[1449] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete a Black Sacrament contract without being detected.",
+["name"] = "Hidden Sacrament",
+["points"] = 10,
+}
+,
+[1450] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Assassinate every target named by a Black Sacrament contract when commanded to by the Speaker.",
+["name"] = "Blackest Sacrament",
+["points"] = 15,
+}
+,
+[1451] = {
+["Category"] = "NIL",
+["description"] = "Complete your first murder contract from the \"Marked for Death\" tome.",
+["name"] = "First Contract",
+["points"] = 5,
+}
+,
+[1452] = {
+["Category"] = "NIL",
+["description"] = "Complete 10 murder contracts from the \"Marked for Death\" tome.",
+["name"] = "Tenth Contract",
+["points"] = 10,
+}
+,
+[1453] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete 30 murder contracts from the \"Marked for Death\" tome.",
+["name"] = "Thirtieth Contract",
+["points"] = 15,
+}
+,
+[1454] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Closely observe the silent vigil of the Ayleid Sentinel at Beldaburo in the Gold Coast.",
+["name"] = "Lonely Sentinel",
+["points"] = 5,
+}
+,
+[1455] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Murder 20 innocents in the Gold Coast city of Kvatch.",
+["name"] = "Kvatch Murder Spree",
+["points"] = 5,
+}
+,
+[1456] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Murder 20 innocents in the Gold Coast city of Anvil.",
+["name"] = "Anvil Murder Spree",
+["points"] = 5,
+}
+,
+[1457] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "In the capital city of each alliance, murder an innocent with the Blade of Woe.",
+["name"] = "Blood Tour",
+["points"] = 10,
+}
+,
+[1458] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Aid each of the notable figures recently arrived on the Gold Coast.",
+["name"] = "Gold Coast Connections",
+["points"] = 15,
+}
+,
+[1459] = {
+["Category"] = "NIL",
+["description"] = "Murder your first innocent with the Blade of Woe.",
+["name"] = "First Cut",
+["points"] = 5,
+}
+,
+[1460] = {
+["Category"] = "NIL",
+["description"] = "Murder 25 innocents with the Blade of Woe.",
+["name"] = "Twenty-Fifth Cut",
+["points"] = 10,
+}
+,
+[1461] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Murder 100 innocents with the Blade of Woe.",
+["name"] = "One-Hundredth Cut",
+["points"] = 15,
+}
+,
+[1462] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Serpent in Veteran Sanctum Ophidia.",
+["name"] = "Sanctum Ophidia Conqueror",
+["points"] = 50,
+}
+,
+[1463] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Complete each achievement associated with the Speaker\'s Black Sacrament contracts.",
+["name"] = "Flawless Sacrament",
+["points"] = 50,
+}
+,
+[1464] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every trait for each of the Alchemy reagents listed below.",
+["name"] = "Toxicologist",
+["points"] = 50,
+}
+,
+[1465] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Torchbug Thorax Alchemy reagent.",
+["name"] = "Torchbug Thorax",
+["points"] = 5,
+}
+,
+[1466] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Beetle Scuttle Alchemy reagent.",
+["name"] = "Beetle Scuttle",
+["points"] = 5,
+}
+,
+[1467] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Spider Egg Alchemy reagent.",
+["name"] = "Spider Egg",
+["points"] = 5,
+}
+,
+[1468] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Butterfly Wing Alchemy reagent.",
+["name"] = "Butterfly Wing",
+["points"] = 5,
+}
+,
+[1469] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Fleshfly Larva Alchemy reagent.",
+["name"] = "Fleshfly Larva",
+["points"] = 5,
+}
+,
+[1470] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Scrib Jelly Alchemy reagent.",
+["name"] = "Scrib Jelly",
+["points"] = 5,
+}
+,
+[1471] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Nightshade Alchemy reagent.",
+["name"] = "Nightshade",
+["points"] = 5,
+}
+,
+[1472] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn all the traits for the Mudcrab Chitin Alchemy reagent.",
+["name"] = "Mudcrab Chitin",
+["points"] = 5,
+}
+,
+[1473] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1474] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Warrior in Veteran Hel Ra Citadel.",
+["name"] = "Hel Ra Citadel Conqueror",
+["points"] = 50,
+}
+,
+[1475] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1476] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1477] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1478] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1479] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1480] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1481] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1482] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1483] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1484] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1485] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1486] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1487] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1488] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1489] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1490] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1491] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1492] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1493] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1494] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1495] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1496] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1497] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1498] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1499] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1500] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1501] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1502] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1503] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Celestial Mage in Veteran Aetherian Archive.",
+["name"] = "Aetherian Archive Conqueror",
+["points"] = 50,
+}
+,
+[1504] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in the Ruins of Mazzatun.",
+["name"] = "Ruins of Mazzatun Vanquisher",
+["points"] = 10,
+}
+,
+[1505] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun.",
+["name"] = "Ruins of Mazzatun Conqueror",
+["points"] = 10,
+}
+,
+[1506] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "In Veteran Ruins of Mazzatun, defeat Tree-Minder Na-Kesh after enraging her by destroying her alchemical notes on Amber Plasm.",
+["name"] = "Tree-Minder\'s Mania",
+["points"] = 50,
+}
+,
+[1507] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun within 30 minutes of starting the dungeon. Timer starts on passing through the first archway.",
+["name"] = "Ruination",
+["points"] = 50,
+}
+,
+[1508] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Zatzu the Spine-Breaker, The Mighty Chudan, Xal-Nur the Slaver, and Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without suffering a group member death.",
+["name"] = "Unbowed",
+["points"] = 50,
+}
+,
+[1509] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat 50 Xit-Xaht Sludge-Slingers in Veteran Ruins of Mazzatun.",
+["name"] = "Sludge-Slinger Slayer",
+["points"] = 10,
+}
+,
+[1510] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat 600 members of the Xit-Xaht tribe in Veteran Ruins of Mazzatun.",
+["name"] = "Xit-Xaht Slayer",
+["points"] = 10,
+}
+,
+[1511] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Complete the listed achievements for Veteran Ruins of Mazzatun.",
+["name"] = "Ruins of Mazzatun Challenger",
+["points"] = 50,
+}
+,
+[1512] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Tree-Minder Na-Kesh after first eliminating all other enemies in Ruins of Mazzatun.",
+["name"] = "Mazzatun Massacre",
+["points"] = 10,
+}
+,
+[1513] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Rescue all six of the Su-Zahleel Elders from the Ritual Chamber in Veteran Ruins of Mazzatun.",
+["name"] = "Savior of the Su-Zahleel",
+["points"] = 10,
+}
+,
+[1514] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Complete Ruins of Mazzatun without ever allowing a Sludge Slinger to empower one of its allies with Amber Plasm.",
+["name"] = "Sapped Sludge Slingers",
+["points"] = 10,
+}
+,
+[1515] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat the Mighty Chudan in Veteran Ruins of Mazzatun without any party members being hit by Bog Rush.",
+["name"] = "Haj Mota Matador",
+["points"] = 10,
+}
+,
+[1516] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Xal-Nur the Slaver in Veteran Ruins of Mazzatun without unleashing any Wamasu to assist you.",
+["name"] = "Obedience Training",
+["points"] = 10,
+}
+,
+[1517] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Xal-Nur the Slaver in Veteran Ruins of Mazzatun with only one party member cleansing the Swamp Spice. Other party members may still touch the Swamp Spice.",
+["name"] = "Clean Freak",
+["points"] = 10,
+}
+,
+[1518] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without any party members using the Reveal synergy to identify the real Avatar of the Hist.",
+["name"] = "Blind Luck",
+["points"] = 10,
+}
+,
+[1519] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Tree-Minder Na-Kesh in Veteran Ruins of Mazzatun without any party members being struck by Blistering Amber.",
+["name"] = "Sticky Situation Savvy",
+["points"] = 10,
+}
+,
+[1520] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Enter either the Ruins of Mazzatun or the Cradle of Shadows for the first time.",
+["name"] = "Shadows of the Hist Explorer",
+["points"] = 5,
+}
+,
+[1521] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1522] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in the Cradle of Shadows.",
+["name"] = "Cradle of Shadows Vanquisher",
+["points"] = 10,
+}
+,
+[1523] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows.",
+["name"] = "Cradle of Shadows Conqueror",
+["points"] = 10,
+}
+,
+[1524] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Velidreth in Veteran Cradle of Shadows, after first enraging her by defiling her statue of Mephala.",
+["name"] = "Velidreth\'s Vengeance",
+["points"] = 50,
+}
+,
+[1525] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows within 30 minutes of starting the dungeon. Timer starts on entering the initial caverns.",
+["name"] = "Exterminator",
+["points"] = 50,
+}
+,
+[1526] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Sithera, Khephidaen the Spiderkith, the Votary of Velidreth, Dranos Velador, and Velidreth the Lady of Lace in Veteran Cradle of Shadows without suffering a group member death.",
+["name"] = "Beacon in the Night",
+["points"] = 50,
+}
+,
+[1527] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Destroy 50 statues of Velidreth\'s Devotion in Veteran Cradle of Shadows.",
+["name"] = "Heretic",
+["points"] = 10,
+}
+,
+[1528] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat 600 members of the Silken Ring or their Spiderkith allies in Veteran Cradle of Shadows.",
+["name"] = "Spider Cult Slayer",
+["points"] = 10,
+}
+,
+[1529] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Complete the listed achievements for Veteran Cradle of Shadows.",
+["name"] = "Cradle of Shadows Challenger",
+["points"] = 50,
+}
+,
+[1530] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Pass through the spider caves in Veteran Cradle of Shadows without lighting more than two braziers.",
+["name"] = "Fear No Darkness",
+["points"] = 10,
+}
+,
+[1531] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Khephidaen the Spiderkith in Veteran Cradle of Shadows without relighting any extinguished braziers.",
+["name"] = "Shadowplay",
+["points"] = 10,
+}
+,
+[1532] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Dranos Velador in Veteran Cradle of Shadows without absorbing any orbs.",
+["name"] = "Divided He Fell",
+["points"] = 10,
+}
+,
+[1533] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without any party members dying in the catacombs.",
+["name"] = "Web Walker",
+["points"] = 10,
+}
+,
+[1534] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without using the Atronach\'s Light synergy.",
+["name"] = "Embrace the Shadow",
+["points"] = 10,
+}
+,
+[1535] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Velidreth in Veteran Cradle of Shadows without any party members being caught by her Shadow Sense.",
+["name"] = "Nothing to See Here",
+["points"] = 10,
+}
+,
+[1536] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Defeat Velidreth in Cradle of Shadows without any party members being hit by venom sacs.",
+["name"] = "Venomous Evasion",
+["points"] = 10,
+}
+,
+[1537] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1538] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Complete Veteran Cradle of Shadows and Veteran Ruins of Mazzatun.",
+["name"] = "Shadows of the Hist Delver",
+["points"] = 50,
+}
+,
+[1539] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Drink the Witchmother\'s Brew during the Witches Festival.",
+["name"] = "Pumpkin Pairs Well With Guts",
+["points"] = 5,
+}
+,
+[1540] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Earn your first Plunder Skull.",
+["name"] = "Plunder Skull Enthusiast",
+["points"] = 5,
+}
+,
+[1541] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Earn 50 Plunder Skulls.",
+["name"] = "Plunder Skull Aficionado",
+["points"] = 10,
+}
+,
+[1542] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Earn 100 Plunder Skulls.",
+["name"] = "Plunder Skull Fanatic",
+["points"] = 15,
+}
+,
+[1543] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete the Witchmother\'s Bargain quest.",
+["name"] = "Reaper\'s Harvest",
+["points"] = 5,
+}
+,
+[1544] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1545] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Collect and learn every chapter of the Hollowjack style book found during the Witches Festival.",
+["name"] = "Happy Work For Hollowjack",
+["points"] = 50,
+}
+,
+[1546] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete the listed achievements for the Witches Festival.",
+["name"] = "An Unsparing Harvest",
+["points"] = 50,
+}
+,
+[1547] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1548] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "During the Mud Ball Merriment, share the joy of mud balls with each Alliance leader.",
+["name"] = "Mud Ball Miscreant",
+["points"] = 5,
+}
+,
+[1549] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I.",
+["name"] = "Banished Cells I Conqueror",
+["points"] = 10,
+}
+,
+[1550] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 350 Skeletons in Veteran Banished Cells I.",
+["name"] = "Veteran Bonebreaker I",
+["points"] = 10,
+}
+,
+[1551] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 100 Daedra in Veteran Banished Cells I.",
+["name"] = "Veteran Daedra Slayer I",
+["points"] = 10,
+}
+,
+[1552] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I, all within twenty minutes. Timer starts when a group member enters the first hallway.",
+["name"] = "Banished Cells I Assassin",
+["points"] = 50,
+}
+,
+[1553] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Cell Haunter, Shadowrend, Angata the Clannfear Handler, the Skeletal Destroyer, and High Kinlord Rilis in Veteran Banished Cells I, without suffering a group member death.",
+["name"] = "Banished Cells I Survivor",
+["points"] = 50,
+}
+,
+[1554] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat High Kinlord Rilis in Veteran Banished Cells I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Soul Splitter",
+["points"] = 50,
+}
+,
+[1555] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Keeper Areldur, the Maw of the Infernal, Keeper Voranil, Keeper Imiril, Sister Sihna and Sister Vera, and High Kinlord Rilis in Banished Cells II.",
+["name"] = "Banished Cells II Vanquisher",
+["points"] = 10,
+}
+,
+[1556] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw, and Kra\'gh the Dreugh King in Veteran Fungal Grotto I.",
+["name"] = "Fungal Grotto I Conqueror",
+["points"] = 10,
+}
+,
+[1557] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 450 Goblins in Veteran Fungal Grotto I.",
+["name"] = "Veteran Goblin Slayer",
+["points"] = 10,
+}
+,
+[1558] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 50 Dreugh in Veteran Fungal Grotto I.",
+["name"] = "Veteran Dreugh Slayer",
+["points"] = 10,
+}
+,
+[1559] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw and Kra\'gh the Dreugh King in Veteran Fungal Grotto I, all within 15 minutes. Timer starts when any player enters the tunnel after the first group of Goblins.",
+["name"] = "Fungal Grotto I Assassin",
+["points"] = 50,
+}
+,
+[1560] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Tazkad the Packmaster, War Chief Ozozai, Broodbirther, Clatterclaw and Kra\'gh the Dreugh King in Veteran Fungal Grotto I, without suffering a group member death.",
+["name"] = "Fungal Grotto I Survivor",
+["points"] = 50,
+}
+,
+[1561] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Dreugh King in Veteran Fungal Grotto I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Catch of the Day",
+["points"] = 50,
+}
+,
+[1562] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Mephala\'s Fang, Gamyne Bandu, Ciirenas the Shepherd, the Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Fungal Grotto II.",
+["name"] = "Fungal Grotto II Vanquisher",
+["points"] = 10,
+}
+,
+[1563] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Mephala\'s Fang, Gamyne Bandu, Ciirenas the Sheperd, Spawn of Mephala, Reggr Dark-Dawn, and Vila Theran in Veteran Fungal Grotto II, without suffering a group member death.",
+["name"] = "Fungal Grotto II Survivor",
+["points"] = 50,
+}
+,
+[1564] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Keepers Imiril, Areldur, and Voranil, as well as the Maw of the Infernal and the Sisters Sihna and Vera, before defeating High Kinlord Rilis in Veteran Banished Cells II, without suffering a group member death.",
+["name"] = "Banished Cells II Survivor",
+["points"] = 50,
+}
+,
+[1565] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Spindlekin, the Swarm Mother, Cerise the Widow-Maker, Big Rabbu, and the Whisperer in Veteran Spindleclutch I.",
+["name"] = "Spindleclutch I Conqueror",
+["points"] = 10,
+}
+,
+[1566] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 600 Spiders in Veteran Spindleclutch I.",
+["name"] = "Veteran Spider Slayer",
+["points"] = 10,
+}
+,
+[1567] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 350 Corrupted in Veteran Spindleclutch I.",
+["name"] = "Veteran Corrupted Slayer",
+["points"] = 10,
+}
+,
+[1568] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Swarm Mother and the Whisperer in Veteran Spindleclutch I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of spiders.",
+["name"] = "Spindleclutch I Assassin",
+["points"] = 50,
+}
+,
+[1569] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Swarm Mother and the Whisperer in Veteran Spindleclutch I, without suffering a group member death.",
+["name"] = "Spindleclutch I Survivor",
+["points"] = 50,
+}
+,
+[1570] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Whisperer in Veteran Spindleclutch I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Quiet at Last",
+["points"] = 50,
+}
+,
+[1571] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Mad Martine, Blood Spawn, Praxin Douare, the Flesh Atronach Trio, Urvan Veleth, and Vorenor Winterbourne in Spindleclutch II.",
+["name"] = "Spindleclutch II Vanquisher",
+["points"] = 10,
+}
+,
+[1572] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Mad Mortine, Blood Spawn, Praxin Douare, the Flesh Atronach trio, Urvan Veleth, and Vorenor Winterbourne in Veteran Spindleclutch II, without suffering a group member death.",
+["name"] = "Spindleclutch II Survivor",
+["points"] = 50,
+}
+,
+[1573] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I.",
+["name"] = "Elden Hollow I Conqueror",
+["points"] = 10,
+}
+,
+[1574] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 400 Darkfern Orcs in Veteran Elden Hollow I.",
+["name"] = "Veteran Darkfern Orc Slayer",
+["points"] = 10,
+}
+,
+[1575] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 100 Alit in Veteran Elden Hollow I.",
+["name"] = "Veteran Alit Slayer",
+["points"] = 10,
+}
+,
+[1576] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thalmor.",
+["name"] = "Elden Hollow I Assassin",
+["points"] = 50,
+}
+,
+[1577] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Akash gra-Mal, the Ancient Spriggan, Chokethorn, Nenesh gro-Mal, Leafseether, and Canonreeve Oraneth in Veteran Elden Hollow I, without suffering a group member death.",
+["name"] = "Elden Hollow I Survivor",
+["points"] = 50,
+}
+,
+[1578] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Canonreeve Oraneth in Veteran Elden Hollow I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Canonreeve Reaver",
+["points"] = 50,
+}
+,
+[1579] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Dubroze the Infest, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame in Elden Hollow II.",
+["name"] = "Elden Hollow II Vanquisher",
+["points"] = 10,
+}
+,
+[1580] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Dubroze the Infestor, Dark Root, Azara the Frightener, Murklight, the Shadow Guard, and Bogdan the Nightflame, without suffering a group member death.",
+["name"] = "Elden Hollow II Survivor",
+["points"] = 50,
+}
+,
+[1581] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I.",
+["name"] = "Darkshade Caverns I Conqueror",
+["points"] = 10,
+}
+,
+[1582] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 175 Pit Rat Thugs in Veteran Darkshade Caverns I.",
+["name"] = "Veteran Pit Rat Slayer",
+["points"] = 10,
+}
+,
+[1583] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 300 Kwama in Veteran Darkshade Caverns I.",
+["name"] = "Veteran Kwama Slayer",
+["points"] = 10,
+}
+,
+[1584] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I within twenty minutes of starting the dungeon. Timer starts when a group member descends into the caverns.",
+["name"] = "Darkshade Caverns I Assassin",
+["points"] = 50,
+}
+,
+[1585] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Head Shepard Neloren, Foreman Llothan, the Hive Lord, the Cavern Patriarch, the Sentinel of Rkugamz, and the Cutting Sphere in Veteran Darkshade Caverns I, without suffering a group member death.",
+["name"] = "Darkshade Caverns I Survivor",
+["points"] = 50,
+}
+,
+[1586] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Sentinel of Rkugamz in Veteran Darkshade Caverns I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Well Out of Warranty",
+["points"] = 50,
+}
+,
+[1587] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat the Fallen Foreman, Transmuted Hive Lord, Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Darkshade Caverns II.",
+["name"] = "Darkshade Caverns II Vanquisher",
+["points"] = 10,
+}
+,
+[1588] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Fallen Foreman, Transmuted Hive Lord, Transmuted Alit, Grobull the Transmuted, the Engine Garrison, and the Engine Guardian in Veteran Darkshade Caverns II, without suffering a group member death.",
+["name"] = "Darkshade Caverns II Survivor",
+["points"] = 50,
+}
+,
+[1589] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varain Pellingare, and Allene Pellingare in Veteran Wayrest Sewers I.",
+["name"] = "Wayrest Sewers I Conqueror",
+["points"] = 10,
+}
+,
+[1590] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 800 Skeevers in Veteran Wayrest Sewers I.",
+["name"] = "Veteran Skeever Slayer",
+["points"] = 10,
+}
+,
+[1591] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 500 Pellingare Mercenaries in Veteran Wayrest Sewers I.",
+["name"] = "Veteran Mercenary Slayer",
+["points"] = 10,
+}
+,
+[1592] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varaine Pellingare, and Allene Pellingare in Veteran Wayrest Sewers I, all within fifteen minutes of starting the dungeon. Timer starts when any player enters the first tunnel to the right of the entrance chamber.",
+["name"] = "Wayrest Sewers I Assassin",
+["points"] = 50,
+}
+,
+[1593] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Slimecraw, Investigator Garron, The Rat Whisperer, Uulgarg the Hungry, Varaine Pellingare, and Allene in Veteran Wayrest Sewers I, without suffering a group member death.",
+["name"] = "Wayrest Sewers I Survivor",
+["points"] = 50,
+}
+,
+[1594] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Allene Pellingare in Veteran Wayrest Sewers I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Down the Gutter",
+["points"] = 50,
+}
+,
+[1595] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Malubeth the Scourger, Skull Reaper, Uulgarg the Risen, Garron the Returned, the Forgotten One, and Varaine and Allene Pellingare in Wayrest Sewers II.",
+["name"] = "Wayrest Sewers II Vanquisher",
+["points"] = 10,
+}
+,
+[1596] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in Veteran Wayrest Sewers II, without suffering a group member death.",
+["name"] = "Wayrest Sewers II Survivor",
+["points"] = 50,
+}
+,
+[1597] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Infernal Guardian, Golor the Banekin Handler, the Warden of the Shrine, the Dark Ember, Rothariel Flameheart, and Razor Master Erthas in Veteran City of Ash I.",
+["name"] = "City of Ash I Conqueror",
+["points"] = 15,
+}
+,
+[1598] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 550 Banekin in Veteran City of Ash I.",
+["name"] = "Veteran Deadlands Banekin Slayer",
+["points"] = 10,
+}
+,
+[1599] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 60 Flame Atronach in Veteran City of Ash I.",
+["name"] = "Veteran Flame Atronach Slayer",
+["points"] = 10,
+}
+,
+[1600] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in Veteran City of Ash I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
+["name"] = "City of Ash I Assassin",
+["points"] = 50,
+}
+,
+[1601] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in Veteran City of Ash I, without suffering a group member death.",
+["name"] = "City of Ash I Survivor",
+["points"] = 50,
+}
+,
+[1602] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Razor Master Erthas in Veteran City of Ash I, after invoking the Scroll of Glorious Battle.",
+["name"] = "Fire Brigade",
+["points"] = 50,
+}
+,
+[1603] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria in City of Ash II.",
+["name"] = "City of Ash II Vanquisher",
+["points"] = 10,
+}
+,
+[1604] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Arx Corinium by defeating the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen.",
+["name"] = "Arx Corinium Conqueror",
+["points"] = 15,
+}
+,
+[1605] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 400 Lamias in Veteran Arx Corinium.",
+["name"] = "Veteran Lamia Slayer",
+["points"] = 10,
+}
+,
+[1606] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 175 Giant Snakes in Veteran Arx Corinium.",
+["name"] = "Veteran Snake Slayer",
+["points"] = 10,
+}
+,
+[1607] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen in Veteran Arx Corinium within twenty minutes of starting the dungeon. Timer starts when players engage the first group of nesting serpents.",
+["name"] = "Arx Corinium Assassin",
+["points"] = 50,
+}
+,
+[1608] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Fanged Menace, Ganakton the Tempest, Sliklenia the Songstress, Matron Ixniaa, the Ancient Lurcher, and Sellistrix the Lamia Queen in Veteran Arx Corinium, without suffering a group member death.",
+["name"] = "Arx Corinium Survivor",
+["points"] = 50,
+}
+,
+[1609] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Sellistrix the Lamia Queen in Veteran Arx Corinium, after invoking the Scroll of Glorious Battle.",
+["name"] = "Snake Skinner",
+["points"] = 50,
+}
+,
+[1610] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Mage Master, Archmaster Siniel, Death\'s Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I.",
+["name"] = "Crypt of Hearts I Conqueror",
+["points"] = 10,
+}
+,
+[1611] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 400 Zombies in Veteran Crypt of Hearts I.",
+["name"] = "Veteran Crypt Zombie Slayer",
+["points"] = 10,
+}
+,
+[1612] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 400 Skeletons in Veteran Crypt of Hearts I.",
+["name"] = "Veteran Crypt Skeleton Slayer",
+["points"] = 10,
+}
+,
+[1613] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Mage Master, Archmaster Siniel, Death\'s Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I within twenty minutes of starting the dungeon. Timer starts when players engage the first group of undead.",
+["name"] = "Crypt of Hearts I Assassin",
+["points"] = 50,
+}
+,
+[1614] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Mage Master, Archmaster Siniel, Death\'s Leviathan, Uulkar Bonehand, Dogas the Berserker, and the Ilambris Twins in Veteran Crypt of Hearts I, without suffering a group member death.",
+["name"] = "Crypt of Hearts I Survivor",
+["points"] = 50,
+}
+,
+[1615] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Ilambris Twins in Veteran Crypt of Hearts I, after invoking the Scroll of Glorious Battle.",
+["name"] = "A Crypt for Two",
+["points"] = 50,
+}
+,
+[1616] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Defeat Ibelgast, Ruzozuzalpamaz, the Chamber Guardian, the Brothers Ilambris and the Ilambris Amalgam, Mezeluth, and Nerien\'eth in Crypt of Hearts II.",
+["name"] = "Crypt of Hearts II Vanquisher",
+["points"] = 10,
+}
+,
+[1617] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Tempest Island by defeating Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir.",
+["name"] = "Tempest Island Conqueror",
+["points"] = 15,
+}
+,
+[1618] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 600 Lamias in Veteran Tempest Island.",
+["name"] = "Veteran Tempest Lamia Slayer",
+["points"] = 10,
+}
+,
+[1619] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 550 Sea Vipers in Veteran Tempest Island.",
+["name"] = "Veteran Sea Viper Slayer",
+["points"] = 10,
+}
+,
+[1620] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir in Veteran Tempest Island within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Lamia.",
+["name"] = "Tempest Island Assassin",
+["points"] = 50,
+}
+,
+[1621] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Sonolia the Matriarch, Valaran Stormcaller, Yalorasse the Speaker, Stormfist, Commodore Ohmanil, and Stormreeve Neidir in Veteran Tempest Island, without suffering a group member death.",
+["name"] = "Tempest Island Survivor",
+["points"] = 50,
+}
+,
+[1622] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Stormreeve Neidir in Veteran Tempest Island, after invoking the Scroll of Glorious Battle.",
+["name"] = "Burial at Sea",
+["points"] = 50,
+}
+,
+[1623] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Direfrost Keep by defeating Teethnasher the Frostbound, the Guardian of the Flame, Drodda\'s Apprentice, Drodda\'s Dreadlord, Iceheart, and Drodda of Icereach.",
+["name"] = "Direfrost Keep Conqueror",
+["points"] = 15,
+}
+,
+[1624] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 325 Draugr in Veteran Direfrost Keep.",
+["name"] = "Veteran Draugr Slayer",
+["points"] = 10,
+}
+,
+[1625] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 350 Frozen Skeletons in Veteran Direfrost Keep.",
+["name"] = "Veteran Frozen Skeleton Slayer",
+["points"] = 10,
+}
+,
+[1626] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Teethnasher the Frostbound, the Guardian of the Flame, Drodda\'s Apprentice, Drodda\'s Dreadlord, Iceheart, and Drodda of Icereach in Veteran Direfrost Keep within twenty minutes of starting the dungeon. Timer starts when any player enters the first bear-filled cavern.",
+["name"] = "Direfrost Keep Assassin",
+["points"] = 50,
+}
+,
+[1627] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Teethnasher the Frostbound, the Guardian of the Flame, Drodda\'s Apprentice, Drodda\'s Dreadlord, Iceheart, and Drodda of Icereach in Veteran Direfrost Keep, without suffering a group member death.",
+["name"] = "Direfrost Keep Survivor",
+["points"] = 50,
+}
+,
+[1628] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Drodda of Icereach in Veteran Direfrost Keep, after invoking the Scroll of Glorious Battle.",
+["name"] = "A Dish Served Cold",
+["points"] = 50,
+}
+,
+[1629] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Volenfell by defeating the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council.",
+["name"] = "Volenfell Conqueror",
+["points"] = 15,
+}
+,
+[1630] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 250 Treasure Hunters in Veteran Volenfell.",
+["name"] = "Veteran Treasure Hunter Slayer",
+["points"] = 10,
+}
+,
+[1631] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 300 Dwarven Constructs in Veteran Volenfell.",
+["name"] = "Veteran Dwarven Construct Slayer",
+["points"] = 10,
+}
+,
+[1632] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council in Veteran Volenfell within twenty minutes of starting the dungeon. Timer starts when players engage the first group of treasure hunters.",
+["name"] = "Volenfell Assassin",
+["points"] = 50,
+}
+,
+[1633] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Desert Lion, Quintus Verres and the Monstrous Gargoyle, Boilbite, Tremorscale, the Unstable Construct, and the Guardian Council in Veteran Volenfell, without suffering a group member death.",
+["name"] = "Volenfell Survivor",
+["points"] = 50,
+}
+,
+[1634] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Guardian Constructs in Veteran Volenfell, after invoking the Scroll of Glorious Battle.",
+["name"] = "They Were Just Rusty",
+["points"] = 50,
+}
+,
+[1635] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Selene\'s Web by defeating Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene.",
+["name"] = "Selene\'s Web Conqueror",
+["points"] = 15,
+}
+,
+[1636] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 250 of Selene\'s Bosmer in Veteran Selene\'s Web.",
+["name"] = "Veteran Selene\'s Bosmer Slayer",
+["points"] = 10,
+}
+,
+[1637] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 250 Spiders in Veteran Selene\'s Web.",
+["name"] = "Veteran Selene\'s Spider Slayer",
+["points"] = 10,
+}
+,
+[1638] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene in Veteran Selene\'s Web within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Bosmer.",
+["name"] = "Selene\'s Web Assassin",
+["points"] = 50,
+}
+,
+[1639] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Treethane Kerninn, Longclaw, Queen Aklayah, Foulhide, Mennir Many-Legs, and Selene in Veteran Selene\'s Web, without suffering a group member death.",
+["name"] = "Selene\'s Web Survivor",
+["points"] = 50,
+}
+,
+[1640] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Selene in Veteran Selene\'s Web, after invoking the Scroll of Glorious Battle.",
+["name"] = "All Wrapped Up",
+["points"] = 50,
+}
+,
+[1641] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Blessed Crucible by defeating Grunt the Clever, the Pack, Teranya the Faceless, the Troll King, Captain Thoran, and the Lava Queen.",
+["name"] = "Blessed Crucible Conqueror",
+["points"] = 15,
+}
+,
+[1642] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 500 Gladiators in Veteran Blessed Crucible.",
+["name"] = "Veteran Gladiator Slayer",
+["points"] = 10,
+}
+,
+[1643] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 150 Durzogs in Veteran Blessed Crucible.",
+["name"] = "Veteran Durzog Slayer",
+["points"] = 10,
+}
+,
+[1644] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat every boss in Veteran Blessed Crucible within twenty minutes of starting the dungeon. Timer starts when any group member cross the first bridge over lava.",
+["name"] = "Blessed Crucible Assassin",
+["points"] = 50,
+}
+,
+[1645] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Grunt the Clever, the Pack, Teranya the Faceless, the Troll King, Captain Thoran, and the Lava Queen in Veteran Blessed Crucible, without suffering a group member death.",
+["name"] = "Blessed Crucible Survivor",
+["points"] = 50,
+}
+,
+[1646] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Lava Queen in Veteran Blessed Crucible, after invoking the Scroll of Glorious Battle.",
+["name"] = "Coronation by Fire",
+["points"] = 50,
+}
+,
+[1647] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Blackheart Haven by defeating Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart",
+["name"] = "Blackheart Haven Conqueror",
+["points"] = 15,
+}
+,
+[1648] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 500 Haven Pirates in Veteran Blackheart Haven.",
+["name"] = "Veteran Pirate Slayer",
+["points"] = 10,
+}
+,
+[1649] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 400 Harpies in Veteran Blackheart Haven.",
+["name"] = "Veteran Harpy Slayer",
+["points"] = 10,
+}
+,
+[1650] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart in Veteran Blackheart Haven within twenty minutes of starting the dungeon. Timer starts when the first player leaves the starting docks.",
+["name"] = "Blackheart Haven Assassin",
+["points"] = 50,
+}
+,
+[1651] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Iron-Heel, Atarus, First Mate Wavecutter, the Roost Mother, Hollow Heart, and Captain Blackheart in Veteran Blackheart Haven, without suffering a group member death.",
+["name"] = "Blackheart Haven Survivor",
+["points"] = 50,
+}
+,
+[1652] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat Captain Blackheart in Veteran Blackheart Haven, after invoking the Scroll of Glorious Battle.",
+["name"] = "Thoroughly Plundered",
+["points"] = 50,
+}
+,
+[1653] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Complete Veteran Vaults of Madness by defeating the Cursed One, Ulguna Soul-Reaver, Death\'s Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect.",
+["name"] = "Vaults of Madness Conqueror",
+["points"] = 15,
+}
+,
+[1654] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 150 Dremora in Veteran Vaults of Madness.",
+["name"] = "Veteran Dremora Slayer",
+["points"] = 10,
+}
+,
+[1655] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat 750 Feral Shriven in Veteran Vaults of Madness.",
+["name"] = "Veteran Feral Shriven Slayer",
+["points"] = 10,
+}
+,
+[1656] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Cursed One, Ulguna Soul-Reaver, Death\'s Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect in Veteran Vaults of Madness within twenty minutes of starting the dungeon. Timer starts when players engage the first group of tormentors.",
+["name"] = "Vaults of Madness Assassin",
+["points"] = 50,
+}
+,
+[1657] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Cursed One, Ulguna Soul-Reaver, Death\'s Head, Grothdarr, Achaeraizur, the Ancient One, Iskra the Omen, and the Mad Architect in Veteran Vaults of Madness, without suffering a group member death.",
+["name"] = "Vaults of Madness Survivor",
+["points"] = 50,
+}
+,
+[1658] = {
+["Category"] = "Veteran Dungeons",
+["Category_ID"] = 5,
+["description"] = "Defeat the Mad Architect in Veteran Vaults of Madness, after invoking the Scroll of Glorious Battle.",
+["name"] = "New Mayor of Crazy Town",
+["points"] = 50,
+}
+,
+[1659] = {
+["Category"] = "Thieves Guild",
+["Category_ID"] = 20,
+["description"] = "Learn every chapter in the dro-m\'Athra style book, found in weekly quest reward containers for sealing the Maw of Lorkhaj.",
+["name"] = "Dro-m\'Athra Style Master",
+["points"] = 50,
+}
+,
+[1660] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Learn every chapter in the Order of the Hour style book, occasionally found in daily quest reward containers for successfully competing in the Kvatch Arena.",
+["name"] = "Order of the Hour Style Master",
+["points"] = 50,
+}
+,
+[1661] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Learn every chapter in the Dark Brotherhood style book, often found in daily quest reward containers for fulfilling the Black Sacrament.",
+["name"] = "Dark Brotherhood Style Master",
+["points"] = 50,
+}
+,
+[1662] = {
+["Category"] = "Dark Brotherhood",
+["Category_ID"] = 19,
+["description"] = "Learn every chapter in the Minotaur style book, occasionally found in daily quest reward containers for resolving the disturbances at Tribune\'s Folly.",
+["name"] = "Minotaur Style Master",
+["points"] = 50,
+}
+,
+[1663] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and complete all five Magical Anomalies in Craglorn.",
+["name"] = "Anomalous Scholar",
+["points"] = 15,
+}
+,
+[1664] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and complete all five Anka-Ra Sites in Craglorn.",
+["name"] = "Anka-Ra Consecrationist",
+["points"] = 15,
+}
+,
+[1665] = {
+["Category"] = "Exploration",
+["Category_ID"] = 6,
+["description"] = "Discover and complete all five Iron Orc Nirncrux Mines in Craglorn.",
+["name"] = "Nirncrux Inspector",
+["points"] = 15,
+}
+,
+[1666] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Dance the Lava Foot Stomp with another player at each Stonefalls tavern.",
+["name"] = "Lava Foot Shuffle",
+["points"] = 5,
+}
+,
+[1667] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "During the Castle Charm Challenge in Stormhaven, perform with another player in front of each crowd.",
+["name"] = "The Charming Castle Duo",
+["points"] = 5,
+}
+,
+[1668] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "While on the War Orphan\'s Sojourn in Grahtwood, donate both your time and your gold.",
+["name"] = "War Orphan\'s Benefactor",
+["points"] = 5,
+}
+,
+[1669] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Catch five of each type of fish traditionally served during the Fish Boon Feast in Shadowfen.",
+["name"] = "Fish Boon Angler",
+["points"] = 5,
+}
+,
+[1670] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "During the Trial of Five-Clawed Guile in Reaper\'s March, unlock all chests in 35 seconds or less.",
+["name"] = "Five-Clawed Cat Burglar",
+["points"] = 5,
+}
+,
+[1671] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "During the Snow Bear Plunge in Eastmarch, leap into the freezing water with no armor equipped.",
+["name"] = "Snow Bare Plunge",
+["points"] = 5,
+}
+,
+[1672] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "After hunting to supply the Stonetooth Bash, complement your feast by drinking some Betnikh Twice-Spiked Ale.",
+["name"] = "Stonetooth Belcher",
+["points"] = 5,
+}
+,
+[1673] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "During the Signal Fire Sprint in Bergama, light all signal fires in 35 seconds or less.",
+["name"] = "Signal Fire Zephyr",
+["points"] = 5,
+}
+,
+[1674] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete all New Life Festival celebrations across Tamriel.",
+["name"] = "New Life Celebrant",
+["points"] = 10,
+}
+,
+[1675] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Learn all of the New Life Festival recipes.",
+["name"] = "New Life Provisioner",
+["points"] = 10,
+}
+,
+[1676] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Learn every chapter in the Skinchanger style book, occasionally found in reward containers while participating in the New Life Festival.",
+["name"] = "Skinchanger Style Master",
+["points"] = 50,
+}
+,
+[1677] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete each of the achievements associated with the New Life Festival.",
+["name"] = "Glory of Magnus",
+["points"] = 50,
+}
+,
+[1678] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete the first of Bolgrul\'s Undaunted challenges.",
+["name"] = "Risk and Challenge",
+["points"] = 5,
+}
+,
+[1679] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete 10 of Bolgrul\'s Undaunted challenges.",
+["name"] = "Gold and Bragging Rights",
+["points"] = 10,
+}
+,
+[1680] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete 30 of Bolgrul\'s Undaunted challenges.",
+["name"] = "A Crown of Your Own Trousers",
+["points"] = 15,
+}
+,
+[1681] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete your first Dark Anchor contract for Cardea Gallus.",
+["name"] = "No Ground Given",
+["points"] = 5,
+}
+,
+[1682] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete 10 Dark Anchor contracts for Cardea Gallus.",
+["name"] = "Return to Sender",
+["points"] = 10,
+}
+,
+[1683] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Complete 30 Dark Anchor contracts for Cardea Gallus.",
+["name"] = "Stay Out Of Tamriel",
+["points"] = 15,
+}
+,
+[1684] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Recover your first Mad God\'s relic for Alvur Baren.",
+["name"] = "The Madness Isn\'t Catching",
+["points"] = 5,
+}
+,
+[1685] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Recover 10 Mad God\'s relics for Alvur Baren.",
+["name"] = "But I\'d Say It\'s Rather Fetching",
+["points"] = 10,
+}
+,
+[1686] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Recover 30 Mad God\'s relics for Alvur Baren.",
+["name"] = "With Butterflies A-Retching",
+["points"] = 15,
+}
+,
+[1687] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Win your first duel against another player.",
+["name"] = "Blooded Duelist",
+["points"] = 5,
+}
+,
+[1688] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Win 25 duels against other players.",
+["name"] = "Seasoned Duelist",
+["points"] = 10,
+}
+,
+[1689] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Win 100 duels against other players.",
+["name"] = "Master Duelist",
+["points"] = 15,
+}
+,
+[1690] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Bloodroot Forge.",
+["name"] = "Bloodroot Forge Vanquisher",
+["points"] = 10,
+}
+,
+[1691] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge.",
+["name"] = "Bloodroot Forge Conqueror",
+["points"] = 10,
+}
+,
+[1692] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat 50 Dreadhorn Firehides in Veteran Bloodroot Forge.",
+["name"] = "Veteran Firehide Slayer",
+["points"] = 10,
+}
+,
+[1693] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat 300 Dreadhorn Blade-Bearers, Manhunters, and Clanslayers in Veteran Bloodroot Forge.",
+["name"] = "Veteran Dreadhorn Warrior Slayer",
+["points"] = 10,
+}
+,
+[1694] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge within twenty minutes of starting the dungeon. Timer starts when players pass the first Dreadhorn campsite.",
+["name"] = "Right to the Root of the Problem",
+["points"] = 50,
+}
+,
+[1695] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam in Veteran Bloodroot Forge, without suffering a group member death.",
+["name"] = "Parched Earth",
+["points"] = 50,
+}
+,
+[1696] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat the Earthgore Amalgam in Veteran Bloodroot Forge after invoking the Scroll of Glorious Battle.",
+["name"] = "Tempered Tantrum",
+["points"] = 50,
+}
+,
+[1697] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Use the Stonefire Crucible to stun five targets and the Flameslake Cauldron to cool five lava pools within Bloodroot Forge.",
+["name"] = "Blood, Sweat and Fire",
+["points"] = 5,
+}
+,
+[1698] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Falkreath Hold.",
+["name"] = "Falkreath Hold Vanquisher",
+["points"] = 10,
+}
+,
+[1699] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold.",
+["name"] = "Falkreath Hold Conqueror",
+["points"] = 10,
+}
+,
+[1700] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat 60 Dreadhorn Tramplers in Veteran Falkreath Hold.",
+["name"] = "Veteran Minotaur Trampler Slayer",
+["points"] = 10,
+}
+,
+[1701] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat 150 Dreadhorn Town-Razers, Wildtamers, and Firebrands in Veteran Falkreath Hold.",
+["name"] = "Veteran Dreadhorn Mage Slayer",
+["points"] = 10,
+}
+,
+[1702] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Dreadhorn invaders.",
+["name"] = "Bull Rush",
+["points"] = 50,
+}
+,
+[1703] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Morrigh Bullblood, the Siege Mammoth, Cernunnon, Deathlord Bjarfrud Skjoralmor, and Domihaus the Bloody-Horned in Veteran Falkreath Hold, without suffering a group member death.",
+["name"] = "The Unbroken Line",
+["points"] = 50,
+}
+,
+[1704] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold after sounding the Warhorn in the Jarl\'s Hall.",
+["name"] = "Taking the Bull by the Horns",
+["points"] = 50,
+}
+,
+[1705] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Cleanse 1000 corpses in Falkreath Hold\'s Hall of the Dead on any difficulty.",
+["name"] = "Saluting the Honored Dead",
+["points"] = 5,
+}
+,
+[1706] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1707] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete one Undaunted Pledge bestowed by Urgarlag Chief-bane.",
+["name"] = "Green No Longer",
+["points"] = 5,
+}
+,
+[1708] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 10 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
+["name"] = "A Bloody Business",
+["points"] = 10,
+}
+,
+[1709] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 50 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
+["name"] = "Seeker of the Unknown",
+["points"] = 15,
+}
+,
+[1710] = {
+["Category"] = "Dungeons",
+["Category_ID"] = 4,
+["description"] = "Complete 100 Undaunted Pledges bestowed by Urgarlag Chief-bane.",
+["name"] = "Urgarlag\'s Cohort",
+["points"] = 50,
+}
+,
+[1711] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1712] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Find all 30 ancestral tombs in Vvardenfell, make a rubbing of the information they contain, and deliver these rubbings to Librarian Bradyn to discover the location of the lost Library of Andule.",
+["name"] = "Ancestral Tombs Hunter",
+["points"] = 50,
+}
+,
+[1713] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every chapter in the Yokudan style book, occasionally found in repeatable quest reward containers in Craglorn.",
+["name"] = "Yokudan Style Master",
+["points"] = 50,
+}
+,
+[1714] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every chapter in the Celestial style book, found in the weekly quest reward containers for Craglorn Trials.",
+["name"] = "Celestial Style Master",
+["points"] = 50,
+}
+,
+[1715] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every chapter in the Draugr style book, found in reward containers from daily quests for the Fighters Guild, the Mages Guild, and Bolgrul of the Undaunted.",
+["name"] = "Draugr Style Master",
+["points"] = 50,
+}
+,
+[1716] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete the challenges set forth by Jester Ayrenn, Jester Emeric, and Jester Jorunn and be crowned Lord of Misrule.",
+["name"] = "Lord of Misrule",
+["points"] = 5,
+}
+,
+[1717] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Rescue Jester Skald-King Jorunn\'s visiting princess without being spotted by the Butcher.",
+["name"] = "Princess Rescuer",
+["points"] = 5,
+}
+,
+[1718] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Festoon 20 players with cherry blossoms during the Jester\'s Festival.",
+["name"] = "Smile, in the Name of the Queen",
+["points"] = 5,
+}
+,
+[1719] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Use a total of 50 illusion dazzlers.",
+["name"] = "Illusive Dazzler",
+["points"] = 5,
+}
+,
+[1720] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Bring some color to each of the Undaunted Enclaves with an Illusion Dazzler during the Jester\'s Festival.",
+["name"] = "Dazzling Entertainer",
+["points"] = 5,
+}
+,
+[1721] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Acquire and learn all of the Jester\'s Festival provisioning recipes.",
+["name"] = "Jester\'s Personal Chef",
+["points"] = 10,
+}
+,
+[1722] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1723] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete each of the Jester\'s Festival achievements.",
+["name"] = "Royal Jester",
+["points"] = 50,
+}
+,
+[1724] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter any of the following inn rooms.",
+["name"] = "Permanent Tenant",
+["points"] = 5,
+}
+,
+[1725] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter any of the following staple homes.",
+["name"] = "Homeowner",
+["points"] = 5,
+}
+,
+[1726] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter any of the following classic homes.",
+["name"] = "Landowner",
+["points"] = 10,
+}
+,
+[1727] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter Serenity Falls Estate.",
+["name"] = "Clan Father",
+["points"] = 50,
+}
+,
+[1728] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter Daggerfall Overlook.",
+["name"] = "Lord",
+["points"] = 50,
+}
+,
+[1729] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter Ebonheart Chateau.",
+["name"] = "Councilor",
+["points"] = 50,
+}
+,
+[1730] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter all three of the following notable homes.",
+["name"] = "Count",
+["points"] = 50,
+}
+,
+[1731] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 75 Suite furnishings.",
+["name"] = "Suite Decorator",
+["points"] = 5,
+}
+,
+[1732] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 Parlor furnishings.",
+["name"] = "Parlor Decorator",
+["points"] = 5,
+}
+,
+[1733] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 Library furnishings.",
+["name"] = "Library Decorator",
+["points"] = 5,
+}
+,
+[1734] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 Dining Room furnishings.",
+["name"] = "Dining Room Decorator",
+["points"] = 5,
+}
+,
+[1735] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 30 Courtyard furnishings.",
+["name"] = "Courtyard Decorator",
+["points"] = 5,
+}
+,
+[1736] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 20 Undercroft furnishings.",
+["name"] = "Undercroft Decorator",
+["points"] = 5,
+}
+,
+[1737] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 Hearth furnishings.",
+["name"] = "Hearth Decorator",
+["points"] = 5,
+}
+,
+[1738] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 40 Gallery furnishings.",
+["name"] = "Gallery Decorator",
+["points"] = 5,
+}
+,
+[1739] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 Workshop furnishings.",
+["name"] = "Workshop Decorator",
+["points"] = 5,
+}
+,
+[1740] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 20 Lighting furnishings.",
+["name"] = "Lighting Decorator",
+["points"] = 5,
+}
+,
+[1741] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 100 Conservatory furnishings.",
+["name"] = "Conservatory Decorator",
+["points"] = 5,
+}
+,
+[1742] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 20 Structure furnishings.",
+["name"] = "Structural Decorator",
+["points"] = 5,
+}
+,
+[1743] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1744] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 20 Miscellaneous furnishings.",
+["name"] = "Eclectic Decorator",
+["points"] = 5,
+}
+,
+[1745] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 50 objects.",
+["name"] = "Apprentice Decorator",
+["points"] = 5,
+}
+,
+[1746] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 100 objects.",
+["name"] = "Journeyman Decorator",
+["points"] = 5,
+}
+,
+[1747] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 200 objects.",
+["name"] = "Expert Decorator",
+["points"] = 10,
+}
+,
+[1748] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 300 objects.",
+["name"] = "Master Decorator",
+["points"] = 15,
+}
+,
+[1749] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Decorate a home you own with at least 350 objects. Truly, a hoard to rival those of legend.",
+["name"] = "Grand Master Decorator",
+["points"] = 50,
+}
+,
+[1750] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Have at least 3 other players visit your home simultaneously.",
+["name"] = "Party Planner",
+["points"] = 5,
+}
+,
+[1751] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Craft an item from the comfort of your own home.",
+["name"] = "Resident Crafter",
+["points"] = 5,
+}
+,
+[1752] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Deal 1,000,000 damage to training dummies in any home.",
+["name"] = "Practiced Warrior",
+["points"] = 5,
+}
+,
+[1753] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Deal 10,000,000 damage to training dummies in any home.",
+["name"] = "Expert Warrior",
+["points"] = 10,
+}
+,
+[1754] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Deal 50,000,000 damage to training dummies in any home.",
+["name"] = "Master Warrior",
+["points"] = 15,
+}
+,
+[1755] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Woodworking Blueprint.",
+["name"] = "Novice Woodworking Furnisher",
+["points"] = 5,
+}
+,
+[1756] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 50 Woodworking Blueprints.",
+["name"] = "Expert Woodworking Furnisher",
+["points"] = 15,
+}
+,
+[1757] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 200 Woodworking Blueprints.",
+["name"] = "Master Woodworking Furnisher",
+["points"] = 50,
+}
+,
+[1758] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Blacksmithing Diagram.",
+["name"] = "Novice Blacksmithing Furnisher",
+["points"] = 5,
+}
+,
+[1759] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 25 Blacksmithing Diagrams.",
+["name"] = "Expert Blacksmithing Furnisher",
+["points"] = 15,
+}
+,
+[1760] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 100 Blacksmithing Diagrams.",
+["name"] = "Master Blacksmithing Furnisher",
+["points"] = 50,
+}
+,
+[1761] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Clothing Pattern.",
+["name"] = "Novice Clothing Furnisher",
+["points"] = 5,
+}
+,
+[1762] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 25 Clothing Patterns.",
+["name"] = "Expert Clothing Furnisher",
+["points"] = 15,
+}
+,
+[1763] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 100 Clothing Patterns.",
+["name"] = "Master Clothing Furnisher",
+["points"] = 50,
+}
+,
+[1764] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Alchemy Formula.",
+["name"] = "Novice Alchemy Furnisher",
+["points"] = 5,
+}
+,
+[1765] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 10 Alchemy Formulas.",
+["name"] = "Expert Alchemy Furnisher",
+["points"] = 15,
+}
+,
+[1766] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 25 Alchemy Formulas.",
+["name"] = "Master Alchemy Furnisher",
+["points"] = 50,
+}
+,
+[1767] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Enchanting Praxis.",
+["name"] = "Novice Enchanting Furnisher",
+["points"] = 5,
+}
+,
+[1768] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 50 Enchanting Praxises.",
+["name"] = "Master Enchanting Furnisher",
+["points"] = 50,
+}
+,
+[1769] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn your first Provisioning Design.",
+["name"] = "Novice Provisioning Furnisher",
+["points"] = 5,
+}
+,
+[1770] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 25 Provisioning Designs.",
+["name"] = "Expert Provisioning Furnisher",
+["points"] = 15,
+}
+,
+[1771] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 100 Provisioning Designs.",
+["name"] = "Master Provisioning Furnisher",
+["points"] = 50,
+}
+,
+[1772] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn 15 Enchanting Praxises.",
+["name"] = "Expert Enchanting Furnisher",
+["points"] = 15,
+}
+,
+[1773] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1774] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest your first unit of Heartwood.",
+["name"] = "Heartwood Harvester",
+["points"] = 5,
+}
+,
+[1775] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Heartwood.",
+["name"] = "Expert Heartwood Harvester",
+["points"] = 10,
+}
+,
+[1776] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Heartwood.",
+["name"] = "Master Heartwood Harvester",
+["points"] = 15,
+}
+,
+[1777] = {
+["Category"] = "NIL",
+["description"] = "Harvest your first Mundane Rune.",
+["name"] = "Mundane Rune Harvester",
+["points"] = 5,
+}
+,
+[1778] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 Mundane Runes.",
+["name"] = "Expert Mundane Rune Harvester",
+["points"] = 10,
+}
+,
+[1779] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 Mundane Runes.",
+["name"] = "Master Mundane Rune Harvester",
+["points"] = 15,
+}
+,
+[1780] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest your first Clean Pelt.",
+["name"] = "Clean Pelt Harvester",
+["points"] = 5,
+}
+,
+[1781] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 Clean Pelts.",
+["name"] = "Expert Clean Pelt Harvester",
+["points"] = 10,
+}
+,
+[1782] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 Clean Pelts.",
+["name"] = "Master Clean Pelt Harvester",
+["points"] = 15,
+}
+,
+[1783] = {
+["Category"] = "NIL",
+["description"] = "Harvest your first unit of Regulus.",
+["name"] = "Regulus Harvester",
+["points"] = 5,
+}
+,
+[1784] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Regulus.",
+["name"] = "Expert Regulus Harvester",
+["points"] = 10,
+}
+,
+[1785] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Regulus.",
+["name"] = "Master Regulus Harvester",
+["points"] = 15,
+}
+,
+[1786] = {
+["Category"] = "NIL",
+["description"] = "Harvest your first unit of Bast.",
+["name"] = "Bast Harvester",
+["points"] = 5,
+}
+,
+[1787] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Bast.",
+["name"] = "Expert Bast Harvester",
+["points"] = 10,
+}
+,
+[1788] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Bast.",
+["name"] = "Master Bast Harvester",
+["points"] = 15,
+}
+,
+[1789] = {
+["Category"] = "NIL",
+["description"] = "Harvest your first unit of Alchemical Resin.",
+["name"] = "Resin Harvester",
+["points"] = 5,
+}
+,
+[1790] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Alchemical Resin.",
+["name"] = "Expert Resin Harvester",
+["points"] = 10,
+}
+,
+[1791] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Alchemical Resin.",
+["name"] = "Master Resin Harvester",
+["points"] = 15,
+}
+,
+[1792] = {
+["Category"] = "NIL",
+["description"] = "Harvest your first unit of Decorative Wax.",
+["name"] = "Wax Harvester",
+["points"] = 5,
+}
+,
+[1793] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Decorative Wax.",
+["name"] = "Expert Wax Harvester",
+["points"] = 10,
+}
+,
+[1794] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Decorative Wax.",
+["name"] = "Master Wax Harvester",
+["points"] = 15,
+}
+,
+[1795] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Collect and learn every chapter in the Mazzatun style book, found on Tree-Minder Na-Kesh in Ruins of Mazzatun.",
+["name"] = "Mazzatun Style Master",
+["points"] = 50,
+}
+,
+[1796] = {
+["Category"] = "Shadows of the Hist",
+["Category_ID"] = 18,
+["description"] = "Collect and learn every chapter in the Silken Ring style book, found on Velidreth in Cradle of Shadows.",
+["name"] = "Silken Ring Style Master",
+["points"] = 50,
+}
+,
+[1797] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn every chapter in the Ra Gada style book, found in Craglorn.",
+["name"] = "Ra Gada Style Master",
+["points"] = 50,
+}
+,
+[1798] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn every chapter in the Ebony style book, sold in exchange for Writ Vouchers.",
+["name"] = "Ebony Style Master",
+["points"] = 50,
+}
+,
+[1799] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Complete your first Master Writ.",
+["name"] = "Master Crafter",
+["points"] = 10,
+}
+,
+[1800] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Complete 25 Master Writs.",
+["name"] = "Master of Many Crafts",
+["points"] = 15,
+}
+,
+[1801] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Complete 100 Master Writs.",
+["name"] = "Unsurpassed Crafter",
+["points"] = 50,
+}
+,
+[1802] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the nereid Kimbrudhil the Songbird at Shipwreck Cove.",
+["name"] = "Songbird Silencer",
+["points"] = 10,
+}
+,
+[1803] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat Orator Salothan, Regent Beleth, General Tanasa, and Councilor Raynis at Salothan\'s Council.",
+["name"] = "Salothan\'s Cursebreaker",
+["points"] = 10,
+}
+,
+[1804] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Queen\'s Consort at Missir-Dadalit Egg Mine.",
+["name"] = "Consort Killer",
+["points"] = 10,
+}
+,
+[1805] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the nix-ox Nilthog the Unbroken at Nilthog\'s Hollow.",
+["name"] = "Breaker of the Unbroken",
+["points"] = 10,
+}
+,
+[1806] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat Wuyuvus the Hunger at Sulipund Grange.",
+["name"] = "Wuyuvus Slayer",
+["points"] = 10,
+}
+,
+[1807] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Skaafin, Mehz the Cozener, at Dubdil Alar Tower and seal the rift to Oblivion.",
+["name"] = "Cheater Defeater",
+["points"] = 10,
+}
+,
+[1808] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Assembly General and assist Divayth Fyr in stopping the flood of animunculi coming from the Halls of Fabrication.",
+["name"] = "Halls of Fabrication Completed",
+["points"] = 15,
+}
+,
+[1809] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete Veteran Halls of Fabrication within a time limit of 40 minutes. Your trial begins when you enter Abanabi Cave beneath Tel Fyr.",
+["name"] = "Time Trial: Halls of Fabrication",
+["points"] = 50,
+}
+,
+[1810] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication.",
+["name"] = "Halls of Fabrication Conqueror",
+["points"] = 50,
+}
+,
+[1811] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete Veteran Halls of Fabrication without suffering a group member death.",
+["name"] = "Well-Oiled Machine",
+["points"] = 50,
+}
+,
+[1812] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter at least three of the following staple homes.",
+["name"] = "Freeholder",
+["points"] = 10,
+}
+,
+[1813] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter at least five of the following staple homes.",
+["name"] = "Citizen",
+["points"] = 15,
+}
+,
+[1814] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter at least three of the following classic homes.",
+["name"] = "Landlord",
+["points"] = 15,
+}
+,
+[1815] = {
+["Category"] = "Housing",
+["Category_ID"] = 8,
+["description"] = "Obtain and enter at least five of the following classic homes.",
+["name"] = "Land Baron",
+["points"] = 50,
+}
+,
+[1816] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Mathgamain, Caillaoife, Stoneheart, Galchobhar, Gherig Bullblood and his attendants, and the Earthgore Amalgam without taking damage from the Molten Nirncrux flowing through Veteran Bloodroot Forge.",
+["name"] = "Cooling Your Heels",
+["points"] = 10,
+}
+,
+[1817] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Complete Veteran Bloodroot Forge without any member of your group ever being struck by a Lava Ball spit by a Fire Shalk.",
+["name"] = "Hot Pursuit",
+["points"] = 10,
+}
+,
+[1818] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Use Galchobhar\'s Mantle Breaker attack to dissipate a Lava Ball fired by a Fire Shalk while in Veteran Bloodroot Forge.",
+["name"] = "Magma Masher",
+["points"] = 10,
+}
+,
+[1819] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Caillaoife without allowing any Nirnblooded creatures to remain within her Nature\'s Preservation barrier for more than three seconds while in Veteran Bloodroot Forge.",
+["name"] = "Wildlife Sanctuary",
+["points"] = 10,
+}
+,
+[1820] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Galchobhar without any group members being affected by his Scorched Earth and Flames of Galchobhar attacks in Veteran Bloodroot Forge.",
+["name"] = "Boulder Bounder",
+["points"] = 10,
+}
+,
+[1821] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Galchobhar without anyone in your group killing a Fire Shalk during your battle with him in Veteran Bloodroot Forge.",
+["name"] = "Shalk Shaker",
+["points"] = 10,
+}
+,
+[1822] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat the Earthgore Amalgam in Veteran Bloodroot Forge without any member of your group activating the Stonefire Crucible or Flameslake Cauldron.",
+["name"] = "Hand Wrought Victory",
+["points"] = 10,
+}
+,
+[1823] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Personally use both the Stonefire Crucible and the Flameslake Cauldron to defeat the Earthgore Amalgam in Veteran Bloodroot Forge.",
+["name"] = "Artisan of Pain",
+["points"] = 10,
+}
+,
+[1824] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Read all 36 Sermons of Vivec scattered across Vvardenfell.",
+["name"] = "Tribunal Preacher",
+["points"] = 5,
+}
+,
+[1825] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete your first daily quest for Huntmaster Sorim-Nakar or Numani-Rasi.",
+["name"] = "Ashlander Associate",
+["points"] = 5,
+}
+,
+[1826] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Visit the silt strider caravaner at each of the stations in Vvardenfell.",
+["name"] = "Strider Caravaner",
+["points"] = 5,
+}
+,
+[1827] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Visit the Shrines of the Seven Graces and read the inscription on each shine.",
+["name"] = "The Pilgrim\'s Path",
+["points"] = 5,
+}
+,
+[1828] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Visit all of the Daedric ruins in Vvardenfell.",
+["name"] = "Daedric Explorer",
+["points"] = 10,
+}
+,
+[1829] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Assembly General after empowering it by resetting the circuit breaker in Veteran Halls of Fabrication.",
+["name"] = "Halls of Fabrication Vanquisher",
+["points"] = 50,
+}
+,
+[1830] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat 100 Calefactors, Capacitors, or Dissectors in the Halls of Fabrication.",
+["name"] = "Refabricant Slayer",
+["points"] = 10,
+}
+,
+[1831] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Pinnacle Factotum without ever using energy from the generator to break a Refabricated Sphere\'s shield, in Veteran Halls of Fabrication.",
+["name"] = "Power House",
+["points"] = 15,
+}
+,
+[1832] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Refabrication Committee in Veteran Halls of Fabrication without ever allowing the Reclaimer to overcharge a Ruined Factotum.",
+["name"] = "Planned Obsolescence",
+["points"] = 15,
+}
+,
+[1833] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication without any group member dying to traps and hazards.",
+["name"] = "Environmentally Conscious",
+["points"] = 15,
+}
+,
+[1834] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat the Assembly General in Veteran Halls of Fabrication without letting any Terminals complete their activation sequence.",
+["name"] = "Terminal Terminator",
+["points"] = 15,
+}
+,
+[1835] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat 5 of each of the Tactical Facsimiles that the Assembly General creates, on any difficulty.",
+["name"] = "Accept No Substitute",
+["points"] = 10,
+}
+,
+[1836] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete each of the following achievements related to defeating the Assembly General:",
+["name"] = "Dynamo",
+["points"] = 50,
+}
+,
+[1837] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete Veteran Halls of Fabrication after resetting the circuit breaker and empowering the Assembly General, all without suffering a group member death.",
+["name"] = "Stress Tested",
+["points"] = 50,
+}
+,
+[1838] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete Veteran Halls of Fabrication after resetting the circuit breaker and empowering the Assembly General, all within 40 minutes of entering Abanabi Cave and without suffering a group member death.",
+["name"] = "Like Clockwork",
+["points"] = 50,
+}
+,
+[1839] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat one Hunter-Killer Fabricant while the other still has at least half of its health remaining, before defeating the remaining Fabricant in Veteran Halls of Fabrication.",
+["name"] = "Kill Process",
+["points"] = 10,
+}
+,
+[1840] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "In Veteran Halls of Fabrication, defeat the Archcustodian using six or fewer Shock Pylons without ever missing an opportunity to disable it with one.",
+["name"] = "Arc-Custodian",
+["points"] = 10,
+}
+,
+[1841] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover all the notes scattered throughout the Halls of Fabrication.",
+["name"] = "Scholar of Seht\'s Mysteries",
+["points"] = 10,
+}
+,
+[1842] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Do your part to eliminate the cliff strider menace by killing 100 cliff striders or cliff skippers in Vvardenfell.",
+["name"] = "Cliff Striders\' Bane",
+["points"] = 5,
+}
+,
+[1843] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover all 18 Skyshards in Vvardenfell.",
+["name"] = "Morrowind Skyshard Hunter",
+["points"] = 10,
+}
+,
+[1844] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Discover all 6 Skyshards in the Clockwork City.",
+["name"] = "Clockwork City Skyshard Hunter",
+["points"] = 10,
+}
+,
+[1845] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Discover all 18 Skyshards in Summerset.",
+["name"] = "Summerset Skyshard Hunter",
+["points"] = 10,
+}
+,
+[1846] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat Nchulaeon the Eternal in Nchuleftingth.",
+["name"] = "Nchuleftingth Group Event",
+["points"] = 50,
+}
+,
+[1847] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Save Dubdil Alar from the consequences of his temporal experiments.",
+["name"] = "Loop Eradicator",
+["points"] = 5,
+}
+,
+[1848] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat all six world bosses in Vvardenfell.",
+["name"] = "Defender of Morrowind",
+["points"] = 15,
+}
+,
+[1849] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Disprove the dangerous claims of the Ashlander Chodala.",
+["name"] = "Voice of the Failed Incarnates",
+["points"] = 10,
+}
+,
+[1850] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Recover the Blessed Staff, Sunna\'rah, from the Ashlander Chodala, and determine the true nature of the threat to Lord Vivec.",
+["name"] = "Bearer of the Blessed Staff",
+["points"] = 10,
+}
+,
+[1851] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Follow a grave threat into Clockwork City, and recover Lord Vivec\'s stolen power.",
+["name"] = "Hand of a Living God",
+["points"] = 10,
+}
+,
+[1852] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Restore Lord Vivec\'s lost power, save Vivec City, and be named Champion of Vivec.",
+["name"] = "Champion of Vivec",
+["points"] = 15,
+}
+,
+[1853] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat three of the champions in Nchuleftingth.",
+["name"] = "Nchuleftingth Vanquisher",
+["points"] = 10,
+}
+,
+[1854] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat all of the champions in Nchuleftingth.",
+["name"] = "Nchuleftingth Conqueror",
+["points"] = 50,
+}
+,
+[1855] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat Stone-Boiler Omalas, Brander Releth, and Mountain-Caller Hlaren in the Forgotten Wastes.",
+["name"] = "Forgotten Wastes Group Event",
+["points"] = 50,
+}
+,
+[1856] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat three of the champions in the Forgotten Wastes.",
+["name"] = "Forgotten Wastes Vanquisher",
+["points"] = 10,
+}
+,
+[1857] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Defeat all of the champions in the Forgotten Wastes.",
+["name"] = "Forgotten Wastes Conqueror",
+["points"] = 50,
+}
+,
+[1858] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Khartag Point.",
+["name"] = "Khartag Point Explorer",
+["points"] = 5,
+}
+,
+[1859] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Ashalmawia.",
+["name"] = "Ashalmawia Explorer",
+["points"] = 5,
+}
+,
+[1860] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Zainsipilu.",
+["name"] = "Zainsipilu Explorer",
+["points"] = 5,
+}
+,
+[1861] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Matus-Akin Egg Mine.",
+["name"] = "Matus-Akin Egg Mine Explorer",
+["points"] = 5,
+}
+,
+[1862] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Pulk.",
+["name"] = "Pulk Explorer",
+["points"] = 5,
+}
+,
+[1863] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear Nchuleft.",
+["name"] = "Nchuleft Explorer",
+["points"] = 5,
+}
+,
+[1864] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Explore and clear all six explorable caves in Vvardenfell.",
+["name"] = "Morrowind Cave Delver",
+["points"] = 15,
+}
+,
+[1865] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover all the striking locales in Vvardenfell.",
+["name"] = "Morrowind Pathfinder",
+["points"] = 10,
+}
+,
+[1866] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover and clear all caves and striking locales in Vvardenfell.",
+["name"] = "Morrowind Master Explorer",
+["points"] = 15,
+}
+,
+[1867] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete 32 quests in Vvardenfell.",
+["name"] = "Morrowind Grand Adventurer",
+["points"] = 50,
+}
+,
+[1868] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Savior of Morrowind.",
+["name"] = "Savior of Morrowind",
+["points"] = 50,
+}
+,
+[1869] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Help the Argonian slave, Sun-in-Shadow, gain her freedom.",
+["name"] = "Rising Sun",
+["points"] = 10,
+}
+,
+[1870] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Help Naryu Virian and the Morag Tong in and around Balmora.",
+["name"] = "Naryu\'s Confidant",
+["points"] = 10,
+}
+,
+[1871] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Help the Scarlet Judge foil Marshal Hlaren\'s plot in Suran.",
+["name"] = "Scarlet Judge",
+["points"] = 10,
+}
+,
+[1872] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Save the people of Gnisis from economic ruin by restoring the future of their kwama mine.",
+["name"] = "Kwama Miner",
+["points"] = 10,
+}
+,
+[1873] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Foil a usuper\'s plot, and assist Mistress Dratha with plans to prolong her life.",
+["name"] = "Hand of the Mistress",
+["points"] = 10,
+}
+,
+[1874] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "End the threat to the pilgrims at Molag Mar.",
+["name"] = "Pilgrim Protector",
+["points"] = 10,
+}
+,
+[1875] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Help Narsis Dren discover the secret of the Veloth Ancestral Tomb.",
+["name"] = "Narsis\'s Apprentice",
+["points"] = 10,
+}
+,
+[1876] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover the secret of the Hleran Ancestral Tomb.",
+["name"] = "Ald\'ruhn Annalist",
+["points"] = 10,
+}
+,
+[1877] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Discover the truth behind the sudden spike in production at Vassir-Didanat ebony mine.",
+["name"] = "Ebony Enforcer",
+["points"] = 5,
+}
+,
+[1878] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete 10 daily quests for Huntmaster Sorim-Nakar or Numani-Rasi.",
+["name"] = "Ashwalker",
+["points"] = 10,
+}
+,
+[1879] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete 30 daily quests for Huntmaster Sorim-Nakar or Numani-Rasi.",
+["name"] = "Clanfriend",
+["points"] = 15,
+}
+,
+[1880] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete all seven daily hunts for Huntmaster Sorim-Nakar.",
+["name"] = "Ashlands Stalker",
+["points"] = 5,
+}
+,
+[1881] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Complete all seven relic preservation daily quests given by Numani-Rasi.",
+["name"] = "Ashlands Relic Preserver",
+["points"] = 5,
+}
+,
+[1882] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Catch all 12 rare fish in Vvardenfell.",
+["name"] = "Morrowind Master Angler",
+["points"] = 5,
+}
+,
+[1883] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Receive the blessing of the Whitestrake at one of the Alliance Gates during the Midyear Mayhem.",
+["name"] = "Mayhem Connoisseur",
+["points"] = 5,
+}
+,
+[1884] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Read a Scroll of Pelinal\'s Ferocity during the Midyear Mayhem.",
+["name"] = "Echo of Pelinal\'s Fury",
+["points"] = 5,
+}
+,
+[1885] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Acquire your first \"Pelinal\'s Midyear Boon Box\".",
+["name"] = "Blessed of the Whitestrake",
+["points"] = 5,
+}
+,
+[1886] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Acquire your 10th \"Pelinal\'s Midyear Boon Box\".",
+["name"] = "Chosen of the Whitestrake",
+["points"] = 10,
+}
+,
+[1887] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Acquire your 25th \"Pelinal\'s Midyear Boon Box\".",
+["name"] = "Hand of the Whitestrake",
+["points"] = 15,
+}
+,
+[1888] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Defeat 50 opponents during the Midyear Mayhem.",
+["name"] = "Wrath of the Whitestrake",
+["points"] = 15,
+}
+,
+[1889] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Win a Battleground match during the Midyear Mayhem.",
+["name"] = "Pelinavant the Scourge",
+["points"] = 5,
+}
+,
+[1890] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Capture a Keep in Cyrodiil during the Midyear Mayhem.",
+["name"] = "Pelinaline the Bloody",
+["points"] = 5,
+}
+,
+[1891] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Capture an Imperial District during the Midyear Mayhem.",
+["name"] = "Pelinerrif Insurgent",
+["points"] = 5,
+}
+,
+[1892] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete each of the Midyear Mayhem achievements.",
+["name"] = "Star-Made Knight",
+["points"] = 50,
+}
+,
+[1893] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat 10 opponents in Battlegrounds.",
+["name"] = "Pit Bully",
+["points"] = 5,
+}
+,
+[1894] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat 250 opponents in Battlegrounds.",
+["name"] = "Pit Fighter",
+["points"] = 10,
+}
+,
+[1895] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat 1,000 opponents in Battlegrounds.",
+["name"] = "Pit Hero",
+["points"] = 15,
+}
+,
+[1896] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Capture your first Relic in Battlegrounds.",
+["name"] = "Newblood Relic Hunter",
+["points"] = 5,
+}
+,
+[1897] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Capture 20 Relics in Battlegrounds.",
+["name"] = "Veteran Relic Hunter",
+["points"] = 10,
+}
+,
+[1898] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Capture 100 Relics in Battlegrounds.",
+["name"] = "Grand Relic Hunter",
+["points"] = 15,
+}
+,
+[1899] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat a Relic carrier for the first time in Battlegrounds.",
+["name"] = "Newblood Relic Guardian",
+["points"] = 5,
+}
+,
+[1900] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat 20 Relic carriers in Battlegrounds.",
+["name"] = "Veteran Relic Guardian",
+["points"] = 10,
+}
+,
+[1901] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Defeat 100 Relic carriers in Battlegrounds.",
+["name"] = "Grand Relic Guardian",
+["points"] = 15,
+}
+,
+[1902] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize your first Capture Point in Battlegrounds.",
+["name"] = "Newblood Standard-Bearer",
+["points"] = 5,
+}
+,
+[1903] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize 50 Capture Points in Battlegrounds.",
+["name"] = "Veteran Standard-Bearer",
+["points"] = 10,
+}
+,
+[1904] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize 250 Capture Points in Battlegrounds.",
+["name"] = "Grand Standard-Bearer",
+["points"] = 15,
+}
+,
+[1905] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn 10 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
+["name"] = "Newblood Standard-Guardian",
+["points"] = 5,
+}
+,
+[1906] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn 100 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
+["name"] = "Veteran Standard-Guardian",
+["points"] = 10,
+}
+,
+[1907] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn 500 Defensive Execution Medals by defeating opponents attacking one of your Capture Points.",
+["name"] = "Grand Standard-Guardian",
+["points"] = 15,
+}
+,
+[1908] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Win a Battleground match for the first time.",
+["name"] = "Victor",
+["points"] = 5,
+}
+,
+[1909] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Win 10 Battleground matches.",
+["name"] = "Crowd Favorite",
+["points"] = 10,
+}
+,
+[1910] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Win 50 Battleground matches.",
+["name"] = "Conquering Hero",
+["points"] = 15,
+}
+,
+[1911] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn a lifetime medal score of 5,000 points in Battlegrounds.",
+["name"] = "Gladiator",
+["points"] = 10,
+}
+,
+[1912] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn a lifetime medal score of 50,000 points in Battlegrounds.",
+["name"] = "Champion",
+["points"] = 15,
+}
+,
+[1913] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn a lifetime medal score of 250,000 points in Battlegrounds.",
+["name"] = "Grand Champion",
+["points"] = 50,
+}
+,
+[1914] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Control all four Capture Points simultaneously in a Domination match.",
+["name"] = "Battleground Dominator",
+["points"] = 10,
+}
+,
+[1915] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Win a Team Deathmatch with 500 points before any other team reaches 200 points.",
+["name"] = "Battleground Butcher",
+["points"] = 15,
+}
+,
+[1916] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Help your team capture both enemy Relics within 10 seconds of each other.",
+["name"] = "Tactician",
+["points"] = 15,
+}
+,
+[1917] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Sieze at least four Capture Points without dying.",
+["name"] = "Claim-Staker",
+["points"] = 10,
+}
+,
+[1918] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Finish a Team Deathmatch battle with at least eight more kills than deaths.",
+["name"] = "Paragon",
+["points"] = 15,
+}
+,
+[1919] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Capture three enemy Relics in a single Battleground match.",
+["name"] = "Triple Threat",
+["points"] = 15,
+}
+,
+[1920] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn a medal score of at least 3,000 points in a single Battleground match.",
+["name"] = "Most Valuable Combatant",
+["points"] = 10,
+}
+,
+[1921] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Quadruple Kill Medal by defeating four opponents in a Team Deathmatch battle, each within ten seconds of the next.",
+["name"] = "Quadruple Kill",
+["points"] = 15,
+}
+,
+[1922] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Champion Medal by dealing at least 500,000 points of damage in a single Team Deathmatch battle.",
+["name"] = "Charging Champion",
+["points"] = 10,
+}
+,
+[1923] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Fearless Physician Medal by healing at least 375,000 points of damage in a single Team Deathmatch battle.",
+["name"] = "Fearless Physician",
+["points"] = 10,
+}
+,
+[1924] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Steady Centurion Medal by taking at least 250,000 damage in a single Domination match.",
+["name"] = "Steady Centurion",
+["points"] = 10,
+}
+,
+[1925] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Divine Protector Medal by healing at least 375,000 points of damage for Capture Point defenders in a single Domination match.",
+["name"] = "Divine Protector",
+["points"] = 10,
+}
+,
+[1926] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1927] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Vigilant Defender Medal while defending a Capture Point in a Domination match.",
+["name"] = "Vigilant Defender",
+["points"] = 10,
+}
+,
+[1928] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 10 enemy Wardens.",
+["name"] = "Warden Slayer",
+["points"] = 10,
+}
+,
+[1929] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Kill 100 enemy Wardens.",
+["name"] = "Grand Warden Slayer",
+["points"] = 15,
+}
+,
+[1930] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1931] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1932] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Learn every chapter in the Ashlander style book, occasionally found as rewards for completing daily quests for Huntmaster Sorim-Nakar and Numani-Rasi.",
+["name"] = "Ashlander Style Master",
+["points"] = 50,
+}
+,
+[1933] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Learn every chapter in the Morag Tong style book, occasionally found in Bounty and Explorer\'s Dispensations from the Hall of Justice.",
+["name"] = "Morag Tong Style Master",
+["points"] = 50,
+}
+,
+[1934] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Learn every chapter in the Buoyant Armiger style book, occasionally found in treasure chests across Vvardenfell.",
+["name"] = "Buoyant Armiger Style Master",
+["points"] = 50,
+}
+,
+[1935] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Learn every chapter in the Militant Ordinator style book, sold in exchange for Alliance Points by Battleground Supplies Merchants.",
+["name"] = "Militant Ordinator Style Master",
+["points"] = 50,
+}
+,
+[1936] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Divine Guardian Medal by healing at least 375,000 points of damage for Relic carriers in a single Battleground match.",
+["name"] = "Divine Guardian",
+["points"] = 10,
+}
+,
+[1937] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Complete Veteran Falkreath Hold and Veteran Bloodroot Forge.",
+["name"] = "Horns of the Reach Delver",
+["points"] = 50,
+}
+,
+[1938] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1939] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1940] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Enter either Falkreath Hold or Bloodroot Forge for the first time.",
+["name"] = "Horns of the Reach Explorer",
+["points"] = 5,
+}
+,
+[1941] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Complete the listed achievements for Veteran Bloodroot Forge.",
+["name"] = "Bloodroot Forge Challenger",
+["points"] = 50,
+}
+,
+[1942] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Complete the listed achievements for Veteran Falkreath Hold.",
+["name"] = "Falkreath Hold Challenger",
+["points"] = 50,
+}
+,
+[1943] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1944] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1945] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Discover the Urgent Missive, Unfinished Letter to Marika, In Reply to Concerning Rumors, and Epitaph of Bjarfrud Skjoralmor within Falkreath Hold.",
+["name"] = "War Chronicler",
+["points"] = 5,
+}
+,
+[1946] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat every boss without ever personally being struck by siege weapon fire in Veteran Falkreath Hold, including siege engines commanded by Morrigh Bullblood.",
+["name"] = "Deck Diver",
+["points"] = 5,
+}
+,
+[1947] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "While fighting Cernunnon and his oath-bound, banish all three of the spiritmasters\' souls within five seconds of each other throughout the fight in Veteran Falkreath Hold.",
+["name"] = "Oathbreaker",
+["points"] = 5,
+}
+,
+[1948] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "While fighting Deathlord Bjarfrud Skjoralmor in Veteran Falkreath Hold, have your group cleanse 15 corpses within the span of five seconds.",
+["name"] = "Epic Undertaking",
+["points"] = 5,
+}
+,
+[1949] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat the Siege Mammoth in Falkreath Hold without being affected by an enemy stun, stagger, or knockback ability.",
+["name"] = "Wild and Woolly",
+["points"] = 5,
+}
+,
+[1950] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold with at least one of each type of atronach still alive.",
+["name"] = "Endure the Elements",
+["points"] = 5,
+}
+,
+[1951] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Defeat Domihaus the Bloody-Horned in Veteran Falkreath Hold with 2 or more pillars still standing in the Jarl\'s Hall.",
+["name"] = "Column Caretaker",
+["points"] = 5,
+}
+,
+[1952] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Gain 100 points from carrying the Chaosball.",
+["name"] = "Newblood Scorer",
+["points"] = 5,
+}
+,
+[1953] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Get 3 kills, in a single life, while carrying the Chaosball.",
+["name"] = "The Best Defense",
+["points"] = 5,
+}
+,
+[1954] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Chaos Guardian Medal by healing at least 375,000 points of damage for Chaosball carriers in a single Battleground match.",
+["name"] = "Chaos Guardian",
+["points"] = 5,
+}
+,
+[1955] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Earn your first Chaos Champion Medal by dealing at least 500,000 points of damage to Chaosball carriers in a single Battleground match.",
+["name"] = "Chaos Champion",
+["points"] = 5,
+}
+,
+[1956] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Take 10000000 of damage from the Chaosball (cumulative).",
+["name"] = "Walk It Off",
+["points"] = 5,
+}
+,
+[1957] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Win a game of Chaosball with 500 points, before any other team reaches 200 points.",
+["name"] = "Chaosball Carnage",
+["points"] = 5,
+}
+,
+[1958] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Collect and install all of the parts necessary to reconstruct the Precursor factotum.",
+["name"] = "Precursor Maker",
+["points"] = 50,
+}
+,
+[1959] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Fang Lair.",
+["name"] = "Fang Lair Vanquisher",
+["points"] = 5,
+}
+,
+[1960] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Lizabet Charnis, The Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Veteran Fang Lair.",
+["name"] = "Fang Lair Conqueror",
+["points"] = 5,
+}
+,
+[1961] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat 500 Skeletons in Veteran Fang Lair.",
+["name"] = "Veteran Skeleton Slayer",
+["points"] = 10,
+}
+,
+[1962] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat 350 Blackmarrow Necromancers in Veteran Fang Lair.",
+["name"] = "Veteran Necromancer Slayer",
+["points"] = 10,
+}
+,
+[1963] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat all encounters in addition to Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus and Orryn the Black and Thurvokun in Veteran Fang Lair in under 30 minutes. Timer starts upon engaging the first group of Blackmarrow necromancers.",
+["name"] = "The Quick and the Dead",
+["points"] = 50,
+}
+,
+[1964] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, Orryn the Black and Thurvokun, and all of their minions in Veteran Fang Lair, without suffering a group member death.",
+["name"] = "Not a Statistic",
+["points"] = 50,
+}
+,
+[1965] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Orryn the Black and Thurvokun after reading the incantation in Orryn\'s Notes in Veteran Fang Lair.",
+["name"] = "Let Bygones Be Bygones",
+["points"] = 50,
+}
+,
+[1966] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Complete the listed achievements for Veteran Fang Lair.",
+["name"] = "Fang Lair Challenger",
+["points"] = 50,
+}
+,
+[1967] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Orryn the Black and Thurvokun while only destroying a maximum of one Animus Crystal before Orryn merges with Thurvokun in Veteran Fang Lair.",
+["name"] = "Minimal Animosity",
+["points"] = 10,
+}
+,
+[1968] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat the Cadaverous Menagerie without anyone in your group taking damage from Volatile Fungi in Veteran Fang Lair.",
+["name"] = "Fungi Free",
+["points"] = 10,
+}
+,
+[1969] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Orryn the Black and Thurvokun without any party members being hit by a Giant Scarab\'s Degenerative Acid in Veteran Fang Lair.",
+["name"] = "Starved Scarabs",
+["points"] = 10,
+}
+,
+[1970] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat the Cadaverous Menagerie without a party member being killed by the Cadaverous Senche-Tiger\'s Death Grip in Veteran Fang Lair.",
+["name"] = "Obedience Maiming",
+["points"] = 10,
+}
+,
+[1971] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Deactivate each of Caluurion\'s Relics using elemental Bonefiends in Veteran Fang Lair.",
+["name"] = "Elementary Anatomy",
+["points"] = 10,
+}
+,
+[1972] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Ulfnor and Sabina Cedus without a party member being affected by Sabina Cedus\'s Haunting Spectre in Veteran Fang Lair.",
+["name"] = "Nonplussed",
+["points"] = 10,
+}
+,
+[1973] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "After reciting the incantations in Orryn\'s Notes, defeat Orryn the Black and Thurvokun without any party members being hit by Orryn\'s Wraith Thralls in Veteran Fang Lair.",
+["name"] = "Cold Pursuit",
+["points"] = 10,
+}
+,
+[1974] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "When hit by Thurvokun\'s Plague Breath in Fang Lair, be under the protection of Yisareh\'s Life Ward while standing in direct contact with three other party members who also have Yisareh\'s Life Ward.",
+["name"] = "Horrific Halitosis",
+["points"] = 10,
+}
+,
+[1975] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Scalecaller Peak.",
+["name"] = "Scalecaller Peak Vanquisher",
+["points"] = 5,
+}
+,
+[1976] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak.",
+["name"] = "Scalecaller Peak Conqueror",
+["points"] = 5,
+}
+,
+[1977] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat 50 Ogres in Veteran Scalecaller Peak.",
+["name"] = "Veteran Ogre Slayer",
+["points"] = 10,
+}
+,
+[1978] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat 120 Cultists in Veteran Scalecaller Peak.",
+["name"] = "Veteran Cultist Slayer",
+["points"] = 10,
+}
+,
+[1979] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak in under 30 minutes. Timer starts when players engage the first group of Scalecaller creatures.",
+["name"] = "Peak Performance",
+["points"] = 50,
+}
+,
+[1980] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller in Veteran Scalecaller Peak, without suffering a group member death.",
+["name"] = "On Top",
+["points"] = 50,
+}
+,
+[1981] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Zaan the Scalecaller after reading Zaan\'s Ritual Scroll in Veteran Scalecaller Peak.",
+["name"] = "Breaker of Spells",
+["points"] = 50,
+}
+,
+[1982] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Complete the listed achievements for Veteran Scalecaller Peak.",
+["name"] = "Scalecaller Peak Challenger",
+["points"] = 50,
+}
+,
+[1983] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat all encounters in addition to Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller after reading Zaan\'s Ritual Scroll in Veteran Scalecaller Peak in under 30 minutes without dying.",
+["name"] = "Mountain God",
+["points"] = 50,
+}
+,
+[1984] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Rinaerus the Rancid and Orzun the Foul-Smelling, Doylemish Ironheart, Matriarch Aldis, Plague Concocter Mortieu, and Zaan the Scalecaller without a single group member taking damage from a Skeever\'s Pestilent Pus in Veteran Scalecaller Peak.",
+["name"] = "Pustulent Problems",
+["points"] = 10,
+}
+,
+[1985] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Collect both of the necessary ingredients and cure Jorvuld Davaux of the cult\'s plague.",
+["name"] = "Scalecaller Savior",
+["points"] = 10,
+}
+,
+[1986] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Doylemish Ironheart in Veteran Scalecaller Peak without a single group member becoming Petrified by Stony Gaze.",
+["name"] = "Stony Situation",
+["points"] = 10,
+}
+,
+[1987] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Orzun the Foul-Smelling and Rinaerus the Rancid in Veteran Scalecaller Peak without a single group member being killed by a Terrorizing Tremor.",
+["name"] = "Tremor Trouble",
+["points"] = 10,
+}
+,
+[1988] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Plague Concocter Mortieu in Veteran Scalecaller Peak with four living group members all suffering from two of Mortieu\'s infections simultaneously.",
+["name"] = "Doctor\'s Orders",
+["points"] = 10,
+}
+,
+[1989] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Matriarch Aldis without any member of your group taking damage from the water that surrounds her during the fight in Veteran Scalecaller Peak.",
+["name"] = "Watch Your Step",
+["points"] = 10,
+}
+,
+[1990] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Zaan the Scalecaller without being knocked back by her shield.",
+["name"] = "Stand Your Ground",
+["points"] = 10,
+}
+,
+[1991] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat Zaan the Scalecaller without taking damage from her Pestilent Breath attack and without using the same avoidance method twice after reading Zaan\'s Ritual Scroll in Veteran Scalecaller Peak.",
+["name"] = "Daedric Deflector",
+["points"] = 10,
+}
+,
+[1992] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1993] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1994] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1995] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1996] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1997] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1998] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[1999] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2000] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2001] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear King\'s Haven Pass.",
+["name"] = "King\'s Haven Pass Explorer",
+["points"] = 5,
+}
+,
+[2002] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear Eton Nir Grotto.",
+["name"] = "Eton Nir Grotto Explorer",
+["points"] = 5,
+}
+,
+[2003] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear Archon\'s Grove.",
+["name"] = "Archon\'s Grove Explorer",
+["points"] = 5,
+}
+,
+[2004] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear Tor-Hame-Khard.",
+["name"] = "Tor-Hame-Khard Explorer",
+["points"] = 5,
+}
+,
+[2005] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear Wasten Coraldale.",
+["name"] = "Wasten Coraldale Explorer",
+["points"] = 5,
+}
+,
+[2006] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear Traitor\'s Vault.",
+["name"] = "Traitor\'s Vault Explorer",
+["points"] = 5,
+}
+,
+[2007] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Explore and clear all six explorable caves in Summerset.",
+["name"] = "Summerset Cave Delver",
+["points"] = 15,
+}
+,
+[2008] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Discover all the striking locales in Summerset.",
+["name"] = "Summerset Pathfinder",
+["points"] = 10,
+}
+,
+[2009] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2010] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Discover and clear all caves and striking locales in Summerset.",
+["name"] = "Summerset Master Explorer",
+["points"] = 15,
+}
+,
+[2011] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2012] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2013] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2014] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2015] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2016] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Explore and clear the Halls of Regulation.",
+["name"] = "Halls of Regulation Explorer",
+["points"] = 5,
+}
+,
+[2017] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Explore and clear the Shadow Cleft.",
+["name"] = "Shadow Cleft Explorer",
+["points"] = 5,
+}
+,
+[2018] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Discover and clear all caves and striking locales in the Clockwork City.",
+["name"] = "Clockwork City Master Explorer",
+["points"] = 15,
+}
+,
+[2019] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Discover and clear both explorable caves in the Clockwork City.",
+["name"] = "Clockwork City Cave Delver",
+["points"] = 10,
+}
+,
+[2020] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Discover all the striking locales in the Clockwork City.",
+["name"] = "Clockwork City Pathfinder",
+["points"] = 10,
+}
+,
+[2021] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Collect and learn every chapter in the Hlaalu style book.",
+["name"] = "Hlaalu Style Master",
+["points"] = 50,
+}
+,
+[2022] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Collect and learn every chapter in the Redoran style book.",
+["name"] = "Redoran Style Master",
+["points"] = 50,
+}
+,
+[2023] = {
+["Category"] = "Morrowind",
+["Category_ID"] = 12,
+["description"] = "Collect and learn every chapter in the Telvanni style book.",
+["name"] = "Telvanni Style Master",
+["points"] = 50,
+}
+,
+[2024] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2025] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Gain 2500 points from carrying the Chaosball.",
+["name"] = "Veteran Scorer",
+["points"] = 10,
+}
+,
+[2026] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Gain 10000 points from carrying the Chaosball.",
+["name"] = "Grand Scorer",
+["points"] = 15,
+}
+,
+[2027] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Catch all 12 rare fish in Clockwork City.",
+["name"] = "Clockwork City Master Angler",
+["points"] = 5,
+}
+,
+[2028] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat The Imperfect in the Sanctuary of Verification.",
+["name"] = "Imperfection",
+["points"] = 10,
+}
+,
+[2029] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2030] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2031] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2032] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2033] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2034] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2035] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2036] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Queen of the Reef at The Queen\'s Hatchery.",
+["name"] = "Reef Raider",
+["points"] = 10,
+}
+,
+[2037] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Caanerin at Indrik Frolic.",
+["name"] = "Bucking the Matriarchy",
+["points"] = 10,
+}
+,
+[2038] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat the Sea Sload B\'Korgen at Welenkin Cove.",
+["name"] = "Sea Sload Slugger",
+["points"] = 10,
+}
+,
+[2039] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Haeliata and Nagravia at Gryphon Run.",
+["name"] = "Talon Taker",
+["points"] = 10,
+}
+,
+[2040] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Graveld at Graveld\'s Hideaway.",
+["name"] = "Amphibian Agitator",
+["points"] = 10,
+}
+,
+[2041] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Keelsplitter at Keelsplitter\'s Nest.",
+["name"] = "Keel Hauler",
+["points"] = 10,
+}
+,
+[2042] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat all six world bosses in Summerset.",
+["name"] = "Defender of Summerset",
+["points"] = 15,
+}
+,
+[2043] = {
+["Category"] = "Character",
+["Category_ID"] = 1,
+["description"] = "Reach rank 10 in the Undaunted Skill Line.",
+["name"] = "Truly Undaunted",
+["points"] = 50,
+}
+,
+[2044] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Learn every chapter in the Apostle style book, occasionally found as rewards for completing Brass Fortress Resupply daily quests, Clockwork City daily delve quests, and Clockwork City daily world boss quests.",
+["name"] = "Apostle Style Master",
+["points"] = 50,
+}
+,
+[2045] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Learn every chapter in the Ebonshadow style book, occasionally found as rewards for completing Blackfeather Court daily quests, Clockwork City daily delve quests, and Clockwork City daily world boss quests.",
+["name"] = "Ebonshadow Style Master",
+["points"] = 50,
+}
+,
+[2046] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Ithoxis, Abathoth, and Ssatinot in Exarchs\' Egress.",
+["name"] = "Murderer of Crows",
+["points"] = 10,
+}
+,
+[2047] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat both world bosses in Clockwork City.",
+["name"] = "Clockwork City Defender",
+["points"] = 15,
+}
+,
+[2048] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Travel to the Brass Fortress in Clockwork City.",
+["name"] = "Treasure of the Brass Fortress",
+["points"] = 5,
+}
+,
+[2049] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Clockwork City.",
+["name"] = "Hero of Clockwork City",
+["points"] = 50,
+}
+,
+[2050] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"To the Clockwork City\" quest.",
+["name"] = "Land of Gears and Cogs",
+["points"] = 10,
+}
+,
+[2051] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2052] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2053] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2054] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2055] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2056] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2057] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2058] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"In Search of a Sponsor\" quest.",
+["name"] = "Clockwork Citizen",
+["points"] = 10,
+}
+,
+[2059] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"The Strangeness of Seht\" quest.",
+["name"] = "Smoke and Mirrors",
+["points"] = 10,
+}
+,
+[2060] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"Deepening Shadows\" quest.",
+["name"] = "Middle-Man",
+["points"] = 10,
+}
+,
+[2061] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"Lost in the Gloam\" quest.",
+["name"] = "Birds of a Feather",
+["points"] = 10,
+}
+,
+[2062] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"Unto the Dark\" quest.",
+["name"] = "Shadow Boxing",
+["points"] = 10,
+}
+,
+[2063] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"Where Shadows Lie\" quest.",
+["name"] = "The Real Sotha Sil",
+["points"] = 10,
+}
+,
+[2064] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the \"The Light of Knowledge\" quest.",
+["name"] = "The Burden of Knowledge",
+["points"] = 10,
+}
+,
+[2065] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete one Blackfeather Court Daily.",
+["name"] = "Courting the Crows",
+["points"] = 5,
+}
+,
+[2066] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 7 Blackfeather Court Dailies.",
+["name"] = "Blackfeather Attendent",
+["points"] = 10,
+}
+,
+[2067] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 30 Blackfeather Court Dailies.",
+["name"] = "Honorary Blackfeather",
+["points"] = 15,
+}
+,
+[2068] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 20 Story Quests in Clockwork City.",
+["name"] = "Clockwork City Adventurer",
+["points"] = 15,
+}
+,
+[2069] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 24 Story Quests in Clockwork City.",
+["name"] = "Clockwork City Grand Adventurer",
+["points"] = 50,
+}
+,
+[2070] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete one Brass Fortress resupply daily.",
+["name"] = "Brass Fortress Helper",
+["points"] = 5,
+}
+,
+[2071] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 7 Brass Fortress resupply dailies.",
+["name"] = "Brass Fortress Supplier",
+["points"] = 10,
+}
+,
+[2072] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete 30 Brass Fortress resupply dailies.",
+["name"] = "Brass Fortress Quarter Master",
+["points"] = 15,
+}
+,
+[2073] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Learn of things to come.",
+["name"] = "Fortune and Fate",
+["points"] = 10,
+}
+,
+[2074] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Slow the spread of secrets by destroying 100 Skeevatons.",
+["name"] = "Wind-up Rodent Wrecker",
+["points"] = 5,
+}
+,
+[2075] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Complete the listed achievements for Asylum Sanctorium.",
+["name"] = "Asylum Sanctorium Redeemer",
+["points"] = 50,
+}
+,
+[2076] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in Asylum Sanctorium.",
+["name"] = "Asylum Sanctorium Completed",
+["points"] = 15,
+}
+,
+[2077] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in Veteran Asylum Sanctorium.",
+["name"] = "Asylum Sanctorium Conqueror",
+["points"] = 50,
+}
+,
+[2078] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same fight in Asylum Sanctorium.",
+["name"] = "Asylum Sanctorium Contender",
+["points"] = 50,
+}
+,
+[2079] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same fight in Veteran Asylum Sanctorium.",
+["name"] = "Asylum Sanctorium Vanquisher",
+["points"] = 50,
+}
+,
+[2080] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold without suffering a group member death in Veteran Asylum Sanctorium.",
+["name"] = "Sanctified",
+["points"] = 50,
+}
+,
+[2081] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold within a time limit of 15 minutes in Veteran Asylum Sanctorium. Timer starts when players enter the Sanctuary Atrium.",
+["name"] = "Swift Mercy",
+["points"] = 50,
+}
+,
+[2082] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold at the same time without allowing Saint Felms or Saint Llothis to enrage during the fight in Veteran Asylum Sanctorium.",
+["name"] = "Beatific Beatdown",
+["points"] = 50,
+}
+,
+[2083] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Felms the Bold without allowing either of his Pneuma Projections to enrage in Veteran Asylum Sanctorium.",
+["name"] = "Placid Projections",
+["points"] = 15,
+}
+,
+[2084] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Llothis the Pious without dismantling his Imperfect Attendants in Veteran Asylum Sanctorium.",
+["name"] = "Imperfect Attendance",
+["points"] = 15,
+}
+,
+[2085] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just and Saint Llothis the Pious in the same battle in Veteran Asylum Sanctorium.",
+["name"] = "Righteous Condemnation",
+["points"] = 10,
+}
+,
+[2086] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just and Saint Felms the Bold in the same battle in Veteran Asylum Sanctorium.",
+["name"] = "Executioners\' Judgement",
+["points"] = 10,
+}
+,
+[2087] = {
+["Category"] = "Clockwork City",
+["Category_ID"] = 16,
+["description"] = "Defeat Saint Olms the Just, Saint Llothis the Pious, and Saint Felms the Bold in the same battle without suffering a group member death within 15 minutes of entering the Sanctuary Atrium in Veteran Asylum Sanctorium.",
+["name"] = "Perfect Purification",
+["points"] = 10,
+}
+,
+[2088] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize your first Capture Point in Crazy King matches.",
+["name"] = "Newblood King Standard-Bearer",
+["points"] = 5,
+}
+,
+[2089] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize 25 Capture Points in Crazy King matches.",
+["name"] = "Veteran King Standard-Bearer",
+["points"] = 10,
+}
+,
+[2090] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize 125 Capture Points in Crazy King matches.",
+["name"] = "Grand King Standard-Bearer",
+["points"] = 15,
+}
+,
+[2091] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Seize at least 4 Capture Points without dying in a Crazy King match.",
+["name"] = "Kingdom Come",
+["points"] = 10,
+}
+,
+[2092] = {
+["Category"] = "Player VS Player",
+["Category_ID"] = 2,
+["description"] = "Control at least two Capture Points simultaneously in a Crazy King match.",
+["name"] = "Battleground King",
+["points"] = 10,
+}
+,
+[2093] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat all of the champions in Sunhold.",
+["name"] = "Sunhold Conqueror",
+["points"] = 50,
+}
+,
+[2094] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat all of the champions in Karnwasten.",
+["name"] = "Karnwasten Conqueror",
+["points"] = 50,
+}
+,
+[2095] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Interrupt the executioners and defeat Konnugil the Leviathan in Sunhold.",
+["name"] = "Sunhold Group Event",
+["points"] = 50,
+}
+,
+[2096] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat the Sea Sload K\'Garza in Karnwasten.",
+["name"] = "Karnwasten Group Event",
+["points"] = 50,
+}
+,
+[2097] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Learn every chapter in the Dreadhorn style book, occasionally found as rewards for completing the Falkreath Hold dungeon.",
+["name"] = "Dreadhorn Style Master",
+["points"] = 50,
+}
+,
+[2098] = {
+["Category"] = "Horns of the Reach",
+["Category_ID"] = 17,
+["description"] = "Learn every chapter in the Bloodforge style book, occasionally found as rewards for completing the Bloodroot Forge dungeon.",
+["name"] = "Bloodforge Style Master",
+["points"] = 50,
+}
+,
+[2099] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Retrieve the 20 dangerous relics stolen from the Vault of Moawita.",
+["name"] = "Relics of Summerset",
+["points"] = 50,
+}
+,
+[2100] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Destroy the Abyssal Pearl at each Abyssal Geyser in Summerset.",
+["name"] = "Put a Cork In It",
+["points"] = 5,
+}
+,
+[2101] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat each of the following bosses that can appear at Abyssal Geysers.",
+["name"] = "Back to the Abyss",
+["points"] = 15,
+}
+,
+[2102] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Defeat all encounters in addition to Lizabet Charnis, the Cadaverous Menagerie, Caluurion, Ulfnor and Sabina Cedus, and Orryn the Black and Thurvokun in Hard Mode Veteran Fang Lair in under 30 minutes without suffering a party member death.",
+["name"] = "Leave No Bone Unbroken",
+["points"] = 50,
+}
+,
+[2103] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Complete Veteran Fang Lair and Veteran Scalecaller Peak.",
+["name"] = "Dragon Bones Delver",
+["points"] = 50,
+}
+,
+[2104] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Enter either Fang Lair or Scalecaller Peak for the first time.",
+["name"] = "Dragon Bones Explorer",
+["points"] = 5,
+}
+,
+[2105] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2106] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2107] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2108] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2109] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Change the look of a part of an Outfit using the Outfit System.",
+["name"] = "Novice Outfitter",
+["points"] = 5,
+}
+,
+[2110] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Change the look of a piece of equipment using the Outfit System 10 times.",
+["name"] = "Adept Outfitter",
+["points"] = 10,
+}
+,
+[2111] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Change the look of a piece of equipment using the Outfit System 50 times.",
+["name"] = "Expert Outfitter",
+["points"] = 15,
+}
+,
+[2112] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Change the look of a piece of equipment using the Outfit System 100 times.",
+["name"] = "Master Outfitter",
+["points"] = 50,
+}
+,
+[2113] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Fill any 8 slots of an Outfit using the Outfit System.",
+["name"] = "Fully Styled",
+["points"] = 10,
+}
+,
+[2114] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Use the \"Prisoner\'s Chains\" Style in an Outfit.",
+["name"] = "Prisoner On The Loose",
+["points"] = 5,
+}
+,
+[2115] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2116] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2117] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2118] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2119] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2120] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn every chapter in the Worm Cult style book, occasionally found in Anniversary Jubilee Gift Boxes.",
+["name"] = "Worm Cult Style Master",
+["points"] = 50,
+}
+,
+[2121] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Iron, Rawhide, Jute, or Maple equipment.",
+["name"] = "Rank 1 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2122] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Steel, Cotton, Hide, or Oak equipment.",
+["name"] = "Rank 2 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2123] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Orichalcum, Spidersilk, Leather, or Beech equipment.",
+["name"] = "Rank 3 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2124] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Dwarven, Ebonthread, Thick Leather, or Hickory equipment.",
+["name"] = "Rank 4 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2125] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Ebony, Ebonthread, Fell Hide, or Yew equipment.",
+["name"] = "Rank 5 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2126] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Calcinium, Kresh, Topgrain, or Birch equipment.",
+["name"] = "Rank 6 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2127] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Galatite, Ironthread, Iron Hide, or Ash equipment.",
+["name"] = "Rank 7 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2128] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Quicksilver, Silverweave, Superb Hide, or Mahogany equipment.",
+["name"] = "Rank 8 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2129] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Voidstone, Void Cloth, Shadowhide, or Nightwood equipment.",
+["name"] = "Rank 9 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2130] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Deconstruct a piece of Rubedite, Ancestor Silk, Rubedo Leather, or Ruby Ash equipment.",
+["name"] = "Rank 10 Deconstruction Analyst",
+["points"] = 5,
+}
+,
+[2131] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe in Cloudrest.",
+["name"] = "Cloudrest Completed",
+["points"] = 15,
+}
+,
+[2132] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe in the same fight in Cloudrest.",
+["name"] = "Cloudrest Contender",
+["points"] = 50,
+}
+,
+[2133] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe in Veteran Cloudrest.",
+["name"] = "Cloudrest Conqueror",
+["points"] = 50,
+}
+,
+[2134] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja with one Welkynar shade fighting by her side in Veteran Cloudrest.",
+["name"] = "A Sload and Her Shadow",
+["points"] = 50,
+}
+,
+[2135] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja with two Welkynar shades fighting by her side in Veteran Cloudrest.",
+["name"] = "Three\'s Deadly Company",
+["points"] = 50,
+}
+,
+[2136] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe in the same fight in Veteran Cloudrest.",
+["name"] = "Cloudrest Vanquisher",
+["points"] = 50,
+}
+,
+[2137] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe within a time limit of 15 minutes in Veteran Cloudrest. Timer starts when players enter the Cloudrest Aerie.",
+["name"] = "Speedy Sload Slayer",
+["points"] = 50,
+}
+,
+[2138] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe without suffering a group member death in Veteran Cloudrest.",
+["name"] = "Surviving the Shadows",
+["points"] = 50,
+}
+,
+[2139] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja, Siroria, Relequen, and Galenwe in the same battle without suffering a group member death within 15 minutes of entering the Cloudrest Aerie in Veteran Cloudrest.",
+["name"] = "The Path to Alaxon",
+["points"] = 50,
+}
+,
+[2140] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the listed achievements for Cloudrest.",
+["name"] = "Cloudrest Savior",
+["points"] = 50,
+}
+,
+[2141] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2142] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2143] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2144] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2145] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2146] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2147] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2148] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2149] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2150] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat 200 Dire Wolves or Vicious Dire Wolves in Veteran Moon Hunter Keep.",
+["name"] = "Veteran Dire Wolf Slayer",
+["points"] = 10,
+}
+,
+[2151] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Kill 50 Hulking Werewolves in Veteran Moon Hunter Keep.",
+["name"] = "Veteran Hulking Werewolf Slayer",
+["points"] = 10,
+}
+,
+[2152] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Moon Hunter Keep.",
+["name"] = "Moon Hunter Keep Vanquisher",
+["points"] = 10,
+}
+,
+[2153] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep.",
+["name"] = "Moon Hunter Keep Conqueror",
+["points"] = 10,
+}
+,
+[2154] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Vykosa the Ascendant after reading the Scroll of Glorious Battle in Veteran Moon Hunter Keep.",
+["name"] = "The Alpha Predator",
+["points"] = 50,
+}
+,
+[2155] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep in under 30 minutes. Timer starts when players engage the first group of Moon Hunter enemies.",
+["name"] = "Running with the Pack",
+["points"] = 50,
+}
+,
+[2156] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant in Veteran Moon Hunter Keep without suffering a group member death.",
+["name"] = "Head of the Pack",
+["points"] = 50,
+}
+,
+[2157] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Enter either Moon Hunter Keep or March of Sacrifices for the first time.",
+["name"] = "Wolfhunter Explorer",
+["points"] = 5,
+}
+,
+[2158] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Complete the listed achievements for Veteran Moon Hunter Keep.",
+["name"] = "Moon Hunter Keep Challenger",
+["points"] = 50,
+}
+,
+[2159] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to Jailer Melitus, Hedge Maze Guardian, Mylenne Moon-Caller, Archivist Ernarde, and Vykosa the Ascendant after activating Hard Mode in Veteran Moon Hunter Keep in under 30 minutes without suffering a group member death.",
+["name"] = "Pure Lunacy",
+["points"] = 50,
+}
+,
+[2160] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat 300 Bloodscent Guardians, Bloodscent Archers, Bloodscent Assassins, and Bloodscent Thundermauls in Veteran March of Sacrifices.",
+["name"] = "Veteran Bloodscent Slayer",
+["points"] = 10,
+}
+,
+[2161] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat 50 Wispmothers in Veteran March of Sacrifices.",
+["name"] = "Veteran Wispmother Slayer",
+["points"] = 10,
+}
+,
+[2162] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in March of Sacrifices.",
+["name"] = "March of Sacrifices Vanquisher",
+["points"] = 10,
+}
+,
+[2163] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices.",
+["name"] = "March of Sacrifices Conqueror",
+["points"] = 10,
+}
+,
+[2164] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Balorgh after desecrating the Moon Hunter Pack\'s banner and driving him into a murderous rage in Veteran March of Sacrifices.",
+["name"] = "Hircine\'s Champion",
+["points"] = 50,
+}
+,
+[2165] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices in under 30 minutes. Timer starts when players jump or teleport into Bloodscent Pass.",
+["name"] = "Pure Instinct",
+["points"] = 50,
+}
+,
+[2166] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh in Veteran March of Sacrifices without suffering a group member death.",
+["name"] = "Survival of the Fittest",
+["points"] = 50,
+}
+,
+[2167] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Complete the listed achievements for Veteran March of Sacrifices.",
+["name"] = "March of Sacrifices Challenger",
+["points"] = 50,
+}
+,
+[2168] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat all encounters in addition to the Wyrd Sisters, Aghaedh of the Solstice, Dagrund the Bulky, Tarcyr, and Balorgh after desecrating the Moon Hunter Pack\'s Banner in Veteran March of Sacrifices within 30 minutes without suffering a group member death.",
+["name"] = "Apex Predator",
+["points"] = 50,
+}
+,
+[2169] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2170] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Complete Veteran Moon Hunter Keep and Veteran March of Sacrifices.",
+["name"] = "Wolfhunter Delver",
+["points"] = 50,
+}
+,
+[2171] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Completed Bailiff Naramin\'s investigation of Choixth.",
+["name"] = "A Book and its Cover",
+["points"] = 15,
+}
+,
+[2172] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2173] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2174] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2175] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2176] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2177] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2178] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete 10 Abyssal Geysers.",
+["name"] = "Abyssal Assaulter",
+["points"] = 5,
+}
+,
+[2179] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete 25 Abyssal Geysers.",
+["name"] = "Abyssal Demolisher",
+["points"] = 10,
+}
+,
+[2180] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete 50 Abyssal Geysers.",
+["name"] = "Abyssal Devastator",
+["points"] = 15,
+}
+,
+[2181] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat three of the champions in Karnwasten.",
+["name"] = "Karnwasten Vanquisher",
+["points"] = 10,
+}
+,
+[2182] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat three of the champions in Sunhold.",
+["name"] = "Sunhold Vanquisher",
+["points"] = 10,
+}
+,
+[2183] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Win 5 PvP duels in the Colosseum of the Old Ways on Artaeum.",
+["name"] = "Wizard\'s Duel",
+["points"] = 5,
+}
+,
+[2184] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Ruella Many-Claws at an Abyssal Geyser.",
+["name"] = "Declawed",
+["points"] = 10,
+}
+,
+[2185] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Churug of the Abyss at an Abyssal Geyser.",
+["name"] = "Churug\'s Chagrin",
+["points"] = 10,
+}
+,
+[2186] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Learn every chapter in the Psijic style book, found in Summerset.",
+["name"] = "Psijic Style Master",
+["points"] = 50,
+}
+,
+[2187] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Learn every chapter in the Sapiarch style book, occasionally found as rewards for completing daily quests for the Divine Prosecution.",
+["name"] = "Sapiarch Style Master",
+["points"] = 50,
+}
+,
+[2188] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Collect and learn every chapter of the Dremora style book found in Dremora Plunder Skulls, while participating in the Witches Festival.",
+["name"] = "Dremora Style Master",
+["points"] = 50,
+}
+,
+[2189] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Learn every chapter in the Scalecaller style book, occasionally found as rewards for completing the Scalecaller Peak dungeon.",
+["name"] = "Scalecaller Style Master",
+["points"] = 50,
+}
+,
+[2190] = {
+["Category"] = "Dragon Bones",
+["Category_ID"] = 15,
+["description"] = "Learn every chapter in the Fang Lair style book, occasionally found as rewards for completing the Fang Lair dungeon.",
+["name"] = "Fang Lair Style Master",
+["points"] = 50,
+}
+,
+[2191] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Catch all 12 rare fish in Summerset.",
+["name"] = "Summerset Master Angler",
+["points"] = 5,
+}
+,
+[2192] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2193] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Savior of Summerset.",
+["name"] = "Savior of Summerset",
+["points"] = 50,
+}
+,
+[2194] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Stop the conspiracy sowing chaos through Summerset, protect the Crystal Tower, and forge a new alliance to restore the Isles to order.",
+["name"] = "The Good of the Many",
+["points"] = 15,
+}
+,
+[2195] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete your first Divine Prosecution Assignment from Justiciar Tanorian.",
+["name"] = "Divine Solicitor",
+["points"] = 5,
+}
+,
+[2196] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete ten Divine Prosecution Assignments from Justiciar Tanorian.",
+["name"] = "Divine Advocate",
+["points"] = 10,
+}
+,
+[2197] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete thirty Divine Prosecution Assignments from Justiciar Tanorian.",
+["name"] = "Divine Magistrate",
+["points"] = 15,
+}
+,
+[2198] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete your first Divine Prosecution Assignment from Justiciar Farowel",
+["name"] = "Divine Prosecutor",
+["points"] = 5,
+}
+,
+[2199] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete ten Divine Prosecution Assignments from Justiciar Farowel.",
+["name"] = "Divine Judge",
+["points"] = 10,
+}
+,
+[2200] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete thirty Divine Prosecution Assignments from Justiciar Farowel.",
+["name"] = "Divine Executioner",
+["points"] = 15,
+}
+,
+[2201] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"The Queen\'s Decree\" quest.",
+["name"] = "For the Queen",
+["points"] = 10,
+}
+,
+[2202] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"A Pearl of Great Price\" quest.",
+["name"] = "Precious Pearl",
+["points"] = 10,
+}
+,
+[2203] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"Buried Memories\" quest.",
+["name"] = "Mind Games",
+["points"] = 10,
+}
+,
+[2204] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"The Tower Sentinels\" quest.",
+["name"] = "Resolute Guardian",
+["points"] = 10,
+}
+,
+[2205] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"The Dreaming Cave\" quest.",
+["name"] = "Sweet Dreams",
+["points"] = 10,
+}
+,
+[2206] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"Lost in Translation\" quest.",
+["name"] = "Unreliable Narrator",
+["points"] = 10,
+}
+,
+[2207] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"A Necessary Alliance\" quest.",
+["name"] = "Enemy of My Enemy",
+["points"] = 10,
+}
+,
+[2208] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"The Crystal Tower\" quest.",
+["name"] = "What Must Be Done",
+["points"] = 10,
+}
+,
+[2209] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete 33 quests in Summerset.",
+["name"] = "Summerset Grand Adventurer",
+["points"] = 50,
+}
+,
+[2210] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete \"The Towers\' Fall\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Sage",
+["points"] = 10,
+}
+,
+[2211] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Learn the fate of the Lost Sailor.",
+["name"] = "Message in a Bottle",
+["points"] = 5,
+}
+,
+[2212] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Keelsplitter without stepping on any of the snakes.",
+["name"] = "Asp Awareness",
+["points"] = 5,
+}
+,
+[2213] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Sheefar of the Depths at an Abyssal Geyser.",
+["name"] = "To the Depths",
+["points"] = 10,
+}
+,
+[2214] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Learn the art of Jewelry Crafting. This can be learned in the Summerset Isle or by owning the Summerset chapter and interacting with a Jewelry Crafting Station.",
+["name"] = "Jewelry Crafter",
+["points"] = 5,
+}
+,
+[2215] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Attain a Jewelry Crafting rank of 50.",
+["name"] = "Master Jewelry Crafter",
+["points"] = 50,
+}
+,
+[2216] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Improve Jewelry Crafting items to all available Qualities.",
+["name"] = "Legendary Jewelry Crafter",
+["points"] = 50,
+}
+,
+[2217] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest your first unit of Ochre.",
+["name"] = "Ochre Harvester",
+["points"] = 5,
+}
+,
+[2218] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 25 units of Ochre.",
+["name"] = "Expert Ochre Harvester",
+["points"] = 10,
+}
+,
+[2219] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Harvest 100 units of Ochre.",
+["name"] = "Master Ochre Harvester",
+["points"] = 15,
+}
+,
+[2220] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Girawell the Erratic at an Abyssal Geyser.",
+["name"] = "Calm and Calculated",
+["points"] = 10,
+}
+,
+[2221] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Muustikar Wave-Eater at an Abyssal Geyser.",
+["name"] = "Wave Breaker",
+["points"] = 10,
+}
+,
+[2222] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Reefhammer at an Abyssal Geyser.",
+["name"] = "Hammer Meet Nail",
+["points"] = 10,
+}
+,
+[2223] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Research a Trait for any jewelry type.",
+["name"] = "Learn a Jewelry Trait",
+["points"] = 5,
+}
+,
+[2224] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Research every Jewelry Trait at least once, regardless of whether from a ring or necklace.",
+["name"] = "Jewelry Trait Master",
+["points"] = 15,
+}
+,
+[2225] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Become certified in Jewelry Crafting. Find this quest in the Summerset Isles.",
+["name"] = "Certified Jewelry Crafter",
+["points"] = 5,
+}
+,
+[2226] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Earn the rank 50 achievements for all the crafting professions.",
+["name"] = "Professions Master",
+["points"] = 15,
+}
+,
+[2227] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Earn each of the following achievements:",
+["name"] = "Grand Master Crafter",
+["points"] = 50,
+}
+,
+[2228] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn 10 full motifs.",
+["name"] = "Fledgling Style Master",
+["points"] = 10,
+}
+,
+[2229] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn 25 full motifs.",
+["name"] = "Budding Style Master",
+["points"] = 15,
+}
+,
+[2230] = {
+["Category"] = "Crafting",
+["Category_ID"] = 3,
+["description"] = "Collect and learn 50 full motifs.",
+["name"] = "True Style Master",
+["points"] = 50,
+}
+,
+[2231] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Z\'Maja with each group member picking up and destroying only one Malevolent Core in Veteran Cloudrest.",
+["name"] = "One Core, No More",
+["points"] = 50,
+}
+,
+[2232] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Z\'Maja with all three of the Welkynars\' shades by her side, a player with the Hoarfrost affliction and two other players with the Voltaic Overload affliction share the damage of the Roaring Flare eruption in Veteran Cloudrest.",
+["name"] = "Misery Loves Company",
+["points"] = 50,
+}
+,
+[2233] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Z\'Maja with Siroria\'s shade by her side, utilize a Roaring Flare attack and achieve 20 killing blows against Shadows of the Fallen in Veteran Cloudrest.",
+["name"] = "Flares and Deadly Shadows",
+["points"] = 15,
+}
+,
+[2234] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Z\'Maja, after activating a single Welkynar\'s Light, activate two more Welkynar\'s Lights and destroy three Malevolent Cores within the next 6 seconds in Veteran Cloudrest.",
+["name"] = "Core Coordination",
+["points"] = 15,
+}
+,
+[2235] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Z\'Maja during a single Shadow World event, prevent all yaghra from entering the gateway and crossing into the mortal realm on 15 separate occasions in Cloudrest.",
+["name"] = "Yaghra Blockade",
+["points"] = 15,
+}
+,
+[2236] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Have Galenwe\'s shade destroy 20 roaming Hoarfrost cyclones with his Spiked Ice attack in Cloudrest.",
+["name"] = "The Mystic\'s Ice",
+["points"] = 15,
+}
+,
+[2237] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Relequen\'s shade by itself, no player is hit by Voltaic Overload and no player spreads Voltaic Current to other players throughout the entire encounter in Cloudrest.",
+["name"] = "Shocking Instinct",
+["points"] = 10,
+}
+,
+[2238] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "While battling Siroria\'s shade by itself, every Roaring Flare throughout the entire encounter must be split between at least 6 players in Cloudrest.",
+["name"] = "Valorous Combustion",
+["points"] = 10,
+}
+,
+[2239] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2240] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Catch all 3 rare fish in Artaeum.",
+["name"] = "Artaeum Master Angler",
+["points"] = 5,
+}
+,
+[2241] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Darkstorm the Alluring at an Abyssal Geyser.",
+["name"] = "Deadly Allure",
+["points"] = 10,
+}
+,
+[2242] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Eejoba the Radiant at an Abyssal Geyser.",
+["name"] = "Radiant Riot",
+["points"] = 10,
+}
+,
+[2243] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Tidewrack at an Abyssal Geyser.",
+["name"] = "Tidal Grave",
+["points"] = 10,
+}
+,
+[2244] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Defeat Vsskalvor at an Abyssal Geyser.",
+["name"] = "Snake Charmer",
+["points"] = 10,
+}
+,
+[2245] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Capture 15 farms, mines, or lumbermills during the Midyear Mayhem.",
+["name"] = "Pelinal\'s Harvest",
+["points"] = 10,
+}
+,
+[2246] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Earn 25 Medals in Battlegrounds during the Midyear Mayhem.",
+["name"] = "Medal Mayhem",
+["points"] = 10,
+}
+,
+[2247] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Kill a Trove Scamp in Imperial City Sewers during the Midyear Mayhem.",
+["name"] = "Scamp of Mayhem",
+["points"] = 10,
+}
+,
+[2248] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Defeat all the Patrolling Horrors in the Imperial City during the Midyear Mayhem.",
+["name"] = "Midyear Horror",
+["points"] = 15,
+}
+,
+[2249] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete \"The Psijics\' Calling\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Responder",
+["points"] = 10,
+}
+,
+[2250] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"Breaches on the Bay\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Pursuer",
+["points"] = 10,
+}
+,
+[2251] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"Breaches of Frost and Fire\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Regulator",
+["points"] = 10,
+}
+,
+[2252] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete \"The Shattered Staff\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Repairer",
+["points"] = 10,
+}
+,
+[2253] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"A Breach Amid the Trees\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Forester",
+["points"] = 10,
+}
+,
+[2254] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"A Time for Mud and Mushrooms\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Mudslinger",
+["points"] = 10,
+}
+,
+[2255] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete \"The Towers\' Remains\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Staff Finder",
+["points"] = 10,
+}
+,
+[2256] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"Time in Doomcrag\'s Shadow\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Shadow-Walker",
+["points"] = 10,
+}
+,
+[2257] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Complete the \"A Breach Beyond the Crags\" Psijic Order quest in Summerset.",
+["name"] = "Psijic Chronologer",
+["points"] = 10,
+}
+,
+[2258] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2259] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2260] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2261] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2262] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2263] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2264] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2265] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2266] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2267] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2268] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2269] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2270] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2271] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2272] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2273] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2274] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2275] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2276] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2277] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2278] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2279] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2280] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2281] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2282] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2283] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2284] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2285] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Learn every chapter in the Pyandonean style book, found in Summerset.",
+["name"] = "Pyandonean Style Master",
+["points"] = 50,
+}
+,
+[2286] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Explore and clear Tsofeer Cavern.",
+["name"] = "Tsofeer Cavern Explorer",
+["points"] = 5,
+}
+,
+[2287] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Explore and clear the Teeth of Sithis.",
+["name"] = "Teeth of Sithis Explorer",
+["points"] = 5,
+}
+,
+[2288] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Discover and clear all caves and striking locales in Murkmire.",
+["name"] = "Murkmire Master Explorer",
+["points"] = 15,
+}
+,
+[2289] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Discover and clear both explorable caves in Murkmire.",
+["name"] = "Murkmire Cave Delver",
+["points"] = 10,
+}
+,
+[2290] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Discover all the striking locales in Murkmire.",
+["name"] = "Murkmire Pathfinder",
+["points"] = 10,
+}
+,
+[2291] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Discover all 6 Skyshards in Murkmire.",
+["name"] = "Murkmire Skyshard Hunter",
+["points"] = 10,
+}
+,
+[2292] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat both world bosses in Murkmire.",
+["name"] = "Defender of Murkmire",
+["points"] = 15,
+}
+,
+[2293] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat the necromancer Baxilt-Gah at Bok-Xul.",
+["name"] = "Fiend of the Fens",
+["points"] = 10,
+}
+,
+[2294] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat the miregaunt Walks-Like-Thunder at the Echoing Hollow.",
+["name"] = "Feller of Thunder",
+["points"] = 10,
+}
+,
+[2295] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Catch all 12 rare fish in Murkmire.",
+["name"] = "Murkmire Master Angler",
+["points"] = 5,
+}
+,
+[2296] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2297] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Mylenne Moon-Caller without cleansing her Enrage ability in Veteran Moon Hunter Keep.",
+["name"] = "Unending Rage",
+["points"] = 10,
+}
+,
+[2298] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Archivist Ernarde without killing his first Hulking Werewolf ally in Moon Hunter Keep.",
+["name"] = "A Hulking Ally",
+["points"] = 10,
+}
+,
+[2299] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat the Archivist without taking group member damage from Symbols of Xarxes in Moon Hunter Keep.",
+["name"] = "Book Smarts",
+["points"] = 5,
+}
+,
+[2300] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Vykosa the Ascendant without any party member taking damage from her restrained wolf pet in Veteran Moon Hunter Keep.",
+["name"] = "On a Short Leash",
+["points"] = 5,
+}
+,
+[2301] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Vykosa the Ascendant after reading the Scroll of Glorious Battle, defeating 7 Stranglers, and never causing her pet wolves to cower in Veteran Moon Hunter Keep.",
+["name"] = "Strangling Cowardice",
+["points"] = 5,
+}
+,
+[2302] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Complete all three Golden Indrik Hunts and gain their boons within March of Sacrifices.",
+["name"] = "The Great Indrik Hunt",
+["points"] = 5,
+}
+,
+[2303] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Aghaedh of the Solstice while making sure to defeat all of her Lurchers within their primary season in Veteran March of Sacrifices.",
+["name"] = "Seasonal Slaying",
+["points"] = 5,
+}
+,
+[2304] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Dagrund the Bulky while always dodging his Upheaval ability in Veteran March of Sacrifices.",
+["name"] = "Light on Your Feet",
+["points"] = 5,
+}
+,
+[2305] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Tarcyr without the indrik teleporting any group members during its Shrouding Mist ability in Veteran March of Sacrifices.",
+["name"] = "Mist Walker",
+["points"] = 5,
+}
+,
+[2306] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Lead Balorgh into Tharas\' Trap 10 times in Veteran March of Sacrifices.",
+["name"] = "Trick and Trap",
+["points"] = 5,
+}
+,
+[2307] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Jailer Melitus without being damaged by Bloody Geysers in Moon Hunter Keep.",
+["name"] = "Bloody Mess",
+["points"] = 5,
+}
+,
+[2308] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Hedge Maze Guardian without any group member being caught by a Strangler Snare within the Moon Hunter Keep Gardens in Veteran Moon Hunter Keep.",
+["name"] = "Sidestepping Stranglers",
+["points"] = 5,
+}
+,
+[2309] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Hedge Maze Guardian while all party members avoid its Lurcher Roots attack in Veteran Moon Hunter Keep.",
+["name"] = "Root of the Problem",
+["points"] = 5,
+}
+,
+[2310] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat the Wyrd Sisters while preventing them from ever using their auras to augment each other in Veteran March of Sacrifices.",
+["name"] = "Stalwart Sisterhood",
+["points"] = 10,
+}
+,
+[2311] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Balorgh while avoiding both Lightning Water and Poison Plants in Veteran March of Sacrifices.",
+["name"] = "Element of Surprise",
+["points"] = 10,
+}
+,
+[2312] = {
+["Category"] = "Wolfhunter",
+["Category_ID"] = 14,
+["description"] = "Defeat Balorgh after desecrating the Moon Hunter Pack\'s banner and without being hit by his Fire Remnant ability for the duration of the encounter in Veteran March of Sacrifices.",
+["name"] = "Perfect Hunt",
+["points"] = 10,
+}
+,
+[2313] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Use the Witchmother\'s Cauldron summoned from the Witchmother\'s Whistle 10 times during the Witches Festival.",
+["name"] = "Cauldron Conjurer",
+["points"] = 5,
+}
+,
+[2314] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Kill 100 Skeletons as a Skeleton during the Witches Festival.",
+["name"] = "Sacking Skeletons",
+["points"] = 15,
+}
+,
+[2315] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Eat each of the Witches Festival foods during the Witches Festival.",
+["name"] = "Gruesome Feast",
+["points"] = 5,
+}
+,
+[2316] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Acquire one of each type of Plunder Skull during the Witches Festival.",
+["name"] = "The Plundered Masses",
+["points"] = 10,
+}
+,
+[2317] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2318] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2319] = {
+["Category"] = "Summerset",
+["Category_ID"] = 11,
+["description"] = "Learn every chapter in the Welkynar style book, occasionally found as rewards for completing the Cloudrest Trial.",
+["name"] = "Welkynar Style Master",
+["points"] = 50,
+}
+,
+[2320] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Collect and restore all the stone tablets in the Xinchei-Konu, an ancient Argonian calendar.",
+["name"] = "Chronic Chronologer",
+["points"] = 15,
+}
+,
+[2321] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat the four miregaunts who have swallowed Xinchei-Konu tablets.",
+["name"] = "Those Who Swallow Seasons",
+["points"] = 10,
+}
+,
+[2322] = {
+["Category"] = "Prologues",
+["Category_ID"] = 10,
+["description"] = "Help Cyrodilic Collections stop Margus Derius and prepare for expeditions to Murkmire.",
+["name"] = "Concordia\'s Top Performer",
+["points"] = 10,
+}
+,
+[2323] = {
+["Category"] = "Prologues",
+["Category_ID"] = 10,
+["description"] = "Complete a daily quest for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
+["name"] = "Cyrodilic Collections Associate",
+["points"] = 10,
+}
+,
+[2324] = {
+["Category"] = "Prologues",
+["Category_ID"] = 10,
+["description"] = "Complete 40 daily quests for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
+["name"] = "Cyrodilic Collections Agent",
+["points"] = 15,
+}
+,
+[2325] = {
+["Category"] = "Prologues",
+["Category_ID"] = 10,
+["description"] = "Complete 150 daily quests for Jee-Lar to help Cyrodilic Collections prepare for their expedition to Murkmire.",
+["name"] = "Cyrodilic Collections Champion",
+["points"] = 50,
+}
+,
+[2326] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2327] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2328] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2329] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2330] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Get to know the Shadowscale with peculiar interest in your activities in Murkmire.",
+["name"] = "Surreptitiously Shadowed",
+["points"] = 5,
+}
+,
+[2331] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete quests, defeat bosses, and explore delves to become the Hero of Murkmire.",
+["name"] = "Hero of Murkmire",
+["points"] = 50,
+}
+,
+[2332] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 34 Story Quests in Murkmire.",
+["name"] = "Murkmire Adventurer",
+["points"] = 15,
+}
+,
+[2333] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"Sunken Treasure\" quest.",
+["name"] = "Traps and Treasures",
+["points"] = 10,
+}
+,
+[2334] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"The Missing Ones\" quest.",
+["name"] = "Seeker of the Lost",
+["points"] = 10,
+}
+,
+[2335] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"Whispers in the Wood\" quest.",
+["name"] = "Mysteries of the Remnant",
+["points"] = 10,
+}
+,
+[2336] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"Death and Dreaming\" quest.",
+["name"] = "Sap-Sleeper",
+["points"] = 10,
+}
+,
+[2337] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"Through the Murk and Mire\" quest.",
+["name"] = "Shadows of the Past",
+["points"] = 10,
+}
+,
+[2338] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"The Remnant of Argon\" quest.",
+["name"] = "To Chase a Dream",
+["points"] = 10,
+}
+,
+[2339] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete the \"By River and Root\" quest.",
+["name"] = "The River of Rebirth",
+["points"] = 10,
+}
+,
+[2340] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Travel to Lilmoth in Murkmire.",
+["name"] = "The Festering Jewel",
+["points"] = 5,
+}
+,
+[2341] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Read the five poems written by Nisswo Xeewulm, located near Sithis Shrines throughout Murkmire.",
+["name"] = "Poems of Nothing",
+["points"] = 5,
+}
+,
+[2342] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Kill 100 Voriplasms in Murkmire.",
+["name"] = "Voriplasm Slayer",
+["points"] = 5,
+}
+,
+[2343] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Harvest a Scuttle Bloom and disarm a Gas Blossom, Static Pitcher, Catapult Cabbage, and Lantern Mantis.",
+["name"] = "Fiendish Fauna",
+["points"] = 5,
+}
+,
+[2344] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 1 Delve Daily from Varo Hosidias.",
+["name"] = "Collecting Curiosities",
+["points"] = 5,
+}
+,
+[2345] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 10 Delve Dailies from Varo Hosidias.",
+["name"] = "Acquiring Antiquities",
+["points"] = 10,
+}
+,
+[2346] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 30 Delve Dailies from Varo Hosidias.",
+["name"] = "Hauling Heirlooms",
+["points"] = 15,
+}
+,
+[2347] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 1 Group Boss Daily from Bolu.",
+["name"] = "Strength of a Naga",
+["points"] = 5,
+}
+,
+[2348] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 10 Group Boss Dailies from Bolu.",
+["name"] = "Courage of a Naga",
+["points"] = 10,
+}
+,
+[2349] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 30 Group Boss Dailies from Bolu.",
+["name"] = "Heart of a Naga",
+["points"] = 15,
+}
+,
+[2350] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 1 Root-Whisper Daily from Tuwul.",
+["name"] = "Whispering Roots",
+["points"] = 5,
+}
+,
+[2351] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 10 Root-Whisper Dailies from Tuwul.",
+["name"] = "Repairing the Roots",
+["points"] = 5,
+}
+,
+[2352] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Complete 30 Root-Whisper Dailies from Tuwul.",
+["name"] = "Resplendent Rootmender",
+["points"] = 10,
+}
+,
+[2353] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Help Nesh-Deeka establish a trade agreement for his unusual instruments.",
+["name"] = "Murky Marketer",
+["points"] = 10,
+}
+,
+[2354] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Help the Bright-Throat Tribe prepare for their bonding ritual.",
+["name"] = "Cold-Blood, Warm Heart",
+["points"] = 10,
+}
+,
+[2355] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Befriend the Bright-Throat, Dead-Water, and Root-Whisper tribes by offering them aid in times of need.",
+["name"] = "Friend of Murkmire",
+["points"] = 15,
+}
+,
+[2356] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2357] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Read the six Vine-Tongue books by activating various vine-tongues throughout Murkmire.",
+["name"] = "Vine-Tongue Traveler",
+["points"] = 5,
+}
+,
+[2358] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Rescue villagers in peril from four different tribes throughout Murkmire.",
+["name"] = "Swamp Rescuer",
+["points"] = 10,
+}
+,
+[2359] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2360] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Learn every chapter in the Dead-Water style book, occasionally found as rewards for completing Daily Quests to defeat World Bosses, explore Delves in Murkmire, and help rebuild Root-Whisper Village.",
+["name"] = "Dead-Water Style Master",
+["points"] = 50,
+}
+,
+[2361] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Learn every chapter in the Elder Argonian style book, occasionally found as rewards for completing Daily Quests to defeat World Bosses, explore Delves in Murkmire, and help rebuild Root-Whisper Village.",
+["name"] = "Elder Argonian Style Master",
+["points"] = 50,
+}
+,
+[2362] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Blackrose Prison.",
+["name"] = "Blackrose Prison Vanquisher",
+["points"] = 15,
+}
+,
+[2363] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison.",
+["name"] = "Blackrose Prison Conqueror",
+["points"] = 50,
+}
+,
+[2364] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison without using Sigils during combat.",
+["name"] = "Sigil Stingy",
+["points"] = 50,
+}
+,
+[2365] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison without dying.",
+["name"] = "Unchained and Undying",
+["points"] = 50,
+}
+,
+[2366] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison in under 30 minutes. The timer starts when the first arena begins.",
+["name"] = "Gauntlet Gallop",
+["points"] = 50,
+}
+,
+[2367] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison in under 30 minutes without dying. The timer starts when the first arena begins.",
+["name"] = "Blackrose Buccaneer",
+["points"] = 50,
+}
+,
+[2368] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Tames-the-Beast, Lady Minara, and Drakeeh the Unchained in Veteran Blackrose Prison in under 30 minutes without dying and without activating Sigils during combat. The timer starts when the first arena begins.",
+["name"] = "God of the Gauntlet",
+["points"] = 50,
+}
+,
+[2369] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius without group members taking flame damage while her Flame Spouts ability is active in Veteran Blackrose Prison.",
+["name"] = "Faster than Flames",
+["points"] = 10,
+}
+,
+[2370] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Tames-the-Beast without a group member becoming trapped by the Crushing Roots ability in Veteran Blackrose Prison.",
+["name"] = "Rarely Rooted",
+["points"] = 10,
+}
+,
+[2371] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Lady Minara after three Bone Colossi are summoned within 30 seconds of the round beginning in Veteran Blackrose Prison.",
+["name"] = "Skeletal Summoning",
+["points"] = 10,
+}
+,
+[2372] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Battlemage Ennodius, Lady Minara, and Tames-the-Beast within 20 seconds of each other in Veteran Blackrose Prison.",
+["name"] = "A Thrilling Trifecta",
+["points"] = 10,
+}
+,
+[2373] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Defeat Drakeeh the Unchained while always ensuring he absorbs at least 2 spirits before casting Spirit Scream in Veteran Blackrose Prison.",
+["name"] = "Spirits Sundered",
+["points"] = 10,
+}
+,
+[2374] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Use Battlemage Ennodius\' Meteor ability to stun all four atronachs simultaneously in the first arena of Blackrose Prison.",
+["name"] = "Meteor Mayhem",
+["points"] = 10,
+}
+,
+[2375] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Use a Sigil of Resurrection in any arena to revive three other group members at once in Blackrose Prison.",
+["name"] = "Rise of the Fallen",
+["points"] = 10,
+}
+,
+[2376] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Have a single group member successfully absorb all three of Drakeeh\'s targets during his Spirit Ignition ability and cleanse themselves without dying.",
+["name"] = "Cleansing the Damned",
+["points"] = 10,
+}
+,
+[2377] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2378] = {
+["Category"] = "Murkmire",
+["Category_ID"] = 13,
+["description"] = "Interact with a Blue Swamp Jelly and harvest its resources.",
+["name"] = "Swamp Jelly Collector",
+["points"] = 5,
+}
+,
+[2379] = {
+["Category"] = "Holiday Events",
+["Category_ID"] = 9,
+["description"] = "Complete 12 New Life Charity Writs.",
+["name"] = "Newly Charitable",
+["points"] = 10,
+}
+,
+[2380] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2381] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2382] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2383] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2384] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2385] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2386] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2387] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2388] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2389] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2390] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2391] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2392] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2393] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2394] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2395] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2396] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2397] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2398] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2399] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2400] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2401] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2402] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2403] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2404] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2405] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2406] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2407] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2408] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2409] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2410] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2411] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2412] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2413] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2414] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2415] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2416] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2417] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2418] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2419] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2420] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2421] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2422] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2423] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2424] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2425] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2426] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2427] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2428] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2429] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2430] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2431] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2432] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2433] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2434] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2435] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2436] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2437] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2438] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2439] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2440] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2441] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2442] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2443] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2444] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2445] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2446] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2447] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2448] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2449] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2450] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2451] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2452] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2453] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2454] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2455] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2456] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2457] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2458] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2459] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2460] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2461] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2462] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2463] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2464] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2465] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2466] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2467] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2468] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2469] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2470] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2471] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2472] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2473] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2474] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2475] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2476] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2477] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2478] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2479] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2480] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2481] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2482] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2483] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2484] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2485] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2486] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2487] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2488] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2489] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2490] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2491] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2492] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2493] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2494] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2495] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2496] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2497] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2498] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2499] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2500] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2501] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2502] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2503] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2504] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2505] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2506] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2507] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2508] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2509] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2510] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2511] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2512] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2513] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2514] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2515] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2516] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2517] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2518] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2519] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2520] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2521] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2522] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2523] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2524] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2525] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2526] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2527] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2528] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2529] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2530] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2531] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2532] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2533] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2534] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2535] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2536] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2537] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2538] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2539] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2540] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2541] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2542] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2543] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2544] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2545] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2546] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2547] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2548] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2549] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2550] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2551] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2552] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2553] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2554] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2555] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2556] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2557] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2558] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2559] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2560] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2561] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2562] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2563] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2564] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2565] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2566] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2567] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2568] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2569] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2570] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2571] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2572] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2573] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2574] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2575] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2576] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2577] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2578] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2579] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2580] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2581] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2582] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2583] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2584] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2585] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2586] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2587] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2588] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2589] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2590] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2591] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2592] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2593] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2594] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2595] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2596] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2597] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2598] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2599] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2600] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2601] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2602] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2603] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2604] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2605] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2606] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2607] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2608] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2609] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2610] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2611] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2612] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2613] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2614] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2615] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2616] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2617] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2618] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2619] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2620] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2621] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2622] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2623] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2624] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2625] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2626] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2627] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2628] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2629] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2630] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2631] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2632] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2633] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2634] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2635] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2636] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2637] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2638] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2639] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2640] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2641] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2642] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2643] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2644] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2645] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2646] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2647] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2648] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2649] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2650] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2651] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2652] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2653] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2654] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2655] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2656] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2657] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2658] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2659] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2660] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2661] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2662] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2663] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2664] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2665] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2666] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2667] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2668] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2669] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2670] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2671] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2672] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2673] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2674] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2675] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2676] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2677] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2678] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2679] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2680] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2681] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2682] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2683] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2684] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2685] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2686] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2687] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2688] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2689] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2690] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2691] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2692] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2693] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2694] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2695] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2696] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2697] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2698] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2699] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2700] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2701] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2702] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2703] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2704] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2705] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2706] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2707] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2708] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2709] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2710] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2711] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2712] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2713] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2714] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2715] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2716] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2717] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2718] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2719] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2720] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2721] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2722] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2723] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2724] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2725] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2726] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2727] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2728] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2729] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2730] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2731] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2732] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2733] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2734] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2735] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2736] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2737] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2738] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2739] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2740] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2741] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2742] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2743] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2744] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2745] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2746] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2747] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2748] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2749] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2750] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2751] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2752] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2753] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2754] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2755] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2756] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2757] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2758] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2759] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2760] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2761] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2762] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2763] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2764] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2765] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2766] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2767] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2768] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2769] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2770] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2771] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2772] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2773] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2774] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2775] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2776] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2777] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2778] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2779] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2780] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2781] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2782] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2783] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2784] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2785] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2786] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2787] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2788] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2789] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2790] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2791] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2792] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2793] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2794] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2795] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2796] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2797] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2798] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2799] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2800] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2801] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2802] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2803] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2804] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2805] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2806] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2807] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2808] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2809] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2810] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2811] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2812] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2813] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2814] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2815] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2816] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2817] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2818] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2819] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2820] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2821] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2822] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2823] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2824] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2825] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2826] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2827] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2828] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2829] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2830] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2831] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2832] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2833] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2834] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2835] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2836] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2837] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2838] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2839] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2840] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2841] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2842] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2843] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2844] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2845] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2846] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2847] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2848] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2849] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2850] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2851] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2852] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2853] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2854] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2855] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2856] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2857] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2858] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2859] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2860] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2861] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2862] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2863] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2864] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2865] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2866] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2867] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2868] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2869] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2870] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2871] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2872] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2873] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2874] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2875] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2876] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2877] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2878] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2879] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2880] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2881] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2882] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2883] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2884] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2885] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2886] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2887] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2888] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2889] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2890] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2891] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2892] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2893] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2894] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2895] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2896] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2897] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2898] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2899] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2900] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2901] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2902] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2903] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2904] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2905] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2906] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2907] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2908] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2909] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2910] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2911] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2912] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2913] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2914] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2915] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2916] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2917] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2918] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2919] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2920] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2921] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2922] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2923] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2924] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2925] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2926] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2927] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2928] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2929] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2930] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2931] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2932] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2933] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2934] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2935] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2936] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2937] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2938] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2939] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2940] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2941] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2942] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2943] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2944] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2945] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2946] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2947] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2948] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2949] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2950] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2951] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2952] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2953] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2954] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2955] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2956] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2957] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2958] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2959] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2960] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2961] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2962] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2963] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2964] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2965] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2966] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2967] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2968] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2969] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2970] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2971] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2972] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2973] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2974] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2975] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2976] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2977] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2978] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2979] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2980] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2981] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2982] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2983] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2984] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2985] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2986] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2987] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2988] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2989] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2990] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2991] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2992] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2993] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2994] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2995] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2996] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2997] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2998] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[2999] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
+[3000] = {
+["Category"] = "NIL",
+["description"] = "",
+["name"] = "",
+["points"] = 0,
+}
+,
 }
diff --git a/data/ru/ru.lua b/data/ru/ru.lua
index 8084aa4..7cff294 100644
--- a/data/ru/ru.lua
+++ b/data/ru/ru.lua
@@ -1,13 +1,16 @@

+
 dateformat = "%Y-%m-%d, %H:%M"

 Area_names = {
 	[1] = { short= "EP",
 			medium = "Pact",
 			long = "Ebonheart Pact"},
+
 	[2] = { short= "DC",
 			medium = "Covenant",
 			long = "Daggerfall Covenant"},
+
 	[3] = { short= "AD",
 			medium = "Dominion",
 			long = "Aldmeri Dominion"},
@@ -27,6 +30,7 @@ Area_names = {
 	[8] = { short= "IC",
 			medium = "Imperial City",
 			long = "Imperial City"},
+
 	[9] = { short= "Hist",
 			medium = "Hist",
 			long = "Shadows of the Hist"},
@@ -42,9 +46,13 @@ Area_names = {
 	[13] = { short= "Summer",
 			medium = "Summerset Isle",
 			long = "Summerset Isle"},
+
 	[14] = { short= "Wolf",
 			medium = "Wolfhunter",
 			long = "Wolfhunter"},
+	[15] = { short= "Murk",
+			medium = "Murkmire",
+			long = "Murkmire"},
 }

 L = {
@@ -70,6 +78,10 @@ L = {
 	GrpLab = "Levels are Minimum, scales to leader",
 	PubLab = "Conqueror Achievement",
 	VetLab = "All are V1-V12 except City of Ash which is V13-V14",
+
+
+
+
 	WBLab = "",
 	LogTab = "System Log",
 	TStamp = "Time Stamp" ,
@@ -83,6 +95,7 @@ L = {
 	Zone = "Zone",
 	SkillQuests = "SkillQuests",
 	SkillLab = "Quests Awarding a Skill Point. Click for Detail",
+
 	Ach_ID = "Ach ID",

 	Name = "Name",
@@ -96,6 +109,11 @@ L = {
 	Trial_TabName={},
 	Pub = "Public",
 	Vet = "Veteran",
+	Vanquisher="Vanquisher",
+	Conqueror="Conqueror",
+
+
+
 	Achievements = "Achievements",
 	DLC="DLC",
 	DLCLab="Downloadable Content",
@@ -105,6 +123,7 @@ L = {
 	About = "About",
 	Delete = "Delete",
 	NoAccount ="Only 1 account, can't delete that.",
+
 	ChooseAccounttoDelete = "Choose Account to Delete",
 	ChooseChartoDelete = "Choose Character to Delete",
 	ChooseWorld ="Choose Server",
@@ -114,6 +133,8 @@ L = {
 	View_Toggle = "Hide Complete",
 	Completed = "Completed on: ",		-- Mouseover achievement detail
 	Achievement = "Achievement",
+	Filter="Filter",
+	Detail="Detail",

 }

@@ -134,10 +155,12 @@ pub_names = {

 	["21"]= "Forgotten Crypts",
 	["31"]= "Sanguine's Demesne",
+
 	["41"]= "Hall of the Dead" ,
 	["51"]= "Lion's Den",
 --DC
 	["12"]= "Bad Man's Hallows" ,
+
 	["22"]= "Bonesnap Ruins" ,
 	["32"]= "Obsidian Scar" ,
 	["42"]= "Lost City" ,
@@ -145,12 +168,14 @@ pub_names = {
 --AD
 	["13"]= "Toothmall Gully" ,
 	["23"]= "Root Sunder Ruins" ,
+
 	["33"]= "Rulanyil's Fall" ,
 	["43"]= "Crimson Cove" ,

 	["53"]= "The Vile Manse" ,
 --Coldharbour
 	["14"]= "Village of the Lost" ,
+
 --Vvardenfell
 	["24"]= "Forgotten Wastes",
 	["34"]= "Nchuleftingth",
@@ -164,6 +189,7 @@ grp_names = {
 	["21"]= "Darkshade Caverns",
 	["31"]= "Arx Corinum",
 	["41"]= "Direfrost Keep",
+
 	["51"]= "Blessed Crucible",
 --DC
 	["12"]= "Spindleclutch",
@@ -186,8 +212,10 @@ Trials_Names= {}
 Trials_Names["N"] = {
 	["11"] = "Craglorn: Hel Ra Citadel Completed",
 	["21"] = "Craglorn: Aetherian Archive Completed",
+
 	["31"] = "Craglorn: Sanctum Ophidia Completed",
 	["41"] = "Craglorn: Dragonstar Arena Champion",
+
 	["51"] = "Vvardenfell: Halls of Fabrication Completed",
 	["61"] = "Theives Guild: Maw of Lorkhaj Completed",
 	["71"] = "Summerset: Cloudrest Completed",
@@ -197,6 +225,7 @@ Trials_Names["N"] = {
 	["111"] = "Clockwork City: Asylum Sanctorium Completed",
 	["121"] = "Clockwork City: Asylum Sanctorium Contender",
 }
+
 Trials_Names["V"] = {
 	["11"] = "Craglorn: Hel Ra Citadel Conqueror",
 	["21"] = "Craglorn: Aetherian Archive Conqueror",
@@ -293,43 +322,38 @@ Locations = {   -- Used for WB and SQ

 }

-
-
 Locations2 = {   -- Used for WB and SQ,

 --EP
-{ name="Stonefalls",Grp="Fungal Grotto", Pub="Crow's Wood"},
-{ name="Deshaan", Grp="Darkshade Caverns", Pub="Forgotten Crypts"},
-{ name="Shadowfen", Grp="Arx Corinum", Pub="Sanguine's Demesne"},
-{ name="Eastmarch", Grp="Direfrost Keep", Pub="Hall of the Dead"},
-{ name="The Rift", Grp="Blessed Crucible", Pub="Lion's Den"},
+{ name="Stonefalls",Grp="Fungal Grotto", Pub="Crow's Wood"},	--1
+{ name="Deshaan", Grp="Darkshade Caverns", Pub="Forgotten Crypts"},	--2
+{ name="Shadowfen", Grp="Arx Corinum", Pub="Sanguine's Demesne"},	--3
+{ name="Eastmarch", Grp="Direfrost Keep", Pub="Hall of the Dead"},	--4
+{ name="The Rift", Grp="Blessed Crucible", Pub="Lion's Den"},	--5
 --DC
-{ kname="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},
-{ name="Stormhaven", Grp="Wayrest Sewers", Pub="Bonesnap Ruins"},
-{ name="Rivenspire", Grp="Crypt of Hearts", Pub="Obsidian Scar"},
-{ name="Alik'r Desert", Grp="Volenfell", Pub="Lost City"},
-{ name="Bangkorai", Grp="Blackheart Haven", Pub="Razaks Wheel"},
+{ name="Glenumbra", Grp="Spindleclutch", Pub="Bad Man's Hallows"},	--6
+{ name="Stormhaven", Grp="Wayrest Sewers", Pub="Bonesnap Ruins"},	--7
+{ name="Rivenspire", Grp="Crypt of Hearts", Pub="Obsidian Scar"},	--8
+{ name="Alik'r Desert", Grp="Volenfell", Pub="Lost City"},	--9
+{ name="Bangkorai", Grp="Blackheart Haven", Pub="Razaks Wheel"},	--10
 --AD
-{ name="Auridon", Grp="Banished Cells", Pub="Toothmall Gully"},
-{ name="Grahtwood", Grp="Elden Hollow", Pub="Root Sunder Ruins"},
-{ name="Greenshade", Grp="City of Ash", Pub="Rulanyil's Fall"},
-{ name="Malabal-Tor", Grp="Tempest Island", Pub="Crimson Cove"},
-{ name="Reaper's March", Grp="Selene's Web", Pub="The Vile Manse"},
+{ name="Auridon", Grp="Banished Cells", Pub="Toothmall Gully"},	--11
+{ name="Grahtwood", Grp="Elden Hollow", Pub="Root Sunder Ruins"},	--12
+{ name="Greenshade", Grp="City of Ash", Pub="Rulanyil's Fall"},	--13
+{ name="Malabal-Tor", Grp="Tempest Island", Pub="Crimson Cove"},	--14
+{ name="Reaper's March", Grp="Selene's Web", Pub="The Vile Manse"},	--15
 --Coldharbour
-{ name="Coldharbour", Grp="Vaults of Madness", Pub="Village of the Lost"},
-{ name="Dark Brotherhood"},
-{ name="Thieves Guild"},
-{ name="Imperial City"},
-{ name="VVardenfell"},
-
-{ name="Orsinium"},
-{ name="Clockwork City"},
-{ name="Summerset"},
-
+{ name="Coldharbour", Grp="Vaults of Madness", Pub="Village of the Lost"},	--16
+{ name="Dark Brotherhood"},	--17
+{ name="Thieves Guild"},	--18
+{ name="Imperial City"},	--19
+{ name="VVardenfell"},	--20
+{ name="Orsinium"},--21
+{ name="Clockwork City"},	--22
+{ name="Summerset"},	--23
+{ name="Murkmire"},	--24
 }

-
-
 DLC_Location_names = {
 ["11"]	= "Rkindaleft",
 ["21"]	= "Old Orsinum",
@@ -358,8 +382,8 @@ DLC_Location_names = {
 }

 --With Dungeons  No thieves guild or dark brotherhood
--- In DLC.lua, the canonical naming DLC_Category= {"Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Clockwork City", "Morrowind", "Summerset", "Wolfhunter")
+-- In DLC.lua, the canonical naming DLC_Category= {"Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Clockwork City", "Morrowind", "Summerset", "Wolfhunter",  "Murkmire")

 --Our Naming

-DLC_Names= {"Thieves Guild", "Dark Brotherhood", "Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Clockwork City", "Morrowind", "Summerset", "Wolfhunter"}
\ No newline at end of file
+DLC_Names= {"Thieves Guild", "Dark Brotherhood", "Orsinium", "Imperial City", "Shadows of the Hist", "Horns of the Reach", "Dragon Bones","Clockwork City", "Morrowind", "Summerset", "Wolfhunter", "Murkmire"}
\ No newline at end of file
diff --git a/data/utility.lua b/data/utility.lua
index 6710a37..1d1d77d 100644
--- a/data/utility.lua
+++ b/data/utility.lua
@@ -274,6 +274,18 @@ end
 -- take WB_Dat or SQ_Dat, which are indexed on id and return array
 -- lines_t = table[key]  of  {done,of ids{id=false, id=false}}    then we can scan and set id to true if found
 Reverse_Dat = function (dat_t,ids_t)
+	if type(dat_t) ~= "table" then
+		print("Reverse_Dat dat_t is not a table.")
+		return
+	end
+
+	if type(ids_t) ~= "table" then
+		print("Reverse_Dat ids_t is not a table.")
+		return
+	end
+
+
+
 	local lines_t = {}	-- accumulate as LC Key
 	for id, location_t in pairs (dat_t) do		--location is index into Locations2key and Locations2

@@ -306,6 +318,10 @@ Populate_Dat = function(matrix, dat_t,ids_t)

 		for i,key_t  in ipairs (Locations2Key) do		--	{ key="1:1",L=1,C=1,Area=1},		--	name="Stonefalls"}
 			local name = Locations2[i].name
+			if name == nil then
+				print("Populate_Dat: Locations2[i].name returns nil for i: " .. i)
+				return
+			end
 			local line =Rev[key_t.key]
 			if line == nil then 	-- this is ok. Location without a WB or SQ
 			else