Advertisement
Rochet2

Bounty Hunter script

Apr 1st, 2012
3,299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 87.13 KB | None | 0 0
  1. -- BountyHunter script by Rochet2
  2.  
  3. -- [[   Settings:   ]]
  4.     local Entry = 190000 -- Bounty handler NPC
  5.     local Expire = 60 -- Minutes until a bounty expires
  6.     local RANK = "az" -- GM rank needed to access mass bounty deletion
  7.     local Bounties = {10, 20, 30, 40, 50, 60} -- available bounty amounts in gold
  8.  
  9.     local CheckLevel = false
  10.     local ReqLevel = 60
  11.     local ReqLevelDiff = 5
  12. -- [[      End      ]]
  13.  
  14.  
  15. --[[ -- SQL, run to your database:
  16.  
  17. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  18. /*!40101 SET NAMES utf8 */;
  19. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  20. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  21.  
  22. DROP TABLE IF EXISTS `b_bounties`;
  23. CREATE TABLE IF NOT EXISTS `b_bounties` (
  24.   `Victim` varchar(50) NOT NULL,
  25.   `Hunter` varchar(50) NOT NULL,
  26.   `Gold` int(10) unsigned NOT NULL,
  27.   `refund` tinyint(3) NOT NULL DEFAULT '0',
  28.   `Unique` int(10) unsigned NOT NULL AUTO_INCREMENT,
  29.   PRIMARY KEY (`Unique`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  31.  
  32. DROP TABLE IF EXISTS `b_hunters`;
  33. CREATE TABLE IF NOT EXISTS `b_hunters` (
  34.   `Hunter` varchar(10) NOT NULL DEFAULT '',
  35.   PRIMARY KEY (`Hunter`)
  36. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  37.  
  38. DROP TABLE IF EXISTS `b_victims`;
  39. CREATE TABLE IF NOT EXISTS `b_victims` (
  40.   `Victim` varchar(50) NOT NULL,
  41.   `Time` bigint(50) unsigned NOT NULL,
  42.   PRIMARY KEY (`Victim`)
  43. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  44.  
  45. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  46. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  47. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  48.  
  49. -- ]] -- End of SQL
  50.  
  51.  
  52. -- ** Dynamic script **
  53. -- Do not change anything below unless you know what you are doing.
  54.  
  55. Expire = Expire*60
  56. local P,C,B,G,H,R,T = {},{},{},{},{},{},{}
  57. local BOUNTY_COST_START = 10
  58. local BOUNTY_LIST_START = BOUNTY_COST_START + #Bounties
  59. local AREA, MAP, RACE
  60. local LIST_ITEMS = 20
  61. --[[
  62. P[Victim] = {[n] = Hunter}
  63. B[Victim][Hunter] = Gold
  64. H[Hunter][Victim] = Gold
  65. G[Victim] = Gold
  66. C[Victim] = {GetGameTime(), Expire}
  67. R[Hunter] {[n] = {Victim, Gold}}
  68. T[Pstr] = {List = {}, Page = {}}
  69. ]]
  70.  
  71.  
  72. local function SetBounty(Victim, Hunter, cost, pPlayer)
  73.     local Gold = cost*10000
  74.     pPlayer:DealGoldCost(Gold)
  75.     if(not G[Victim]) then
  76.         G[Victim] = 0
  77.     end
  78.     G[Victim] = G[Victim] + Gold
  79.     C[Victim] = {GetGameTime(), Expire}
  80.     if(not B[Victim]) then
  81.         B[Victim] = {}
  82.     end
  83.     B[Victim][Hunter] = Gold
  84.     H[Hunter][Victim] = Gold
  85.     if(not P[Victim]) then
  86.         P[Victim] = {}
  87.     end
  88.     table.insert(P[Victim], Hunter)
  89.     CharDBQuery('REPLACE INTO `b_victims` (`Victim`, `Time`) VALUES ("'..Victim..'", '..Expire..');')
  90.     CharDBQuery('REPLACE INTO `b_bounties` (`Victim`, `Hunter`, `Gold`, refund) VALUES ("'..Victim..'", "'..Hunter..'", '..Gold..', 0);')
  91.     SendWorldMessage(cost.."g bounty has been placed on "..Victim.."'s head by "..Hunter, 2)
  92.     local plr = GetPlayer(Victim)
  93.     if(plr) then
  94.         plr:SendAreaTriggerMessage("A bounty was placed on your head!")
  95.         plr:SendBroadcastMessage(Hunter.." Set a bounty on your head. Kill him to clear the bounty and earn money. You are now flagged for FFA")
  96.         plr:FlagFFA(true)
  97.     end
  98. end
  99.  
  100. local function DeleteBounty(Victim)
  101.     local plr = GetPlayer(Victim)
  102.     if(plr) then
  103.         plr:FlagFFA(false)
  104.     end
  105.     G[Victim] = nil
  106.     B[Victim] = nil
  107.     C[Victim] = nil
  108.     P[Victim] = nil
  109.     CharDBQuery('DELETE FROM `b_victims` WHERE Victim = "'..Victim..'"')
  110.     CharDBQuery('DELETE FROM `b_bounties` WHERE Victim = "'..Victim..'" and refund = 0')
  111. end
  112.  
  113. local function Game(Victim)
  114.     local plr = GetPlayer(Victim)
  115.     if(plr) then
  116.         if(C[Victim]) then
  117.             local GameTime = GetGameTime()
  118.             local Time = C[Victim][2]-(GameTime-C[Victim][1])
  119.             if(Time > 0) then
  120.                 C[Victim] = {GameTime, Time}
  121.                 CharDBQuery('UPDATE b_victims SET time = '..Time..' WHERE Victim = "'..Victim..'"')
  122.                 return plr
  123.             end
  124.             DeleteBounty(Victim)
  125.             SendWorldMessage("Bounty for "..Victim.." has expired!", 2)
  126.         end
  127.     end
  128.     return false
  129. end
  130.  
  131. local function LogIn(event, pPlayer)
  132.     local Pstr = pPlayer:GetName()
  133.     if(B[Pstr]) then
  134.         C[Pstr][1] = GetGameTime()
  135.         pPlayer:SendAreaTriggerMessage("You are still hunted!")
  136.         pPlayer:SendBroadcastMessage("You are still hunted!")
  137.         pPlayer:FlagFFA(true)
  138.     end
  139.     if(H[Pstr]) then
  140.         pPlayer:SendAreaTriggerMessage("You are still a bounty hunter!")
  141.         pPlayer:SendBroadcastMessage("You are still a bounty hunter!")
  142.         pPlayer:FlagFFA(true)
  143.     end
  144.     if(R[Pstr]) then
  145.         for k, tbl in pairs(R[Pstr]) do
  146.             pPlayer:SendBroadcastMessage("Bounty on "..tbl[1].."'s head has been refunded")
  147.             pPlayer:DealGoldMerit(tbl[2])
  148.         end
  149.         R[Pstr] = nil
  150.         CharDBQuery('DELETE FROM `b_bounties` WHERE Hunter = "'..Pstr..'" and refund <> 0')
  151.     end
  152. end
  153.  
  154. local function LogOut(event, pPlayer)
  155.     local Pstr = pPlayer:GetName()
  156.     if(B[Pstr] and Game(Pstr)) then
  157.         C[Pstr] = {nil, C[Pstr][2]-(GetGameTime()-C[Pstr][1])}
  158.         CharDBQuery('UPDATE b_victims SET time = '..C[Pstr][2]..' WHERE Victim = "'..Pstr..'"')
  159.     end
  160. end
  161.  
  162. local function Kill(event, pKiller, pVictim)
  163.     local Kstr, Vstr = pKiller:GetName(), pVictim:GetName()
  164.     if(Kstr == Vstr) then
  165.         return
  166.     end
  167.     if(H[Kstr] and B[Vstr]) then
  168.         if(Game(Vstr)) then
  169.             pKiller:DealGoldMerit(B[Vstr].Gold)
  170.             DeleteBounty(Vstr)
  171.             SendWorldMessage(Kstr.." has claimed "..Vstr.."'s bounty", 2)
  172.         end
  173.     elseif(H[Vstr] and B[Kstr]) then
  174.         if(Game(Kstr)) then
  175.             pKiller:DealGoldMerit(G[Kstr])
  176.             DeleteBounty(Kstr)
  177.             SendWorldMessage(Kstr.." cleared his name and earned the bounty money", 2)
  178.         end
  179.     end
  180. end
  181.  
  182. local function Hello(pUnit, event, pPlayer)
  183.     local Pstr = pPlayer:GetName()
  184.     if(CheckLevel) then
  185.         if(pPlayer:GetPlayerLevel() < ReqLevel) then
  186.             return
  187.         end
  188.     end
  189.     if(not T[Pstr]) then
  190.         T[Pstr] = {}
  191.     end
  192.     T[Pstr].page = 0
  193.     pUnit:GossipCreateMenu(1, pPlayer, 0)
  194.     pUnit:GossipMenuAddItem(0, "Bounty list", 5, 0)
  195.     if(not H[pPlayer:GetName()]) then
  196.         pUnit:GossipMenuAddItem(0, "Become a bounty hunter", 1, 0, 'You will be flagged FFA!', 0)
  197.     else
  198.         pUnit:GossipMenuAddItem(0, "Set a bounty on a player", 3, 0)
  199.         pUnit:GossipMenuAddItem(0, "I want to stop bounty hunting", 2, 0, "You will lose all bounties currently set by you!", 0)
  200.     end
  201.     if(pPlayer:CanUseCommand(RANK)) then
  202.         pUnit:GossipMenuAddItem(0, "Delete all bounties", 4, 0, "WARNING\nAll bounties will be auto refunded.", 0)
  203.     end
  204.     pUnit:GossipSendMenu(pPlayer)
  205. end
  206.  
  207. local function GetBountyMenu(pUnit, pPlayer, Pstr)
  208.     if(not T[Pstr]) then
  209.         Hello(pUnit, 1, pPlayer)
  210.     end
  211.     pUnit:GossipCreateMenu(1, pPlayer, 0)
  212.     pUnit:GossipMenuAddItem(7, "Back..", 8, 0) -- BACK
  213.     pUnit:GossipMenuAddItem(4, "Refresh", 5, 0)
  214.     T[Pstr].list = {}
  215.     local start = T[Pstr].page * LIST_ITEMS;
  216.     local passed = 0
  217.     local Next = false
  218.     for Victim, tbl in pairs(B) do
  219.         if(Game(Victim)) then
  220.             passed = passed +1
  221.             if(passed > start and passed <= LIST_ITEMS + start) then
  222.                 table.insert(T[Pstr].list, Victim)
  223.                 pUnit:GossipMenuAddItem(4, table.concat(P[Victim], ", ").." offer "..(G[Victim]/10000).."g for "..Victim.."'s head", BOUNTY_LIST_START+#T[Pstr].list, 0)
  224.             end
  225.             if(passed-start >= LIST_ITEMS+1) then
  226.                 Next = true
  227.                 break
  228.             end
  229.         end
  230.     end
  231.     if(T[Pstr].page > 0) then
  232.         pUnit:GossipMenuAddItem(7, "Previus page..", 7, 0)
  233.     end
  234.     if(Next) then
  235.         pUnit:GossipMenuAddItem(7, "Next page..", 6, 0)
  236.     end
  237.     pUnit:GossipSendMenu(pPlayer)
  238.     if(T[Pstr].page > 0 and passed-start == 0) then
  239.         T[Pstr].page = T[Pstr].page - 1
  240.         GetBountyMenu(pUnit, pPlayer, Pstr)
  241.     end
  242. end
  243.  
  244. local function Select(pUnit, event, pPlayer, id, intid, Victim)
  245.     local Pstr = pPlayer:GetName()
  246.     if(intid == 4) then
  247.         local Q = CharDBQuery('SELECT `Victim`, `Hunter`, `Gold`, `Unique` FROM b_bounties WHERE refund = 0')
  248.         if(Q) then
  249.             CharDBQuery('UPDATE b_bounties SET refund = 1')
  250.             for i = 1, Q:GetRowCount() do
  251.                 local Victim, Hunter, Gold, ID = Q:GetColumn(0):GetString(), Q:GetColumn(1):GetString(), Q:GetColumn(2):GetULong(), Q:GetColumn(3):GetULong()
  252.                 local plr = GetPlayer(Hunter)
  253.                 if(plr) then
  254.                     plr:DealGoldMerit(Gold)
  255.                     CharDBQuery('DELETE FROM `b_bounties` WHERE `Unique` = '..ID)
  256.                     plr:SendBroadcastMessage("Bounty on "..Victim.."'s head has been refunded")
  257.                 else
  258.                     if(not R[Hunter]) then
  259.                         R[Hunter] = {}
  260.                     end
  261.                     R[Hunter][#R[Hunter]] = {Victim, Gold}
  262.                 end
  263.                 Q:NextRow()
  264.             end
  265.             SendWorldMessage("All bounties have been deleted by a GM - bounties auto refunded", 2)
  266.         end
  267.         CharDBQuery('DELETE FROM `b_victims`')
  268.         G,B,C,P = {},{},{},{}
  269.         Hello(pUnit, event, pPlayer)
  270.     elseif(intid == 1) then
  271.         CharDBQuery('REPLACE INTO `b_hunters` (`Hunter`) VALUES ("'..Pstr..'");')
  272.         H[Pstr] = {}
  273.         pPlayer:FlagFFA(true)
  274.         Hello(pUnit, event, pPlayer)
  275.     elseif(intid == 2) then
  276.         for Victim, Gold in pairs(H[Pstr]) do
  277.             if(#P[Victim] == 1) then
  278.                 DeleteBounty(Victim)
  279.             else
  280.                 for k, Hunter in pairs(P[Victim]) do
  281.                     if(Hunter == Pstr) then
  282.                         table.remove(P[Victim], k)
  283.                         G[Victim] = G[Victim]-B[Victim][Hunter]
  284.                         break
  285.                     end
  286.                 end
  287.                 B[Victim][Pstr] = nil
  288.             end
  289.         end
  290.         H[Pstr] = nil
  291.         pPlayer:FlagFFA(false)
  292.         CharDBQuery('DELETE FROM `b_hunters` WHERE Hunter = "'..Pstr..'";')
  293.         CharDBQuery('DELETE FROM `b_bounties` WHERE Hunter = "'..Pstr..'" and refund = 0;')
  294.         Hello(pUnit, event, pPlayer)
  295.     elseif(intid == 3) then
  296.         pUnit:GossipCreateMenu(1, pPlayer, 0)
  297.         pUnit:GossipMenuAddItem(7, "Back..", 8, 0)
  298.         for k,Gold in pairs(Bounties) do
  299.             pUnit:GossipMenuAddItem(0, "Set "..Gold.."g bounty on a player", BOUNTY_COST_START+k, 1, "Insert player name", Gold*10000)
  300.         end
  301.         pUnit:GossipSendMenu(pPlayer)
  302.     elseif(intid > BOUNTY_COST_START and intid <= BOUNTY_LIST_START) then
  303.         local cost = Bounties[intid-BOUNTY_COST_START]
  304.         local First, Other = Victim:match("(.)(.*)")
  305.         local Victim = First:upper()..Other:lower()
  306.         if(Victim == Pstr) then
  307.             pPlayer:SendAreaTriggerMessage("You can not set a bounty on yourself")
  308.             Select(pUnit, event, pPlayer, id, 3)
  309.             return
  310.         end
  311.         if(P[Victim] and #P[Victim] > 5) then
  312.             pPlayer:SendAreaTriggerMessage(Victim.." has too many bounties on him")
  313.             Select(pUnit, event, pPlayer, id, 3)
  314.             return
  315.         end
  316.         if(not B[Victim]) then
  317.             local plr = GetPlayer(Victim)
  318.             local playerLevel = pPlayer:GetPlayerLevel()
  319.             if(plr) then
  320.                 if(not CheckLevel or (playerLevel <= plr:GetPlayerLevel() + ReqLevelDiff and playerLevel >= plr:GetPlayerLevel() - ReqLevelDiff)) then
  321.                     SetBounty(Victim, Pstr, cost, pPlayer)
  322.                 else
  323.                     pPlayer:SendAreaTriggerMessage("You are too low or high level compared to the victim")
  324.                 end
  325.             else
  326.                 local Q = CharDBQuery('SELECT level FROM characters WHERE name = "'..Victim..'" LIMIT 1')
  327.                 if(Q) then
  328.                     local plrLevel = Q:GetColumn(0):GetULong()
  329.                     if(not CheckLevel or (playerLevel <= plrLevel + ReqLevelDiff and playerLevel >= plrLevel - ReqLevelDiff)) then
  330.                         SetBounty(Victim, Pstr, cost, pPlayer)
  331.                     else
  332.                         pPlayer:SendAreaTriggerMessage("You are too low or high level compared to the victim")
  333.                     end
  334.                 else
  335.                     pPlayer:SendAreaTriggerMessage("No players with that name found!")
  336.                 end
  337.             end
  338.         else
  339.             if(B[Victim][Pstr]) then
  340.                 pPlayer:SendAreaTriggerMessage("You have already set a bounty on the player!")
  341.             else
  342.                 SetBounty(Victim, Pstr, cost, pPlayer)
  343.             end
  344.         end
  345.         Select(pUnit, event, pPlayer, id, 3)
  346.     elseif(intid == 5) then
  347.         GetBountyMenu(pUnit, pPlayer, Pstr)
  348.     elseif(intid == 6) then
  349.         T[Pstr].page = T[Pstr].page+1
  350.         GetBountyMenu(pUnit, pPlayer, Pstr)
  351.     elseif(intid == 7) then
  352.         T[Pstr].page = T[Pstr].page-1
  353.         GetBountyMenu(pUnit, pPlayer, Pstr)
  354.     elseif(intid == 8) then
  355.         Hello(pUnit, event, pPlayer)
  356.     elseif(intid > BOUNTY_LIST_START) then
  357.         if(not T[Pstr]) then
  358.             Select(pUnit, event, pPlayer, id, 5)
  359.             return
  360.         end
  361.         local Victim = T[Pstr].list[intid-BOUNTY_LIST_START]
  362.         local plr = Game(Victim)
  363.         if(plr) then
  364.             local map,area = "Unknown","Unknown"
  365.             local ID = plr:GetMapId()
  366.             if(MAP[ID]) then
  367.                 map = MAP[ID]
  368.                 ID = plr:GetAreaId()
  369.                 if(AREA[ID]) then
  370.                     area = AREA[ID]
  371.                 end
  372.             end
  373.             pUnit:GossipCreateMenu(1, pPlayer, 0)
  374.             pUnit:GossipMenuAddItem(0, "Time: "..(math.ceil((C[Victim][2] - (GetGameTime()-C[Victim][1]))/60)).." minutes", intid, 0)
  375.             pUnit:GossipMenuAddItem(0, "Name: "..Victim, intid, 0)
  376.             pUnit:GossipMenuAddItem(0, "Race: "..RACE[plr:GetPlayerRace()], intid, 0)
  377.             pUnit:GossipMenuAddItem(0, "Class: "..plr:GetPlayerClass(), intid, 0)
  378.             pUnit:GossipMenuAddItem(0, "Level: "..plr:GetPlayerLevel(), intid, 0)
  379.             pUnit:GossipMenuAddItem(0, "Map: "..map, intid, 0)
  380.             pUnit:GossipMenuAddItem(0, "Area: "..area, intid, 0)
  381.             pUnit:GossipMenuAddItem(0, "Hunters: ", intid, 0)
  382.             for k,Hunter in pairs(P[Victim]) do
  383.                 pUnit:GossipMenuAddItem(0, " "..Hunter..": "..(B[Victim][Hunter]/10000).."g", intid, 0)
  384.             end
  385.             pUnit:GossipMenuAddItem(0, "Total bounty: "..(G[Victim]/10000).."g", intid, 0)
  386.             pUnit:GossipMenuAddItem(7, "Back..", 5, 0)
  387.             pUnit:GossipSendMenu(pPlayer)
  388.         else
  389.             Select(pUnit, event, pPlayer, id, 5)
  390.         end
  391.     end
  392. end
  393.  
  394. do
  395.     local BHc, BVc, BBc = 0,0,0
  396.     local BH = CharDBQuery("SELECT Hunter FROM b_hunters")
  397.     local BV = CharDBQuery("SELECT Victim, Time FROM b_victims")
  398.     local BB = CharDBQuery("SELECT Victim, Hunter, Gold, Refund FROM b_bounties")
  399.    
  400.     if(BH) then
  401.         BHc = BH:GetRowCount()
  402.     end
  403.     if(BV) then
  404.         BVc = BV:GetRowCount()
  405.     end
  406.     if(BB) then
  407.         BBc = BB:GetRowCount()
  408.     end
  409.    
  410.     for i = 1, BHc do
  411.         H[BH:GetColumn(0):GetString()] = {}
  412.         BH:NextRow()
  413.     end
  414.     for i = 1, BVc do
  415.         C[BV:GetColumn(0):GetString()] = {nil, BV:GetColumn(1):GetULong()}
  416.         BV:NextRow()
  417.     end
  418.     for i = 1, BBc do
  419.         local Victim, Hunter, Gold, Refund = BB:GetColumn(0):GetString(),BB:GetColumn(1):GetString(),BB:GetColumn(2):GetULong(),BB:GetColumn(3):GetLong()
  420.         if(Refund == 0) then
  421.             if(H[Hunter]) then
  422.                 if(not B[Victim]) then
  423.                     B[Victim] = {}
  424.                 end
  425.                 B[Victim][Hunter] = Gold
  426.                 H[Hunter][Victim] = Gold
  427.             else
  428.                 print("BB has a record, but H does not. Victim, Hunter", Victim, Hunter)
  429.             end
  430.         else
  431.             if(not R[Hunter]) then
  432.                 R[Hunter] = {}
  433.             end
  434.             R[Hunter][#R[Hunter]] = {Victim, Gold}
  435.         end
  436.         BB:NextRow()
  437.     end
  438.    
  439.     for Victim, tbl in pairs(B) do
  440.         if(not C[Victim]) then
  441.             print("B has a record, but C does not. Victim:", Victim)
  442.             B[Victim] = nil -- Delete bad record from runtime
  443.         end
  444.     end
  445.     for Victim, Time in pairs(C) do
  446.         if(B[Victim]) then
  447.             for Hunter, Gold in pairs(B[Victim]) do
  448.                 if(H[Hunter]) then
  449.                     if(not G[Victim]) then
  450.                         G[Victim] = 0
  451.                     end
  452.                     G[Victim] = G[Victim] + Gold
  453.                     if(not P[Victim]) then
  454.                         P[Victim] = {}
  455.                     end
  456.                     table.insert(P[Victim], Hunter)
  457.                 else
  458.                     print("B["..Victim.."] has a record, but H does not. Hunter:", Hunter)
  459.                     B[Victim][Hunter] = nil -- Delete bad record from runtime
  460.                 end
  461.             end
  462.         else
  463.             print("C has a record, but B does not. Victim:", Victim)
  464.             C[Victim] = nil -- Delete bad record from runtime
  465.         end
  466.     end
  467.    
  468.     for k,v in pairs(GetPlayersInWorld()) do
  469.         if(v) then
  470.             LogIn(19, v)
  471.         end
  472.     end
  473. end
  474.  
  475. RACE =
  476. {
  477.     [1] = "Human",                     --          1
  478.     [2] = "Orc",                       --          2
  479.     [3] = "Dwarf",                     --          4
  480.     [4] = "Night Elf",                 --          8
  481.     [5] = "Undead",                    --          16
  482.     [6] = "Tauren",                    --          32
  483.     [7] = "Gnome",                     --          64
  484.     [8] = "Troll",                     --          128
  485.     [9] = "Goblin",                    --          256
  486.     [10] = "Blood Elf",                --          512
  487.     [11] = "Draenei",                  --          1024
  488. }
  489.  
  490. MAP =
  491. {
  492.     [0] =   "Eastern Kingdoms",
  493.     [1] =   "Kalimdor",
  494.     [30] =  "Alterac Valley",
  495.     [33] =  "Shadowfang Keep",
  496.     [34] =  "Stormwind Stockade",
  497.     [35] =  "StormwindPrison",
  498.     [36] =  "Deadmines",
  499.     [37] =  "Azshara Crater",
  500.     [42] =  "Collin's Test",
  501.     [43] =  "Wailing Caverns",
  502.     [44] =  "Monastery",
  503.     [47] =  "Razorfen Kraul",
  504.     [48] =  "Blackfathom Deeps",
  505.     [70] =  "Uldaman",
  506.     [90] =  "Gnomeregan",
  507.     [109] = "Sunken Temple",
  508.     [129] = "Razorfen Downs",
  509.     [169] = "Emerald Dream",
  510.     [189] = "Scarlet Monastery",
  511.     [209] = "Zul'Farrak",
  512.     [229] = "Blackrock Spire",
  513.     [230] = "Blackrock Depths",
  514.     [249] = "Onyxia's Lair",
  515.     [269] = "Opening of the Dark Portal",
  516.     [289] = "Scholomance",
  517.     [309] = "Zul'Gurub",
  518.     [329] = "Stratholme",
  519.     [349] = "Maraudon",
  520.     [369] = "Deeprun Tram",
  521.     [389] = "Ragefire Chasm",
  522.     [409] = "Molten Core",
  523.     [429] = "Dire Maul",
  524.     [449] = "Alliance PVP Barracks",
  525.     [450] = "Horde PVP Barracks",
  526.     [451] = "Development Land",
  527.     [469] = "Blackwing Lair",
  528.     [489] = "Warsong Gulch",
  529.     [509] = "Ruins of Ahn'Qiraj",
  530.     [529] = "Arathi Basin",
  531.     [530] = "Outland",
  532.     [531] = "Ahn'Qiraj Temple",
  533.     [532] = "Karazhan",
  534.     [533] = "Naxxramas",
  535.     [534] = "The Battle for Mount Hyjal",
  536.     [540] = "Hellfire Citadel: The Shattered Halls",
  537.     [542] = "Hellfire Citadel: The Blood Furnace",
  538.     [543] = "Hellfire Citadel: Ramparts",
  539.     [544] = "Magtheridon's Lair",
  540.     [545] = "Coilfang: The Steamvault",
  541.     [546] = "Coilfang: The Underbog",
  542.     [547] = "Coilfang: The Slave Pens",
  543.     [548] = "Coilfang: Serpentshrine Cavern",
  544.     [550] = "Tempest Keep",
  545.     [552] = "Tempest Keep: The Arcatraz",
  546.     [553] = "Tempest Keep: The Botanica",
  547.     [554] = "Tempest Keep: The Mechanar",
  548.     [555] = "Auchindoun: Shadow Labyrinth",
  549.     [556] = "Auchindoun: Sethekk Halls",
  550.     [557] = "Auchindoun: Mana-Tombs",
  551.     [558] = "Auchindoun: Auchenai Crypts",
  552.     [559] = "Nagrand Arena",
  553.     [560] = "The Escape From Durnholde",
  554.     [562] = "Blade's Edge Arena",
  555.     [564] = "Black Temple",
  556.     [565] = "Gruul's Lair",
  557.     [566] = "Eye of the Storm",
  558.     [568] = "Zul'Aman",
  559.     [571] = "Northrend",
  560.     [572] = "Ruins of Lordaeron",
  561.     [573] = "ExteriorTest",
  562.     [574] = "Utgarde Keep",
  563.     [575] = "Utgarde Pinnacle",
  564.     [576] = "The Nexus",
  565.     [578] = "The Oculus",
  566.     [580] = "The Sunwell",
  567.     [582] = "Transport: Rut'theran to Auberdine",
  568.     [584] = "Transport: Menethil to Theramore",
  569.     [585] = "Magister's Terrace",
  570.     [586] = "Transport: Exodar to Auberdine",
  571.     [587] = "Transport: Feathermoon Ferry",
  572.     [588] = "Transport: Menethil to Auberdine",
  573.     [589] = "Transport: Orgrimmar to Grom'Gol",
  574.     [590] = "Transport: Grom'Gol to Undercity",
  575.     [591] = "Transport: Undercity to Orgrimmar",
  576.     [592] = "Transport: Borean Tundra Test",
  577.     [593] = "Transport: Booty Bay to Ratchet",
  578.     [594] = "Transport: Howling Fjord Sister Mercy (Quest)",
  579.     [595] = "The Culling of Stratholme",
  580.     [596] = "Transport: Naglfar",
  581.     [597] = "Craig Test",
  582.     [598] = "Sunwell Fix (Unused)",
  583.     [599] = "Halls of Stone",
  584.     [600] = "Drak'Tharon Keep",
  585.     [601] = "Azjol-Nerub",
  586.     [602] = "Halls of Lightning",
  587.     [603] = "Ulduar",
  588.     [604] = "Gundrak",
  589.     [605] = "Development Land (non-weighted textures)",
  590.     [606] = "QA and DVD",
  591.     [607] = "Strand of the Ancients",
  592.     [608] = "Violet Hold",
  593.     [609] = "Ebon Hold",
  594.     [610] = "Transport: Tirisfal to Vengeance Landing",
  595.     [612] = "Transport: Menethil to Valgarde",
  596.     [613] = "Transport: Orgrimmar to Warsong Hold",
  597.     [614] = "Transport: Stormwind to Valiance Keep",
  598.     [615] = "The Obsidian Sanctum",
  599.     [616] = "The Eye of Eternity",
  600.     [617] = "Dalaran Sewers",
  601.     [618] = "The Ring of Valor",
  602.     [619] = "Ahn'kahet: The Old Kingdom",
  603.     [620] = "Transport: Moa'ki to Unu'pe",
  604.     [621] = "Transport: Moa'ki to Kamagua",
  605.     [622] = "Transport: Orgrim's Hammer",
  606.     [623] = "Transport: The Skybreaker",
  607.     [624] = "Vault of Archavon",
  608.     [628] = "Isle of Conquest",
  609.     [631] = "Icecrown Citadel",
  610.     [632] = "The Forge of Souls",
  611.     [641] = "Transport: Alliance Airship BG",
  612.     [642] = "Transport: HordeAirshipBG",
  613.     [647] = "Transport: Orgrimmar to Thunder Bluff",
  614.     [649] = "Trial of the Crusader",
  615.     [650] = "Trial of the Champion",
  616.     [658] = "Pit of Saron",
  617.     [668] = "Halls of Reflection",
  618.     [672] = "Transport: The Skybreaker (Icecrown Citadel Raid)",
  619.     [673] = "Transport: Orgrim's Hammer (Icecrown Citadel Raid)",
  620.     [712] = "Transport: The Skybreaker (IC Dungeon)",
  621.     [713] = "Transport: Orgrim's Hammer (IC Dungeon)",
  622.     [718] = "Trasnport: The Mighty Wind (Icecrown Citadel Raid)",
  623.     [723] = "Stormwind",
  624.     [724] = "The Ruby Sanctum",
  625. }
  626.  
  627. AREA =
  628. {
  629.     [1] =   "Dun Morogh",
  630.     [2] =   "Longshore",
  631.     [3] =   "Badlands",
  632.     [4] =   "Blasted Lands",
  633.     [7] =   "Blackwater Cove",
  634.     [8] =   "Swamp of Sorrows",
  635.     [9] =   "Northshire Valley",
  636.     [10] =  "Duskwood",
  637.     [11] =  "Wetlands",
  638.     [12] =  "Elwynn Forest",
  639.     [13] =  "The World Tree",
  640.     [14] =  "Durotar",
  641.     [15] =  "Dustwallow Marsh",
  642.     [16] =  "Azshara",
  643.     [17] =  "The Barrens",
  644.     [18] =  "Crystal Lake",
  645.     [19] =  "Zul'Gurub",
  646.     [20] =  "Moonbrook",
  647.     [21] =  "Kul Tiras",
  648.     [22] =  "Programmer Isle",
  649.     [23] =  "Northshire River",
  650.     [24] =  "Northshire Abbey",
  651.     [25] =  "Blackrock Mountain",
  652.     [26] =  "Lighthouse",
  653.     [28] =  "Western Plaguelands",
  654.     [30] =  "Nine",
  655.     [32] =  "The Cemetary",
  656.     [33] =  "Stranglethorn Vale",
  657.     [34] =  "Echo Ridge Mine",
  658.     [35] =  "Booty Bay",
  659.     [36] =  "Alterac Mountains",
  660.     [37] =  "Lake Nazferiti",
  661.     [38] =  "Loch Modan",
  662.     [40] =  "Westfall",
  663.     [41] =  "Deadwind Pass",
  664.     [42] =  "Darkshire",
  665.     [43] =  "Wild Shore",
  666.     [44] =  "Redridge Mountains",
  667.     [45] =  "Arathi Highlands",
  668.     [46] =  "Burning Steppes",
  669.     [47] =  "The Hinterlands",
  670.     [49] =  "Dead Man's Hole",
  671.     [51] =  "Searing Gorge",
  672.     [53] =  "Thieves Camp",
  673.     [54] =  "Jasperlode Mine",
  674.     [55] =  "Valley of Heroes UNUSED",
  675.     [56] =  "Heroes' Vigil",
  676.     [57] =  "Fargodeep Mine",
  677.     [59] =  "Northshire Vineyards",
  678.     [60] =  "Forest's Edge",
  679.     [61] =  "Thunder Falls",
  680.     [62] =  "Brackwell Pumpkin Patch",
  681.     [63] =  "The Stonefield Farm",
  682.     [64] =  "The Maclure Vineyards",
  683.     [65] =  "Dragonblight",
  684.     [66] =  "Zul'Drak",
  685.     [67] =  "The Storm Peaks",
  686.     [68] =  "Lake Everstill",
  687.     [69] =  "Lakeshire",
  688.     [70] =  "Stonewatch",
  689.     [71] =  "Stonewatch Falls",
  690.     [72] =  "The Dark Portal",
  691.     [73] =  "The Tainted Scar",
  692.     [74] =  "Pool of Tears",
  693.     [75] =  "Stonard",
  694.     [76] =  "Fallow Sanctuary",
  695.     [77] =  "Anvilmar",
  696.     [80] =  "Stormwind Mountains",
  697.     [81] =  "Jeff NE Quadrant Changed",
  698.     [82] =  "Jeff NW Quadrant",
  699.     [83] =  "Jeff SE Quadrant",
  700.     [84] =  "Jeff SW Quadrant",
  701.     [85] =  "Tirisfal Glades",
  702.     [86] =  "Stone Cairn Lake",
  703.     [87] =  "Goldshire",
  704.     [88] =  "Eastvale Logging Camp",
  705.     [89] =  "Mirror Lake Orchard",
  706.     [91] =  "Tower of Azora",
  707.     [92] =  "Mirror Lake",
  708.     [93] =  "Vul'Gol Ogre Mound",
  709.     [94] =  "Raven Hill",
  710.     [95] =  "Redridge Canyons",
  711.     [96] =  "Tower of Ilgalar",
  712.     [97] =  "Alther's Mill",
  713.     [98] =  "Rethban Caverns",
  714.     [99] =  "Rebel Camp",
  715.     [100] = "Nesingwary's Expedition",
  716.     [101] = "Kurzen's Compound",
  717.     [102] = "Ruins of Zul'Kunda",
  718.     [103] = "Ruins of Zul'Mamwe",
  719.     [104] = "The Vile Reef",
  720.     [105] = "Mosh'Ogg Ogre Mound",
  721.     [106] = "The Stockpile",
  722.     [107] = "Saldean's Farm",
  723.     [108] = "Sentinel Hill",
  724.     [109] = "Furlbrow's Pumpkin Farm",
  725.     [111] = "Jangolode Mine",
  726.     [113] = "Gold Coast Quarry",
  727.     [115] = "Westfall Lighthouse",
  728.     [116] = "Misty Valley",
  729.     [117] = "Grom'gol Base Camp",
  730.     [118] = "Whelgar's Excavation Site",
  731.     [120] = "Westbrook Garrison",
  732.     [121] = "Tranquil Gardens Cemetery",
  733.     [122] = "Zuuldaia Ruins",
  734.     [123] = "Bal'lal Ruins",
  735.     [125] = "Kal'ai Ruins",
  736.     [126] = "Tkashi Ruins",
  737.     [127] = "Balia'mah Ruins",
  738.     [128] = "Ziata'jai Ruins",
  739.     [129] = "Mizjah Ruins",
  740.     [130] = "Silverpine Forest",
  741.     [131] = "Kharanos",
  742.     [132] = "Coldridge Valley",
  743.     [133] = "Gnomeregan",
  744.     [134] = "Gol'Bolar Quarry",
  745.     [135] = "Frostmane Hold",
  746.     [136] = "The Grizzled Den",
  747.     [137] = "Brewnall Village",
  748.     [138] = "Misty Pine Refuge",
  749.     [139] = "Eastern Plaguelands",
  750.     [141] = "Teldrassil",
  751.     [142] = "Ironband's Excavation Site",
  752.     [143] = "Mo'grosh Stronghold",
  753.     [144] = "Thelsamar",
  754.     [145] = "Algaz Gate",
  755.     [146] = "Stonewrought Dam",
  756.     [147] = "The Farstrider Lodge",
  757.     [148] = "Darkshore",
  758.     [149] = "Silver Stream Mine",
  759.     [150] = "Menethil Harbor",
  760.     [151] = "Designer Island",
  761.     [152] = "The Bulwark",
  762.     [153] = "Ruins of Lordaeron",
  763.     [154] = "Deathknell",
  764.     [155] = "Night Web's Hollow",
  765.     [156] = "Solliden Farmstead",
  766.     [157] = "Agamand Mills",
  767.     [158] = "Agamand Family Crypt",
  768.     [159] = "Brill",
  769.     [160] = "Whispering Gardens",
  770.     [161] = "Terrace of Repose",
  771.     [162] = "Brightwater Lake",
  772.     [163] = "Gunther's Retreat",
  773.     [164] = "Garren's Haunt",
  774.     [165] = "Balnir Farmstead",
  775.     [166] = "Cold Hearth Manor",
  776.     [167] = "Crusader Outpost",
  777.     [168] = "The North Coast",
  778.     [169] = "Whispering Shore",
  779.     [170] = "Lordamere Lake",
  780.     [172] = "Fenris Isle",
  781.     [173] = "Faol's Rest",
  782.     [186] = "Dolanaar",
  783.     [187] = "Darnassus UNUSED",
  784.     [188] = "Shadowglen",
  785.     [189] = "Steelgrill's Depot",
  786.     [190] = "Hearthglen",
  787.     [192] = "Northridge Lumber Camp",
  788.     [193] = "Ruins of Andorhal",
  789.     [195] = "School of Necromancy",
  790.     [196] = "Uther's Tomb",
  791.     [197] = "Sorrow Hill",
  792.     [198] = "The Weeping Cave",
  793.     [199] = "Felstone Field",
  794.     [200] = "Dalson's Tears",
  795.     [201] = "Gahrron's Withering",
  796.     [202] = "The Writhing Haunt",
  797.     [203] = "Mardenholde Keep",
  798.     [204] = "Pyrewood Village",
  799.     [205] = "Dun Modr",
  800.     [206] = "Utgarde Keep",
  801.     [207] = "The Great Sea",
  802.     [208] = "Unused Ironcladcove",
  803.     [209] = "Shadowfang Keep",
  804.     [210] = "Icecrown",
  805.     [211] = "Iceflow Lake",
  806.     [212] = "Helm's Bed Lake",
  807.     [213] = "Deep Elem Mine",
  808.     [214] = "The Great Sea",
  809.     [215] = "Mulgore",
  810.     [219] = "Alexston Farmstead",
  811.     [220] = "Red Cloud Mesa",
  812.     [221] = "Camp Narache",
  813.     [222] = "Bloodhoof Village",
  814.     [223] = "Stonebull Lake",
  815.     [224] = "Ravaged Caravan",
  816.     [225] = "Red Rocks",
  817.     [226] = "The Skittering Dark",
  818.     [227] = "Valgan's Field",
  819.     [228] = "The Sepulcher",
  820.     [229] = "Olsen's Farthing",
  821.     [230] = "The Greymane Wall",
  822.     [231] = "Beren's Peril",
  823.     [232] = "The Dawning Isles",
  824.     [233] = "Ambermill",
  825.     [235] = "Fenris Keep",
  826.     [236] = "Shadowfang Keep",
  827.     [237] = "The Decrepit Ferry",
  828.     [238] = "Malden's Orchard",
  829.     [239] = "The Ivar Patch",
  830.     [240] = "The Dead Field",
  831.     [241] = "The Rotting Orchard",
  832.     [242] = "Brightwood Grove",
  833.     [243] = "Forlorn Rowe",
  834.     [244] = "The Whipple Estate",
  835.     [245] = "The Yorgen Farmstead",
  836.     [246] = "The Cauldron",
  837.     [247] = "Grimesilt Dig Site",
  838.     [249] = "Dreadmaul Rock",
  839.     [250] = "Ruins of Thaurissan",
  840.     [251] = "Flame Crest",
  841.     [252] = "Blackrock Stronghold",
  842.     [253] = "The Pillar of Ash",
  843.     [254] = "Blackrock Mountain",
  844.     [255] = "Altar of Storms",
  845.     [256] = "Aldrassil",
  846.     [257] = "Shadowthread Cave",
  847.     [258] = "Fel Rock",
  848.     [259] = "Lake Al'Ameth",
  849.     [260] = "Starbreeze Village",
  850.     [261] = "Gnarlpine Hold",
  851.     [262] = "Ban'ethil Barrow Den",
  852.     [263] = "The Cleft",
  853.     [264] = "The Oracle Glade",
  854.     [265] = "Wellspring River",
  855.     [266] = "Wellspring Lake",
  856.     [267] = "Hillsbrad Foothills",
  857.     [268] = "Azshara Crater",
  858.     [269] = "Dun Algaz",
  859.     [271] = "Southshore",
  860.     [272] = "Tarren Mill",
  861.     [275] = "Durnholde Keep",
  862.     [276] = "UNUSED Stonewrought Pass",
  863.     [277] = "The Foothill Caverns",
  864.     [278] = "Lordamere Internment Camp",
  865.     [279] = "Dalaran Crater",
  866.     [280] = "Strahnbrad",
  867.     [281] = "Ruins of Alterac",
  868.     [282] = "Crushridge Hold",
  869.     [283] = "Slaughter Hollow",
  870.     [284] = "The Uplands",
  871.     [285] = "Southpoint Tower",
  872.     [286] = "Hillsbrad Fields",
  873.     [287] = "Hillsbrad",
  874.     [288] = "Azurelode Mine",
  875.     [289] = "Nethander Stead",
  876.     [290] = "Dun Garok",
  877.     [293] = "Thoradin's Wall",
  878.     [294] = "Eastern Strand",
  879.     [295] = "Western Strand",
  880.     [296] = "South Seas UNUSED",
  881.     [297] = "Jaguero Isle",
  882.     [298] = "Baradin Bay",
  883.     [299] = "Menethil Bay",
  884.     [300] = "Misty Reed Strand",
  885.     [301] = "The Savage Coast",
  886.     [302] = "The Crystal Shore",
  887.     [303] = "Shell Beach",
  888.     [305] = "North Tide's Run",
  889.     [306] = "South Tide's Run",
  890.     [307] = "The Overlook Cliffs",
  891.     [308] = "The Forbidding Sea",
  892.     [309] = "Ironbeard's Tomb",
  893.     [310] = "Crystalvein Mine",
  894.     [311] = "Ruins of Aboraz",
  895.     [312] = "Janeiro's Point",
  896.     [313] = "Northfold Manor",
  897.     [314] = "Go'Shek Farm",
  898.     [315] = "Dabyrie's Farmstead",
  899.     [316] = "Boulderfist Hall",
  900.     [317] = "Witherbark Village",
  901.     [318] = "Drywhisker Gorge",
  902.     [320] = "Refuge Pointe",
  903.     [321] = "Hammerfall",
  904.     [322] = "Blackwater Shipwrecks",
  905.     [323] = "O'Breen's Camp",
  906.     [324] = "Stromgarde Keep",
  907.     [325] = "The Tower of Arathor",
  908.     [326] = "The Sanctum",
  909.     [327] = "Faldir's Cove",
  910.     [328] = "The Drowned Reef",
  911.     [330] = "Thandol Span",
  912.     [331] = "Ashenvale",
  913.     [332] = "The Great Sea",
  914.     [333] = "Circle of East Binding",
  915.     [334] = "Circle of West Binding",
  916.     [335] = "Circle of Inner Binding",
  917.     [336] = "Circle of Outer Binding",
  918.     [337] = "Apocryphan's Rest",
  919.     [338] = "Angor Fortress",
  920.     [339] = "Lethlor Ravine",
  921.     [340] = "Kargath",
  922.     [341] = "Camp Kosh",
  923.     [342] = "Camp Boff",
  924.     [343] = "Camp Wurg",
  925.     [344] = "Camp Cagg",
  926.     [345] = "Agmond's End",
  927.     [346] = "Hammertoe's Digsite",
  928.     [347] = "Dustbelch Grotto",
  929.     [348] = "Aerie Peak",
  930.     [349] = "Wildhammer Keep",
  931.     [350] = "Quel'Danil Lodge",
  932.     [351] = "Skulk Rock",
  933.     [352] = "Zun'watha",
  934.     [353] = "Shadra'Alor",
  935.     [354] = "Jintha'Alor",
  936.     [355] = "The Altar of Zul",
  937.     [356] = "Seradane",
  938.     [357] = "Feralas",
  939.     [358] = "Brambleblade Ravine",
  940.     [359] = "Bael Modan",
  941.     [360] = "The Venture Co. Mine",
  942.     [361] = "Felwood",
  943.     [362] = "Razor Hill",
  944.     [363] = "Valley of Trials",
  945.     [364] = "The Den",
  946.     [365] = "Burning Blade Coven",
  947.     [366] = "Kolkar Crag",
  948.     [367] = "Sen'jin Village",
  949.     [368] = "Echo Isles",
  950.     [369] = "Thunder Ridge",
  951.     [370] = "Drygulch Ravine",
  952.     [371] = "Dustwind Cave",
  953.     [372] = "Tiragarde Keep",
  954.     [373] = "Scuttle Coast",
  955.     [374] = "Bladefist Bay",
  956.     [375] = "Deadeye Shore",
  957.     [377] = "Southfury River",
  958.     [378] = "Camp Taurajo",
  959.     [379] = "Far Watch Post",
  960.     [380] = "The Crossroads",
  961.     [381] = "Boulder Lode Mine",
  962.     [382] = "The Sludge Fen",
  963.     [383] = "The Dry Hills",
  964.     [384] = "Dreadmist Peak",
  965.     [385] = "Northwatch Hold",
  966.     [386] = "The Forgotten Pools",
  967.     [387] = "Lushwater Oasis",
  968.     [388] = "The Stagnant Oasis",
  969.     [390] = "Field of Giants",
  970.     [391] = "The Merchant Coast",
  971.     [392] = "Ratchet",
  972.     [393] = "Darkspear Strand",
  973.     [394] = "Grizzly Hills",
  974.     [395] = "Grizzlemaw",
  975.     [396] = "Winterhoof Water Well",
  976.     [397] = "Thunderhorn Water Well",
  977.     [398] = "Wildmane Water Well",
  978.     [399] = "Skyline Ridge",
  979.     [400] = "Thousand Needles",
  980.     [401] = "The Tidus Stair",
  981.     [403] = "Shady Rest Inn",
  982.     [404] = "Bael'dun Digsite",
  983.     [405] = "Desolace",
  984.     [406] = "Stonetalon Mountains",
  985.     [407] = "Orgrimmar UNUSED",
  986.     [408] = "Gillijim's Isle",
  987.     [409] = "Island of Doctor Lapidis",
  988.     [410] = "Razorwind Canyon",
  989.     [411] = "Bathran's Haunt",
  990.     [412] = "The Ruins of Ordil'Aran",
  991.     [413] = "Maestra's Post",
  992.     [414] = "The Zoram Strand",
  993.     [415] = "Astranaar",
  994.     [416] = "The Shrine of Aessina",
  995.     [417] = "Fire Scar Shrine",
  996.     [418] = "The Ruins of Stardust",
  997.     [419] = "The Howling Vale",
  998.     [420] = "Silverwind Refuge",
  999.     [421] = "Mystral Lake",
  1000.     [422] = "Fallen Sky Lake",
  1001.     [424] = "Iris Lake",
  1002.     [425] = "Moonwell",
  1003.     [426] = "Raynewood Retreat",
  1004.     [427] = "The Shady Nook",
  1005.     [428] = "Night Run",
  1006.     [429] = "Xavian",
  1007.     [430] = "Satyrnaar",
  1008.     [431] = "Splintertree Post",
  1009.     [432] = "The Dor'Danil Barrow Den",
  1010.     [433] = "Falfarren River",
  1011.     [434] = "Felfire Hill",
  1012.     [435] = "Demon Fall Canyon",
  1013.     [436] = "Demon Fall Ridge",
  1014.     [437] = "Warsong Lumber Camp",
  1015.     [438] = "Bough Shadow",
  1016.     [439] = "The Shimmering Flats",
  1017.     [440] = "Tanaris",
  1018.     [441] = "Lake Falathim",
  1019.     [442] = "Auberdine",
  1020.     [443] = "Ruins of Mathystra",
  1021.     [444] = "Tower of Althalaxx",
  1022.     [445] = "Cliffspring Falls",
  1023.     [446] = "Bashal'Aran",
  1024.     [447] = "Ameth'Aran",
  1025.     [448] = "Grove of the Ancients",
  1026.     [449] = "The Master's Glaive",
  1027.     [450] = "Remtravel's Excavation",
  1028.     [452] = "Mist's Edge",
  1029.     [453] = "The Long Wash",
  1030.     [454] = "Wildbend River",
  1031.     [455] = "Blackwood Den",
  1032.     [456] = "Cliffspring River",
  1033.     [457] = "The Veiled Sea",
  1034.     [458] = "Gold Road",
  1035.     [459] = "Scarlet Watch Post",
  1036.     [460] = "Sun Rock Retreat",
  1037.     [461] = "Windshear Crag",
  1038.     [463] = "Cragpool Lake",
  1039.     [464] = "Mirkfallon Lake",
  1040.     [465] = "The Charred Vale",
  1041.     [466] = "Valley of the Bloodfuries",
  1042.     [467] = "Stonetalon Peak",
  1043.     [468] = "The Talon Den",
  1044.     [469] = "Greatwood Vale",
  1045.     [470] = "Thunder Bluff UNUSED",
  1046.     [471] = "Brave Wind Mesa",
  1047.     [472] = "Fire Stone Mesa",
  1048.     [473] = "Mantle Rock",
  1049.     [474] = "Hunter Rise UNUSED",
  1050.     [475] = "Spirit RiseUNUSED",
  1051.     [476] = "Elder RiseUNUSED",
  1052.     [477] = "Ruins of Jubuwal",
  1053.     [478] = "Pools of Arlithrien",
  1054.     [479] = "The Rustmaul Dig Site",
  1055.     [480] = "Camp E'thok",
  1056.     [481] = "Splithoof Crag",
  1057.     [482] = "Highperch",
  1058.     [483] = "The Screeching Canyon",
  1059.     [484] = "Freewind Post",
  1060.     [485] = "The Great Lift",
  1061.     [486] = "Galak Hold",
  1062.     [487] = "Roguefeather Den",
  1063.     [488] = "The Weathered Nook",
  1064.     [489] = "Thalanaar",
  1065.     [490] = "Un'Goro Crater",
  1066.     [491] = "Razorfen Kraul",
  1067.     [492] = "Raven Hill Cemetery",
  1068.     [493] = "Moonglade",
  1069.     [495] = "Howling Fjord",
  1070.     [496] = "Brackenwall Village",
  1071.     [497] = "Swamplight Manor",
  1072.     [498] = "Bloodfen Burrow",
  1073.     [499] = "Darkmist Cavern",
  1074.     [500] = "Moggle Point",
  1075.     [501] = "Beezil's Wreck",
  1076.     [502] = "Witch Hill",
  1077.     [503] = "Sentry Point",
  1078.     [504] = "North Point Tower",
  1079.     [505] = "West Point Tower",
  1080.     [506] = "Lost Point",
  1081.     [507] = "Bluefen",
  1082.     [508] = "Stonemaul Ruins",
  1083.     [509] = "The Den of Flame",
  1084.     [510] = "The Dragonmurk",
  1085.     [511] = "Wyrmbog",
  1086.     [512] = "Blackhoof Village",
  1087.     [513] = "Theramore Isle",
  1088.     [514] = "Foothold Citadel",
  1089.     [515] = "Ironclad Prison",
  1090.     [516] = "Dustwallow Bay",
  1091.     [517] = "Tidefury Cove",
  1092.     [518] = "Dreadmurk Shore",
  1093.     [536] = "Addle's Stead",
  1094.     [537] = "Fire Plume Ridge",
  1095.     [538] = "Lakkari Tar Pits",
  1096.     [539] = "Terror Run",
  1097.     [540] = "The Slithering Scar",
  1098.     [541] = "Marshal's Refuge",
  1099.     [542] = "Fungal Rock",
  1100.     [543] = "Golakka Hot Springs",
  1101.     [556] = "The Loch",
  1102.     [576] = "Beggar's Haunt",
  1103.     [596] = "Kodo Graveyard",
  1104.     [597] = "Ghost Walker Post",
  1105.     [598] = "Sar'theris Strand",
  1106.     [599] = "Thunder Axe Fortress",
  1107.     [600] = "Bolgan's Hole",
  1108.     [602] = "Mannoroc Coven",
  1109.     [603] = "Sargeron",
  1110.     [604] = "Magram Village",
  1111.     [606] = "Gelkis Village",
  1112.     [607] = "Valley of Spears",
  1113.     [608] = "Nijel's Point",
  1114.     [609] = "Kolkar Village",
  1115.     [616] = "Hyjal",
  1116.     [618] = "Winterspring",
  1117.     [636] = "Blackwolf River",
  1118.     [637] = "Kodo Rock",
  1119.     [638] = "Hidden Path",
  1120.     [639] = "Spirit Rock",
  1121.     [640] = "Shrine of the Dormant Flame",
  1122.     [656] = "Lake Elune'ara",
  1123.     [657] = "The Harborage",
  1124.     [676] = "Outland",
  1125.     [696] = "Craftsmen's Terrace UNUSED",
  1126.     [697] = "Tradesmen's Terrace UNUSED",
  1127.     [698] = "The Temple Gardens UNUSED",
  1128.     [699] = "Temple of Elune UNUSED",
  1129.     [700] = "Cenarion Enclave UNUSED",
  1130.     [701] = "Warrior's Terrace UNUSED",
  1131.     [702] = "Rut'theran Village",
  1132.     [716] = "Ironband's Compound",
  1133.     [717] = "The Stockade",
  1134.     [718] = "Wailing Caverns",
  1135.     [719] = "Blackfathom Deeps",
  1136.     [720] = "Fray Island",
  1137.     [721] = "Gnomeregan",
  1138.     [722] = "Razorfen Downs",
  1139.     [736] = "Ban'ethil Hollow",
  1140.     [796] = "Scarlet Monastery",
  1141.     [797] = "Jerod's Landing",
  1142.     [798] = "Ridgepoint Tower",
  1143.     [799] = "The Darkened Bank",
  1144.     [800] = "Coldridge Pass",
  1145.     [801] = "Chill Breeze Valley",
  1146.     [802] = "Shimmer Ridge",
  1147.     [803] = "Amberstill Ranch",
  1148.     [804] = "The Tundrid Hills",
  1149.     [805] = "South Gate Pass",
  1150.     [806] = "South Gate Outpost",
  1151.     [807] = "North Gate Pass",
  1152.     [808] = "North Gate Outpost",
  1153.     [809] = "Gates of Ironforge",
  1154.     [810] = "Stillwater Pond",
  1155.     [811] = "Nightmare Vale",
  1156.     [812] = "Venomweb Vale",
  1157.     [813] = "The Bulwark",
  1158.     [814] = "Southfury River",
  1159.     [815] = "Southfury River",
  1160.     [816] = "Razormane Grounds",
  1161.     [817] = "Skull Rock",
  1162.     [818] = "Palemane Rock",
  1163.     [819] = "Windfury Ridge",
  1164.     [820] = "The Golden Plains",
  1165.     [821] = "The Rolling Plains",
  1166.     [836] = "Dun Algaz",
  1167.     [837] = "Dun Algaz",
  1168.     [838] = "North Gate Pass",
  1169.     [839] = "South Gate Pass",
  1170.     [856] = "Twilight Grove",
  1171.     [876] = "GM Island",
  1172.     [877] = "Delete ME",
  1173.     [878] = "Southfury River",
  1174.     [879] = "Southfury River",
  1175.     [880] = "Thandol Span",
  1176.     [881] = "Thandol Span",
  1177.     [896] = "Purgation Isle",
  1178.     [916] = "The Jansen Stead",
  1179.     [917] = "The Dead Acre",
  1180.     [918] = "The Molsen Farm",
  1181.     [919] = "Stendel's Pond",
  1182.     [920] = "The Dagger Hills",
  1183.     [921] = "Demont's Place",
  1184.     [922] = "The Dust Plains",
  1185.     [923] = "Stonesplinter Valley",
  1186.     [924] = "Valley of Kings",
  1187.     [925] = "Algaz Station",
  1188.     [926] = "Bucklebree Farm",
  1189.     [927] = "The Shining Strand",
  1190.     [928] = "North Tide's Hollow",
  1191.     [936] = "Grizzlepaw Ridge",
  1192.     [956] = "The Verdant Fields",
  1193.     [976] = "Gadgetzan",
  1194.     [977] = "Steamwheedle Port",
  1195.     [978] = "Zul'Farrak",
  1196.     [979] = "Sandsorrow Watch",
  1197.     [980] = "Thistleshrub Valley",
  1198.     [981] = "The Gaping Chasm",
  1199.     [982] = "The Noxious Lair",
  1200.     [983] = "Dunemaul Compound",
  1201.     [984] = "Eastmoon Ruins",
  1202.     [985] = "Waterspring Field",
  1203.     [986] = "Zalashji's Den",
  1204.     [987] = "Land's End Beach",
  1205.     [988] = "Wavestrider Beach",
  1206.     [989] = "Uldum",
  1207.     [990] = "Valley of the Watchers",
  1208.     [991] = "Gunstan's Post",
  1209.     [992] = "Southmoon Ruins",
  1210.     [996] = "Render's Camp",
  1211.     [997] = "Render's Valley",
  1212.     [998] = "Render's Rock",
  1213.     [999] = "Stonewatch Tower",
  1214.     [1000] =    "Galardell Valley",
  1215.     [1001] =    "Lakeridge Highway",
  1216.     [1002] =    "Three Corners",
  1217.     [1016] =    "Direforge Hill",
  1218.     [1017] =    "Raptor Ridge",
  1219.     [1018] =    "Black Channel Marsh",
  1220.     [1019] =    "The Green Belt",
  1221.     [1020] =    "Mosshide Fen",
  1222.     [1021] =    "Thelgen Rock",
  1223.     [1022] =    "Bluegill Marsh",
  1224.     [1023] =    "Saltspray Glen",
  1225.     [1024] =    "Sundown Marsh",
  1226.     [1025] =    "The Green Belt",
  1227.     [1036] =    "Angerfang Encampment",
  1228.     [1037] =    "Grim Batol",
  1229.     [1038] =    "Dragonmaw Gates",
  1230.     [1039] =    "The Lost Fleet",
  1231.     [1056] =    "Darrow Hill",
  1232.     [1057] =    "Thoradin's Wall",
  1233.     [1076] =    "Webwinder Path",
  1234.     [1097] =    "The Hushed Bank",
  1235.     [1098] =    "Manor Mistmantle",
  1236.     [1099] =    "Camp Mojache",
  1237.     [1100] =    "Grimtotem Compound",
  1238.     [1101] =    "The Writhing Deep",
  1239.     [1102] =    "Wildwind Lake",
  1240.     [1103] =    "Gordunni Outpost",
  1241.     [1104] =    "Mok'Gordun",
  1242.     [1105] =    "Feral Scar Vale",
  1243.     [1106] =    "Frayfeather Highlands",
  1244.     [1107] =    "Idlewind Lake",
  1245.     [1108] =    "The Forgotten Coast",
  1246.     [1109] =    "East Pillar",
  1247.     [1110] =    "West Pillar",
  1248.     [1111] =    "Dream Bough",
  1249.     [1112] =    "Jademir Lake",
  1250.     [1113] =    "Oneiros",
  1251.     [1114] =    "Ruins of Ravenwind",
  1252.     [1115] =    "Rage Scar Hold",
  1253.     [1116] =    "Feathermoon Stronghold",
  1254.     [1117] =    "Ruins of Solarsal",
  1255.     [1118] =    "Lower Wilds UNUSED",
  1256.     [1119] =    "The Twin Colossals",
  1257.     [1120] =    "Sardor Isle",
  1258.     [1121] =    "Isle of Dread",
  1259.     [1136] =    "High Wilderness",
  1260.     [1137] =    "Lower Wilds",
  1261.     [1156] =    "Southern Barrens",
  1262.     [1157] =    "Southern Gold Road",
  1263.     [1176] =    "Zul'Farrak",
  1264.     [1196] =    "Utgarde Pinnacle",
  1265.     [1216] =    "Timbermaw Hold",
  1266.     [1217] =    "Vanndir Encampment",
  1267.     [1218] =    "TESTAzshara",
  1268.     [1219] =    "Legash Encampment",
  1269.     [1220] =    "Thalassian Base Camp",
  1270.     [1221] =    "Ruins of Eldarath",
  1271.     [1222] =    "Hetaera's Clutch",
  1272.     [1223] =    "Temple of Zin-Malor",
  1273.     [1224] =    "Bear's Head",
  1274.     [1225] =    "Ursolan",
  1275.     [1226] =    "Temple of Arkkoran",
  1276.     [1227] =    "Bay of Storms",
  1277.     [1228] =    "The Shattered Strand",
  1278.     [1229] =    "Tower of Eldara",
  1279.     [1230] =    "Jagged Reef",
  1280.     [1231] =    "Southridge Beach",
  1281.     [1232] =    "Ravencrest Monument",
  1282.     [1233] =    "Forlorn Ridge",
  1283.     [1234] =    "Lake Mennar",
  1284.     [1235] =    "Shadowsong Shrine",
  1285.     [1236] =    "Haldarr Encampment",
  1286.     [1237] =    "Valormok",
  1287.     [1256] =    "The Ruined Reaches",
  1288.     [1276] =    "The Talondeep Path",
  1289.     [1277] =    "The Talondeep Path",
  1290.     [1296] =    "Rocktusk Farm",
  1291.     [1297] =    "Jaggedswine Farm",
  1292.     [1316] =    "Razorfen Downs",
  1293.     [1336] =    "Lost Rigger Cove",
  1294.     [1337] =    "Uldaman",
  1295.     [1338] =    "Lordamere Lake",
  1296.     [1339] =    "Lordamere Lake",
  1297.     [1357] =    "Gallows' Corner",
  1298.     [1377] =    "Silithus",
  1299.     [1397] =    "Emerald Forest",
  1300.     [1417] =    "Sunken Temple",
  1301.     [1437] =    "Dreadmaul Hold",
  1302.     [1438] =    "Nethergarde Keep",
  1303.     [1439] =    "Dreadmaul Post",
  1304.     [1440] =    "Serpent's Coil",
  1305.     [1441] =    "Altar of Storms",
  1306.     [1442] =    "Firewatch Ridge",
  1307.     [1443] =    "The Slag Pit",
  1308.     [1444] =    "The Sea of Cinders",
  1309.     [1445] =    "Blackrock Mountain",
  1310.     [1446] =    "Thorium Point",
  1311.     [1457] =    "Garrison Armory",
  1312.     [1477] =    "The Temple of Atal'Hakkar",
  1313.     [1497] =    "Undercity",
  1314.     [1517] =    "Uldaman",
  1315.     [1518] =    "Not Used Deadmines",
  1316.     [1519] =    "Stormwind City",
  1317.     [1537] =    "Ironforge",
  1318.     [1557] =    "Splithoof Hold",
  1319.     [1577] =    "The Cape of Stranglethorn",
  1320.     [1578] =    "Southern Savage Coast",
  1321.     [1579] =    "Unused The Deadmines 002",
  1322.     [1580] =    "Unused Ironclad Cove 003",
  1323.     [1581] =    "The Deadmines",
  1324.     [1582] =    "Ironclad Cove",
  1325.     [1583] =    "Blackrock Spire",
  1326.     [1584] =    "Blackrock Depths",
  1327.     [1597] =    "Raptor Grounds UNUSED",
  1328.     [1598] =    "Grol'dom Farm UNUSED",
  1329.     [1599] =    "Mor'shan Base Camp",
  1330.     [1600] =    "Honor's Stand UNUSED",
  1331.     [1601] =    "Blackthorn Ridge UNUSED",
  1332.     [1602] =    "Bramblescar UNUSED",
  1333.     [1603] =    "Agama'gor UNUSED",
  1334.     [1617] =    "Valley of Heroes",
  1335.     [1637] =    "Orgrimmar",
  1336.     [1638] =    "Thunder Bluff",
  1337.     [1639] =    "Elder Rise",
  1338.     [1640] =    "Spirit Rise",
  1339.     [1641] =    "Hunter Rise",
  1340.     [1657] =    "Darnassus",
  1341.     [1658] =    "Cenarion Enclave",
  1342.     [1659] =    "Craftsmen's Terrace",
  1343.     [1660] =    "Warrior's Terrace",
  1344.     [1661] =    "The Temple Gardens",
  1345.     [1662] =    "Tradesmen's Terrace",
  1346.     [1677] =    "Gavin's Naze",
  1347.     [1678] =    "Sofera's Naze",
  1348.     [1679] =    "Corrahn's Dagger",
  1349.     [1680] =    "The Headland",
  1350.     [1681] =    "Misty Shore",
  1351.     [1682] =    "Dandred's Fold",
  1352.     [1683] =    "Growless Cave",
  1353.     [1684] =    "Chillwind Point",
  1354.     [1697] =    "Raptor Grounds",
  1355.     [1698] =    "Bramblescar",
  1356.     [1699] =    "Thorn Hill",
  1357.     [1700] =    "Agama'gor",
  1358.     [1701] =    "Blackthorn Ridge",
  1359.     [1702] =    "Honor's Stand",
  1360.     [1703] =    "The Mor'shan Rampart",
  1361.     [1704] =    "Grol'dom Farm",
  1362.     [1717] =    "Razorfen Kraul",
  1363.     [1718] =    "The Great Lift",
  1364.     [1737] =    "Mistvale Valley",
  1365.     [1738] =    "Nek'mani Wellspring",
  1366.     [1739] =    "Bloodsail Compound",
  1367.     [1740] =    "Venture Co. Base Camp",
  1368.     [1741] =    "Gurubashi Arena",
  1369.     [1742] =    "Spirit Den",
  1370.     [1757] =    "The Crimson Veil",
  1371.     [1758] =    "The Riptide",
  1372.     [1759] =    "The Damsel's Luck",
  1373.     [1760] =    "Venture Co. Operations Center",
  1374.     [1761] =    "Deadwood Village",
  1375.     [1762] =    "Felpaw Village",
  1376.     [1763] =    "Jaedenar",
  1377.     [1764] =    "Bloodvenom River",
  1378.     [1765] =    "Bloodvenom Falls",
  1379.     [1766] =    "Shatter Scar Vale",
  1380.     [1767] =    "Irontree Woods",
  1381.     [1768] =    "Irontree Cavern",
  1382.     [1769] =    "Timbermaw Hold",
  1383.     [1770] =    "Shadow Hold",
  1384.     [1771] =    "Shrine of the Deceiver",
  1385.     [1777] =    "Itharius's Cave",
  1386.     [1778] =    "Sorrowmurk",
  1387.     [1779] =    "Draenil'dur Village",
  1388.     [1780] =    "Splinterspear Junction",
  1389.     [1797] =    "Stagalbog",
  1390.     [1798] =    "The Shifting Mire",
  1391.     [1817] =    "Stagalbog Cave",
  1392.     [1837] =    "Witherbark Caverns",
  1393.     [1857] =    "Thoradin's Wall",
  1394.     [1858] =    "Boulder'gor",
  1395.     [1877] =    "Valley of Fangs",
  1396.     [1878] =    "The Dustbowl",
  1397.     [1879] =    "Mirage Flats",
  1398.     [1880] =    "Featherbeard's Hovel",
  1399.     [1881] =    "Shindigger's Camp",
  1400.     [1882] =    "Plaguemist Ravine",
  1401.     [1883] =    "Valorwind Lake",
  1402.     [1884] =    "Agol'watha",
  1403.     [1885] =    "Hiri'watha",
  1404.     [1886] =    "The Creeping Ruin",
  1405.     [1887] =    "Bogen's Ledge",
  1406.     [1897] =    "The Maker's Terrace",
  1407.     [1898] =    "Dustwind Gulch",
  1408.     [1917] =    "Shaol'watha",
  1409.     [1937] =    "Noonshade Ruins",
  1410.     [1938] =    "Broken Pillar",
  1411.     [1939] =    "Abyssal Sands",
  1412.     [1940] =    "Southbreak Shore",
  1413.     [1941] =    "Caverns of Time",
  1414.     [1942] =    "The Marshlands",
  1415.     [1943] =    "Ironstone Plateau",
  1416.     [1957] =    "Blackchar Cave",
  1417.     [1958] =    "Tanner Camp",
  1418.     [1959] =    "Dustfire Valley",
  1419.     [1977] =    "Zul'Gurub",
  1420.     [1978] =    "Misty Reed Post",
  1421.     [1997] =    "Bloodvenom Post",
  1422.     [1998] =    "Talonbranch Glade",
  1423.     [2017] =    "Stratholme",
  1424.     [2037] =    "Quel'thalas",
  1425.     [2057] =    "Scholomance",
  1426.     [2077] =    "Twilight Vale",
  1427.     [2078] =    "Twilight Shore",
  1428.     [2079] =    "Alcaz Island",
  1429.     [2097] =    "Darkcloud Pinnacle",
  1430.     [2098] =    "Dawning Wood Catacombs",
  1431.     [2099] =    "Stonewatch Keep",
  1432.     [2100] =    "Maraudon",
  1433.     [2101] =    "Stoutlager Inn",
  1434.     [2102] =    "Thunderbrew Distillery",
  1435.     [2103] =    "Menethil Keep",
  1436.     [2104] =    "Deepwater Tavern",
  1437.     [2117] =    "Shadow Grave",
  1438.     [2118] =    "Brill Town Hall",
  1439.     [2119] =    "Gallows' End Tavern",
  1440.     [2137] =    "The Pools of VisionUNUSED",
  1441.     [2138] =    "Dreadmist Den",
  1442.     [2157] =    "Bael'dun Keep",
  1443.     [2158] =    "Emberstrife's Den",
  1444.     [2159] =    "Onyxia's Lair",
  1445.     [2160] =    "Windshear Mine",
  1446.     [2161] =    "Roland's Doom",
  1447.     [2177] =    "Battle Ring",
  1448.     [2197] =    "The Pools of Vision",
  1449.     [2198] =    "Shadowbreak Ravine",
  1450.     [2217] =    "Broken Spear Village",
  1451.     [2237] =    "Whitereach Post",
  1452.     [2238] =    "Gornia",
  1453.     [2239] =    "Zane's Eye Crater",
  1454.     [2240] =    "Mirage Raceway",
  1455.     [2241] =    "Frostsaber Rock",
  1456.     [2242] =    "The Hidden Grove",
  1457.     [2243] =    "Timbermaw Post",
  1458.     [2244] =    "Winterfall Village",
  1459.     [2245] =    "Mazthoril",
  1460.     [2246] =    "Frostfire Hot Springs",
  1461.     [2247] =    "Ice Thistle Hills",
  1462.     [2248] =    "Dun Mandarr",
  1463.     [2249] =    "Frostwhisper Gorge",
  1464.     [2250] =    "Owl Wing Thicket",
  1465.     [2251] =    "Lake Kel'Theril",
  1466.     [2252] =    "The Ruins of Kel'Theril",
  1467.     [2253] =    "Starfall Village",
  1468.     [2254] =    "Ban'Thallow Barrow Den",
  1469.     [2255] =    "Everlook",
  1470.     [2256] =    "Darkwhisper Gorge",
  1471.     [2257] =    "Deeprun Tram",
  1472.     [2258] =    "The Fungal Vale",
  1473.     [2259] =    "UNUSEDThe Marris Stead",
  1474.     [2260] =    "The Marris Stead",
  1475.     [2261] =    "The Undercroft",
  1476.     [2262] =    "Darrowshire",
  1477.     [2263] =    "Crown Guard Tower",
  1478.     [2264] =    "Corin's Crossing",
  1479.     [2265] =    "Scarlet Base Camp",
  1480.     [2266] =    "Tyr's Hand",
  1481.     [2267] =    "The Scarlet Basilica",
  1482.     [2268] =    "Light's Hope Chapel",
  1483.     [2269] =    "Browman Mill",
  1484.     [2270] =    "The Noxious Glade",
  1485.     [2271] =    "Eastwall Tower",
  1486.     [2272] =    "Northdale",
  1487.     [2273] =    "Zul'Mashar",
  1488.     [2274] =    "Mazra'Alor",
  1489.     [2275] =    "Northpass Tower",
  1490.     [2276] =    "Quel'Lithien Lodge",
  1491.     [2277] =    "Plaguewood",
  1492.     [2278] =    "Scourgehold",
  1493.     [2279] =    "Stratholme",
  1494.     [2280] =    "DO NOT USE",
  1495.     [2297] =    "Darrowmere Lake",
  1496.     [2298] =    "Caer Darrow",
  1497.     [2299] =    "Darrowmere Lake",
  1498.     [2300] =    "Caverns of Time",
  1499.     [2301] =    "Thistlefur Village",
  1500.     [2302] =    "The Quagmire",
  1501.     [2303] =    "Windbreak Canyon",
  1502.     [2317] =    "South Seas",
  1503.     [2318] =    "The Great Sea",
  1504.     [2319] =    "The Great Sea",
  1505.     [2320] =    "The Great Sea",
  1506.     [2321] =    "The Great Sea",
  1507.     [2322] =    "The Veiled Sea",
  1508.     [2323] =    "The Veiled Sea",
  1509.     [2324] =    "The Veiled Sea",
  1510.     [2325] =    "The Veiled Sea",
  1511.     [2326] =    "The Veiled Sea",
  1512.     [2337] =    "Razor Hill Barracks",
  1513.     [2338] =    "South Seas",
  1514.     [2339] =    "The Great Sea",
  1515.     [2357] =    "Bloodtooth Camp",
  1516.     [2358] =    "Forest Song",
  1517.     [2359] =    "Greenpaw Village",
  1518.     [2360] =    "Silverwing Outpost",
  1519.     [2361] =    "Nighthaven",
  1520.     [2362] =    "Shrine of Remulos",
  1521.     [2363] =    "Stormrage Barrow Dens",
  1522.     [2364] =    "The Great Sea",
  1523.     [2365] =    "The Great Sea",
  1524.     [2366] =    "The Black Morass",
  1525.     [2367] =    "Old Hillsbrad Foothills",
  1526.     [2368] =    "Tarren Mill",
  1527.     [2369] =    "Southshore",
  1528.     [2370] =    "Durnholde Keep",
  1529.     [2371] =    "Dun Garok",
  1530.     [2372] =    "Hillsbrad Fields",
  1531.     [2373] =    "Eastern Strand",
  1532.     [2374] =    "Nethander Stead",
  1533.     [2375] =    "Darrow Hill",
  1534.     [2376] =    "Southpoint Tower",
  1535.     [2377] =    "Thoradin's Wall",
  1536.     [2378] =    "Western Strand",
  1537.     [2379] =    "Azurelode Mine",
  1538.     [2397] =    "The Great Sea",
  1539.     [2398] =    "The Great Sea",
  1540.     [2399] =    "The Great Sea",
  1541.     [2400] =    "The Forbidding Sea",
  1542.     [2401] =    "The Forbidding Sea",
  1543.     [2402] =    "The Forbidding Sea",
  1544.     [2403] =    "The Forbidding Sea",
  1545.     [2404] =    "Tethris Aran",
  1546.     [2405] =    "Ethel Rethor",
  1547.     [2406] =    "Ranazjar Isle",
  1548.     [2407] =    "Kormek's Hut",
  1549.     [2408] =    "Shadowprey Village",
  1550.     [2417] =    "Blackrock Pass",
  1551.     [2418] =    "Morgan's Vigil",
  1552.     [2419] =    "Slither Rock",
  1553.     [2420] =    "Terror Wing Path",
  1554.     [2421] =    "Draco'dar",
  1555.     [2437] =    "Ragefire Chasm",
  1556.     [2457] =    "Nightsong Woods",
  1557.     [2477] =    "The Veiled Sea",
  1558.     [2478] =    "Morlos'Aran",
  1559.     [2479] =    "Emerald Sanctuary",
  1560.     [2480] =    "Jadefire Glen",
  1561.     [2481] =    "Ruins of Constellas",
  1562.     [2497] =    "Bitter Reaches",
  1563.     [2517] =    "Rise of the Defiler",
  1564.     [2518] =    "Lariss Pavilion",
  1565.     [2519] =    "Woodpaw Hills",
  1566.     [2520] =    "Woodpaw Den",
  1567.     [2521] =    "Verdantis River",
  1568.     [2522] =    "Ruins of Isildien",
  1569.     [2537] =    "Grimtotem Post",
  1570.     [2538] =    "Camp Aparaje",
  1571.     [2539] =    "Malaka'jin",
  1572.     [2540] =    "Boulderslide Ravine",
  1573.     [2541] =    "Sishir Canyon",
  1574.     [2557] =    "Dire Maul",
  1575.     [2558] =    "Deadwind Ravine",
  1576.     [2559] =    "Diamondhead River",
  1577.     [2560] =    "Ariden's Camp",
  1578.     [2561] =    "The Vice",
  1579.     [2562] =    "Karazhan",
  1580.     [2563] =    "Morgan's Plot",
  1581.     [2577] =    "Dire Maul",
  1582.     [2597] =    "Alterac Valley",
  1583.     [2617] =    "Scrabblescrew's Camp",
  1584.     [2618] =    "Jadefire Run",
  1585.     [2619] =    "Thondroril River",
  1586.     [2620] =    "Thondroril River",
  1587.     [2621] =    "Lake Mereldar",
  1588.     [2622] =    "Pestilent Scar",
  1589.     [2623] =    "The Infectis Scar",
  1590.     [2624] =    "Blackwood Lake",
  1591.     [2625] =    "Eastwall Gate",
  1592.     [2626] =    "Terrorweb Tunnel",
  1593.     [2627] =    "Terrordale",
  1594.     [2637] =    "Kargathia Keep",
  1595.     [2657] =    "Valley of Bones",
  1596.     [2677] =    "Blackwing Lair",
  1597.     [2697] =    "Deadman's Crossing",
  1598.     [2717] =    "Molten Core",
  1599.     [2737] =    "The Scarab Wall",
  1600.     [2738] =    "Southwind Village",
  1601.     [2739] =    "Twilight Base Camp",
  1602.     [2740] =    "The Crystal Vale",
  1603.     [2741] =    "The Scarab Dais",
  1604.     [2742] =    "Hive'Ashi",
  1605.     [2743] =    "Hive'Zora",
  1606.     [2744] =    "Hive'Regal",
  1607.     [2757] =    "Shrine of the Fallen Warrior",
  1608.     [2777] =    "UNUSED Alterac Valley",
  1609.     [2797] =    "Blackfathom Deeps",
  1610.     [2817] =    "Crystalsong Forest",
  1611.     [2837] =    "The Master's Cellar",
  1612.     [2838] =    "Stonewrought Pass",
  1613.     [2839] =    "Alterac Valley",
  1614.     [2857] =    "The Rumble Cage",
  1615.     [2877] =    "Chunk Test",
  1616.     [2897] =    "Zoram'gar Outpost",
  1617.     [2917] =    "Hall of Legends",
  1618.     [2918] =    "Champions' Hall",
  1619.     [2937] =    "Grosh'gok Compound",
  1620.     [2938] =    "Sleeping Gorge",
  1621.     [2957] =    "Irondeep Mine",
  1622.     [2958] =    "Stonehearth Outpost",
  1623.     [2959] =    "Dun Baldar",
  1624.     [2960] =    "Icewing Pass",
  1625.     [2961] =    "Frostwolf Village",
  1626.     [2962] =    "Tower Point",
  1627.     [2963] =    "Coldtooth Mine",
  1628.     [2964] =    "Winterax Hold",
  1629.     [2977] =    "Iceblood Garrison",
  1630.     [2978] =    "Frostwolf Keep",
  1631.     [2979] =    "Tor'kren Farm",
  1632.     [3017] =    "Frost Dagger Pass",
  1633.     [3037] =    "Ironstone Camp",
  1634.     [3038] =    "Weazel's Crater",
  1635.     [3039] =    "Tahonda Ruins",
  1636.     [3057] =    "Field of Strife",
  1637.     [3058] =    "Icewing Cavern",
  1638.     [3077] =    "Valor's Rest",
  1639.     [3097] =    "The Swarming Pillar",
  1640.     [3098] =    "Twilight Post",
  1641.     [3099] =    "Twilight Outpost",
  1642.     [3100] =    "Ravaged Twilight Camp",
  1643.     [3117] =    "Shalzaru's Lair",
  1644.     [3137] =    "Talrendis Point",
  1645.     [3138] =    "Rethress Sanctum",
  1646.     [3139] =    "Moon Horror Den",
  1647.     [3140] =    "Scalebeard's Cave",
  1648.     [3157] =    "Boulderslide Cavern",
  1649.     [3177] =    "Warsong Labor Camp",
  1650.     [3197] =    "Chillwind Camp",
  1651.     [3217] =    "The Maul",
  1652.     [3237] =    "The Maul UNUSED",
  1653.     [3257] =    "Bones of Grakkarond",
  1654.     [3277] =    "Warsong Gulch",
  1655.     [3297] =    "Frostwolf Graveyard",
  1656.     [3298] =    "Frostwolf Pass",
  1657.     [3299] =    "Dun Baldar Pass",
  1658.     [3300] =    "Iceblood Graveyard",
  1659.     [3301] =    "Snowfall Graveyard",
  1660.     [3302] =    "Stonehearth Graveyard",
  1661.     [3303] =    "Stormpike Graveyard",
  1662.     [3304] =    "Icewing Bunker",
  1663.     [3305] =    "Stonehearth Bunker",
  1664.     [3306] =    "Wildpaw Ridge",
  1665.     [3317] =    "Revantusk Village",
  1666.     [3318] =    "Rock of Durotan",
  1667.     [3319] =    "Silverwing Grove",
  1668.     [3320] =    "Warsong Lumber Mill",
  1669.     [3321] =    "Silverwing Hold",
  1670.     [3337] =    "Wildpaw Cavern",
  1671.     [3338] =    "The Veiled Cleft",
  1672.     [3357] =    "Yojamba Isle",
  1673.     [3358] =    "Arathi Basin",
  1674.     [3377] =    "The Coil",
  1675.     [3378] =    "Altar of Hir'eek",
  1676.     [3379] =    "Shadra'zaar",
  1677.     [3380] =    "Hakkari Grounds",
  1678.     [3381] =    "Naze of Shirvallah",
  1679.     [3382] =    "Temple of Bethekk",
  1680.     [3383] =    "The Bloodfire Pit",
  1681.     [3384] =    "Altar of the Blood God",
  1682.     [3397] =    "Zanza's Rise",
  1683.     [3398] =    "Edge of Madness",
  1684.     [3417] =    "Trollbane Hall",
  1685.     [3418] =    "Defiler's Den",
  1686.     [3419] =    "Pagle's Pointe",
  1687.     [3420] =    "Farm",
  1688.     [3421] =    "Blacksmith",
  1689.     [3422] =    "Lumber Mill",
  1690.     [3423] =    "Gold Mine",
  1691.     [3424] =    "Stables",
  1692.     [3425] =    "Cenarion Hold",
  1693.     [3426] =    "Staghelm Point",
  1694.     [3427] =    "Bronzebeard Encampment",
  1695.     [3428] =    "Ahn'Qiraj",
  1696.     [3429] =    "Ruins of Ahn'Qiraj",
  1697.     [3430] =    "Eversong Woods",
  1698.     [3431] =    "Sunstrider Isle",
  1699.     [3432] =    "Shrine of Dath'Remar",
  1700.     [3433] =    "Ghostlands",
  1701.     [3434] =    "Scarab Terrace",
  1702.     [3435] =    "General's Terrace",
  1703.     [3436] =    "The Reservoir",
  1704.     [3437] =    "The Hatchery",
  1705.     [3438] =    "The Comb",
  1706.     [3439] =    "Watchers' Terrace",
  1707.     [3440] =    "Scarab Terrace",
  1708.     [3441] =    "General's Terrace",
  1709.     [3442] =    "The Reservoir",
  1710.     [3443] =    "The Hatchery",
  1711.     [3444] =    "The Comb",
  1712.     [3445] =    "Watchers' Terrace",
  1713.     [3446] =    "Twilight's Run",
  1714.     [3447] =    "Ortell's Hideout",
  1715.     [3448] =    "Scarab Terrace",
  1716.     [3449] =    "General's Terrace",
  1717.     [3450] =    "The Reservoir",
  1718.     [3451] =    "The Hatchery",
  1719.     [3452] =    "The Comb",
  1720.     [3453] =    "Watchers' Terrace",
  1721.     [3454] =    "Ruins of Ahn'Qiraj",
  1722.     [3455] =    "The North Sea",
  1723.     [3456] =    "Naxxramas",
  1724.     [3457] =    "Karazhan",
  1725.     [3459] =    "City",
  1726.     [3460] =    "Golden Strand",
  1727.     [3461] =    "Sunsail Anchorage",
  1728.     [3462] =    "Fairbreeze Village",
  1729.     [3463] =    "Magisters Gate",
  1730.     [3464] =    "Farstrider Retreat",
  1731.     [3465] =    "North Sanctum",
  1732.     [3466] =    "West Sanctum",
  1733.     [3467] =    "East Sanctum",
  1734.     [3468] =    "Saltheril's Haven",
  1735.     [3469] =    "Thuron's Livery",
  1736.     [3470] =    "Stillwhisper Pond",
  1737.     [3471] =    "The Living Wood",
  1738.     [3472] =    "Azurebreeze Coast",
  1739.     [3473] =    "Lake Elrendar",
  1740.     [3474] =    "The Scorched Grove",
  1741.     [3475] =    "Zeb'Watha",
  1742.     [3476] =    "Tor'Watha",
  1743.     [3477] =    "Azjol-Nerub",
  1744.     [3478] =    "Gates of Ahn'Qiraj",
  1745.     [3479] =    "The Veiled Sea",
  1746.     [3480] =    "Duskwither Grounds",
  1747.     [3481] =    "Duskwither Spire",
  1748.     [3482] =    "The Dead Scar",
  1749.     [3483] =    "Hellfire Peninsula",
  1750.     [3484] =    "The Sunspire",
  1751.     [3485] =    "Falthrien Academy",
  1752.     [3486] =    "Ravenholdt Manor",
  1753.     [3487] =    "Silvermoon City",
  1754.     [3488] =    "Tranquillien",
  1755.     [3489] =    "Suncrown Village",
  1756.     [3490] =    "Goldenmist Village",
  1757.     [3491] =    "Windrunner Village",
  1758.     [3492] =    "Windrunner Spire",
  1759.     [3493] =    "Sanctum of the Sun",
  1760.     [3494] =    "Sanctum of the Moon",
  1761.     [3495] =    "Dawnstar Spire",
  1762.     [3496] =    "Farstrider Enclave",
  1763.     [3497] =    "An'daroth",
  1764.     [3498] =    "An'telas",
  1765.     [3499] =    "An'owyn",
  1766.     [3500] =    "Deatholme",
  1767.     [3501] =    "Bleeding Ziggurat",
  1768.     [3502] =    "Howling Ziggurat",
  1769.     [3503] =    "Shalandis Isle",
  1770.     [3504] =    "Toryl Estate",
  1771.     [3505] =    "Underlight Mines",
  1772.     [3506] =    "Andilien Estate",
  1773.     [3507] =    "Hatchet Hills",
  1774.     [3508] =    "Amani Pass",
  1775.     [3509] =    "Sungraze Peak",
  1776.     [3510] =    "Amani Catacombs",
  1777.     [3511] =    "Tower of the Damned",
  1778.     [3512] =    "Zeb'Sora",
  1779.     [3513] =    "Lake Elrendar",
  1780.     [3514] =    "The Dead Scar",
  1781.     [3515] =    "Elrendar River",
  1782.     [3516] =    "Zeb'Tela",
  1783.     [3517] =    "Zeb'Nowa",
  1784.     [3518] =    "Nagrand",
  1785.     [3519] =    "Terokkar Forest",
  1786.     [3520] =    "Shadowmoon Valley",
  1787.     [3521] =    "Zangarmarsh",
  1788.     [3522] =    "Blade's Edge Mountains",
  1789.     [3523] =    "Netherstorm",
  1790.     [3524] =    "Azuremyst Isle",
  1791.     [3525] =    "Bloodmyst Isle",
  1792.     [3526] =    "Ammen Vale",
  1793.     [3527] =    "Crash Site",
  1794.     [3528] =    "Silverline Lake",
  1795.     [3529] =    "Nestlewood Thicket",
  1796.     [3530] =    "Shadow Ridge",
  1797.     [3531] =    "Skulking Row",
  1798.     [3532] =    "Dawning Lane",
  1799.     [3533] =    "Ruins of Silvermoon",
  1800.     [3534] =    "Feth's Way",
  1801.     [3535] =    "Hellfire Citadel",
  1802.     [3536] =    "Thrallmar",
  1803.     [3537] =    "Borean Tundra",
  1804.     [3538] =    "Honor Hold",
  1805.     [3539] =    "The Stair of Destiny",
  1806.     [3540] =    "Twisting Nether",
  1807.     [3541] =    "Forge Camp: Mageddon",
  1808.     [3542] =    "The Path of Glory",
  1809.     [3543] =    "The Great Fissure",
  1810.     [3544] =    "Plain of Shards",
  1811.     [3545] =    "Hellfire Citadel",
  1812.     [3546] =    "Expedition Armory",
  1813.     [3547] =    "Throne of Kil'jaeden",
  1814.     [3548] =    "Forge Camp: Rage",
  1815.     [3549] =    "Invasion Point: Annihilator",
  1816.     [3550] =    "Borune Ruins",
  1817.     [3551] =    "Ruins of Sha'naar",
  1818.     [3552] =    "Temple of Telhamat",
  1819.     [3553] =    "Pools of Aggonar",
  1820.     [3554] =    "Falcon Watch",
  1821.     [3555] =    "Mag'har Post",
  1822.     [3556] =    "Den of Haal'esh",
  1823.     [3557] =    "The Exodar",
  1824.     [3558] =    "Elrendar Falls",
  1825.     [3559] =    "Nestlewood Hills",
  1826.     [3560] =    "Ammen Fields",
  1827.     [3561] =    "The Sacred Grove",
  1828.     [3562] =    "Hellfire Ramparts",
  1829.     [3563] =    "Hellfire Citadel",
  1830.     [3564] =    "Emberglade",
  1831.     [3565] =    "Cenarion Refuge",
  1832.     [3566] =    "Moonwing Den",
  1833.     [3567] =    "Pod Cluster",
  1834.     [3568] =    "Pod Wreckage",
  1835.     [3569] =    "Tides' Hollow",
  1836.     [3570] =    "Wrathscale Point",
  1837.     [3571] =    "Bristlelimb Village",
  1838.     [3572] =    "Stillpine Hold",
  1839.     [3573] =    "Odesyus' Landing",
  1840.     [3574] =    "Valaar's Berth",
  1841.     [3575] =    "Silting Shore",
  1842.     [3576] =    "Azure Watch",
  1843.     [3577] =    "Geezle's Camp",
  1844.     [3578] =    "Menagerie Wreckage",
  1845.     [3579] =    "Traitor's Cove",
  1846.     [3580] =    "Wildwind Peak",
  1847.     [3581] =    "Wildwind Path",
  1848.     [3582] =    "Zeth'Gor",
  1849.     [3583] =    "Beryl Coast",
  1850.     [3584] =    "Blood Watch",
  1851.     [3585] =    "Bladewood",
  1852.     [3586] =    "The Vector Coil",
  1853.     [3587] =    "The Warp Piston",
  1854.     [3588] =    "The Cryo-Core",
  1855.     [3589] =    "The Crimson Reach",
  1856.     [3590] =    "Wrathscale Lair",
  1857.     [3591] =    "Ruins of Loreth'Aran",
  1858.     [3592] =    "Nazzivian",
  1859.     [3593] =    "Axxarien",
  1860.     [3594] =    "Blacksilt Shore",
  1861.     [3595] =    "The Foul Pool",
  1862.     [3596] =    "The Hidden Reef",
  1863.     [3597] =    "Amberweb Pass",
  1864.     [3598] =    "Wyrmscar Island",
  1865.     [3599] =    "Talon Stand",
  1866.     [3600] =    "Bristlelimb Enclave",
  1867.     [3601] =    "Ragefeather Ridge",
  1868.     [3602] =    "Kessel's Crossing",
  1869.     [3603] =    "Tel'athion's Camp",
  1870.     [3604] =    "The Bloodcursed Reef",
  1871.     [3605] =    "Hyjal Past",
  1872.     [3606] =    "Hyjal Summit",
  1873.     [3607] =    "Serpentshrine Cavern",
  1874.     [3608] =    "Vindicator's Rest",
  1875.     [3609] =    "Unused3",
  1876.     [3610] =    "Burning Blade Ruins",
  1877.     [3611] =    "Clan Watch",
  1878.     [3612] =    "Bloodcurse Isle",
  1879.     [3613] =    "Garadar",
  1880.     [3614] =    "Skysong Lake",
  1881.     [3615] =    "Throne of the Elements",
  1882.     [3616] =    "Laughing Skull Ruins",
  1883.     [3617] =    "Warmaul Hill",
  1884.     [3618] =    "Gruul's Lair",
  1885.     [3619] =    "Auren Ridge",
  1886.     [3620] =    "Auren Falls",
  1887.     [3621] =    "Lake Sunspring",
  1888.     [3622] =    "Sunspring Post",
  1889.     [3623] =    "Aeris Landing",
  1890.     [3624] =    "Forge Camp: Fear",
  1891.     [3625] =    "Forge Camp: Hate",
  1892.     [3626] =    "Telaar",
  1893.     [3627] =    "Northwind Cleft",
  1894.     [3628] =    "Halaa",
  1895.     [3629] =    "Southwind Cleft",
  1896.     [3630] =    "Oshu'gun",
  1897.     [3631] =    "Spirit Fields",
  1898.     [3632] =    "Shamanar",
  1899.     [3633] =    "Ancestral Grounds",
  1900.     [3634] =    "Windyreed Village",
  1901.     [3635] =    "Unused2",
  1902.     [3636] =    "Elemental Plateau",
  1903.     [3637] =    "Kil'sorrow Fortress",
  1904.     [3638] =    "The Ring of Trials",
  1905.     [3639] =    "Silvermyst Isle",
  1906.     [3640] =    "Daggerfen Village",
  1907.     [3641] =    "Umbrafen Village",
  1908.     [3642] =    "Feralfen Village",
  1909.     [3643] =    "Bloodscale Enclave",
  1910.     [3644] =    "Telredor",
  1911.     [3645] =    "Zabra'jin",
  1912.     [3646] =    "Quagg Ridge",
  1913.     [3647] =    "The Spawning Glen",
  1914.     [3648] =    "The Dead Mire",
  1915.     [3649] =    "Sporeggar",
  1916.     [3650] =    "Ango'rosh Grounds",
  1917.     [3651] =    "Ango'rosh Stronghold",
  1918.     [3652] =    "Funggor Cavern",
  1919.     [3653] =    "Serpent Lake",
  1920.     [3654] =    "The Drain",
  1921.     [3655] =    "Umbrafen Lake",
  1922.     [3656] =    "Marshlight Lake",
  1923.     [3657] =    "Portal Clearing",
  1924.     [3658] =    "Sporewind Lake",
  1925.     [3659] =    "The Lagoon",
  1926.     [3660] =    "Blades' Run",
  1927.     [3661] =    "Blade Tooth Canyon",
  1928.     [3662] =    "Commons Hall",
  1929.     [3663] =    "Derelict Manor",
  1930.     [3664] =    "Huntress of the Sun",
  1931.     [3665] =    "Falconwing Square",
  1932.     [3666] =    "Halaani Basin",
  1933.     [3667] =    "Hewn Bog",
  1934.     [3668] =    "Boha'mu Ruins",
  1935.     [3669] =    "The Stadium",
  1936.     [3670] =    "The Overlook",
  1937.     [3671] =    "Broken Hill",
  1938.     [3672] =    "Mag'hari Procession",
  1939.     [3673] =    "Nesingwary Safari",
  1940.     [3674] =    "Cenarion Thicket",
  1941.     [3675] =    "Tuurem",
  1942.     [3676] =    "Veil Shienor",
  1943.     [3677] =    "Veil Skith",
  1944.     [3678] =    "Veil Shalas",
  1945.     [3679] =    "Skettis",
  1946.     [3680] =    "Blackwind Valley",
  1947.     [3681] =    "Firewing Point",
  1948.     [3682] =    "Grangol'var Village",
  1949.     [3683] =    "Stonebreaker Hold",
  1950.     [3684] =    "Allerian Stronghold",
  1951.     [3685] =    "Bonechewer Ruins",
  1952.     [3686] =    "Veil Lithic",
  1953.     [3687] =    "Olembas",
  1954.     [3688] =    "Auchindoun",
  1955.     [3689] =    "Veil Reskk",
  1956.     [3690] =    "Blackwind Lake",
  1957.     [3691] =    "Lake Ere'Noru",
  1958.     [3692] =    "Lake Jorune",
  1959.     [3693] =    "Skethyl Mountains",
  1960.     [3694] =    "Misty Ridge",
  1961.     [3695] =    "The Broken Hills",
  1962.     [3696] =    "The Barrier Hills",
  1963.     [3697] =    "The Bone Wastes",
  1964.     [3698] =    "Nagrand Arena",
  1965.     [3699] =    "Laughing Skull Courtyard",
  1966.     [3700] =    "The Ring of Blood",
  1967.     [3701] =    "Arena Floor",
  1968.     [3702] =    "Blade's Edge Arena",
  1969.     [3703] =    "Shattrath City",
  1970.     [3704] =    "The Shepherd's Gate",
  1971.     [3705] =    "Telaari Basin",
  1972.     [3706] =    "The Dark Portal",
  1973.     [3707] =    "Alliance Base",
  1974.     [3708] =    "Horde Encampment",
  1975.     [3709] =    "Night Elf Village",
  1976.     [3710] =    "Nordrassil",
  1977.     [3711] =    "Sholazar Basin",
  1978.     [3712] =    "Area 52",
  1979.     [3713] =    "The Blood Furnace",
  1980.     [3714] =    "The Shattered Halls",
  1981.     [3715] =    "The Steamvault",
  1982.     [3716] =    "The Underbog",
  1983.     [3717] =    "The Slave Pens",
  1984.     [3718] =    "Swamprat Post",
  1985.     [3719] =    "Bleeding Hollow Ruins",
  1986.     [3720] =    "Twin Spire Ruins",
  1987.     [3721] =    "The Crumbling Waste",
  1988.     [3722] =    "Manaforge Ara",
  1989.     [3723] =    "Arklon Ruins",
  1990.     [3724] =    "Cosmowrench",
  1991.     [3725] =    "Ruins of Enkaat",
  1992.     [3726] =    "Manaforge B'naar",
  1993.     [3727] =    "The Scrap Field",
  1994.     [3728] =    "The Vortex Fields",
  1995.     [3729] =    "The Heap",
  1996.     [3730] =    "Manaforge Coruu",
  1997.     [3731] =    "The Tempest Rift",
  1998.     [3732] =    "Kirin'Var Village",
  1999.     [3733] =    "The Violet Tower",
  2000.     [3734] =    "Manaforge Duro",
  2001.     [3735] =    "Voidwind Plateau",
  2002.     [3736] =    "Manaforge Ultris",
  2003.     [3737] =    "Celestial Ridge",
  2004.     [3738] =    "The Stormspire",
  2005.     [3739] =    "Forge Base: Oblivion",
  2006.     [3740] =    "Forge Base: Gehenna",
  2007.     [3741] =    "Ruins of Farahlon",
  2008.     [3742] =    "Socrethar's Seat",
  2009.     [3743] =    "Legion Hold",
  2010.     [3744] =    "Shadowmoon Village",
  2011.     [3745] =    "Wildhammer Stronghold",
  2012.     [3746] =    "The Hand of Gul'dan",
  2013.     [3747] =    "The Fel Pits",
  2014.     [3748] =    "The Deathforge",
  2015.     [3749] =    "Coilskar Cistern",
  2016.     [3750] =    "Coilskar Point",
  2017.     [3751] =    "Sunfire Point",
  2018.     [3752] =    "Illidari Point",
  2019.     [3753] =    "Ruins of Baa'ri",
  2020.     [3754] =    "Altar of Sha'tar",
  2021.     [3755] =    "The Stair of Doom",
  2022.     [3756] =    "Ruins of Karabor",
  2023.     [3757] =    "Ata'mal Terrace",
  2024.     [3758] =    "Netherwing Fields",
  2025.     [3759] =    "Netherwing Ledge",
  2026.     [3760] =    "The Barrier Hills",
  2027.     [3761] =    "The High Path",
  2028.     [3762] =    "Windyreed Pass",
  2029.     [3763] =    "Zangar Ridge",
  2030.     [3764] =    "The Twilight Ridge",
  2031.     [3765] =    "Razorthorn Trail",
  2032.     [3766] =    "Orebor Harborage",
  2033.     [3767] =    "Blades' Run",
  2034.     [3768] =    "Jagged Ridge",
  2035.     [3769] =    "Thunderlord Stronghold",
  2036.     [3770] =    "Blade Tooth Canyon",
  2037.     [3771] =    "The Living Grove",
  2038.     [3772] =    "Sylvanaar",
  2039.     [3773] =    "Bladespire Hold",
  2040.     [3774] =    "Gruul's Lair",
  2041.     [3775] =    "Circle of Blood",
  2042.     [3776] =    "Bloodmaul Outpost",
  2043.     [3777] =    "Bloodmaul Camp",
  2044.     [3778] =    "Draenethyst Mine",
  2045.     [3779] =    "Trogma's Claim",
  2046.     [3780] =    "Blackwing Coven",
  2047.     [3781] =    "Grishnath",
  2048.     [3782] =    "Veil Lashh",
  2049.     [3783] =    "Veil Vekh",
  2050.     [3784] =    "Forge Camp: Terror",
  2051.     [3785] =    "Forge Camp: Wrath",
  2052.     [3786] =    "Ogri'la",
  2053.     [3787] =    "Forge Camp: Anger",
  2054.     [3788] =    "The Low Path",
  2055.     [3789] =    "Shadow Labyrinth",
  2056.     [3790] =    "Auchenai Crypts",
  2057.     [3791] =    "Sethekk Halls",
  2058.     [3792] =    "Mana-Tombs",
  2059.     [3793] =    "Felspark Ravine",
  2060.     [3794] =    "Valley of Bones",
  2061.     [3795] =    "Sha'naari Wastes",
  2062.     [3796] =    "The Warp Fields",
  2063.     [3797] =    "Fallen Sky Ridge",
  2064.     [3798] =    "Haal'eshi Gorge",
  2065.     [3799] =    "Stonewall Canyon",
  2066.     [3800] =    "Thornfang Hill",
  2067.     [3801] =    "Mag'har Grounds",
  2068.     [3802] =    "Void Ridge",
  2069.     [3803] =    "The Abyssal Shelf",
  2070.     [3804] =    "The Legion Front",
  2071.     [3805] =    "Zul'Aman",
  2072.     [3806] =    "Supply Caravan",
  2073.     [3807] =    "Reaver's Fall",
  2074.     [3808] =    "Cenarion Post",
  2075.     [3809] =    "Southern Rampart",
  2076.     [3810] =    "Northern Rampart",
  2077.     [3811] =    "Gor'gaz Outpost",
  2078.     [3812] =    "Spinebreaker Post",
  2079.     [3813] =    "The Path of Anguish",
  2080.     [3814] =    "East Supply Caravan",
  2081.     [3815] =    "Expedition Point",
  2082.     [3816] =    "Zeppelin Crash",
  2083.     [3817] =    "Testing",
  2084.     [3818] =    "Bloodscale Grounds",
  2085.     [3819] =    "Darkcrest Enclave",
  2086.     [3820] =    "Eye of the Storm",
  2087.     [3821] =    "Warden's Cage",
  2088.     [3822] =    "Eclipse Point",
  2089.     [3823] =    "Isle of Tribulations",
  2090.     [3824] =    "Bloodmaul Ravine",
  2091.     [3825] =    "Dragons' End",
  2092.     [3826] =    "Daggermaw Canyon",
  2093.     [3827] =    "Vekhaar Stand",
  2094.     [3828] =    "Ruuan Weald",
  2095.     [3829] =    "Veil Ruuan",
  2096.     [3830] =    "Raven's Wood",
  2097.     [3831] =    "Death's Door",
  2098.     [3832] =    "Vortex Pinnacle",
  2099.     [3833] =    "Razor Ridge",
  2100.     [3834] =    "Ridge of Madness",
  2101.     [3835] =    "Dustquill Ravine",
  2102.     [3836] =    "Magtheridon's Lair",
  2103.     [3837] =    "Sunfury Hold",
  2104.     [3838] =    "Spinebreaker Mountains",
  2105.     [3839] =    "Abandoned Armory",
  2106.     [3840] =    "The Black Temple",
  2107.     [3841] =    "Darkcrest Shore",
  2108.     [3842] =    "Tempest Keep",
  2109.     [3844] =    "Mok'Nathal Village",
  2110.     [3845] =    "Tempest Keep",
  2111.     [3846] =    "The Arcatraz",
  2112.     [3847] =    "The Botanica",
  2113.     [3848] =    "The Arcatraz",
  2114.     [3849] =    "The Mechanar",
  2115.     [3850] =    "Netherstone",
  2116.     [3851] =    "Midrealm Post",
  2117.     [3852] =    "Tuluman's Landing",
  2118.     [3854] =    "Protectorate Watch Post",
  2119.     [3855] =    "Circle of Blood Arena",
  2120.     [3856] =    "Elrendar Crossing",
  2121.     [3857] =    "Ammen Ford",
  2122.     [3858] =    "Razorthorn Shelf",
  2123.     [3859] =    "Silmyr Lake",
  2124.     [3860] =    "Raastok Glade",
  2125.     [3861] =    "Thalassian Pass",
  2126.     [3862] =    "Churning Gulch",
  2127.     [3863] =    "Broken Wilds",
  2128.     [3864] =    "Bash'ir Landing",
  2129.     [3865] =    "Crystal Spine",
  2130.     [3866] =    "Skald",
  2131.     [3867] =    "Bladed Gulch",
  2132.     [3868] =    "Gyro-Plank Bridge",
  2133.     [3869] =    "Mage Tower",
  2134.     [3870] =    "Blood Elf Tower",
  2135.     [3871] =    "Draenei Ruins",
  2136.     [3872] =    "Fel Reaver Ruins",
  2137.     [3873] =    "The Proving Grounds",
  2138.     [3874] =    "Eco-Dome Farfield",
  2139.     [3875] =    "Eco-Dome Skyperch",
  2140.     [3876] =    "Eco-Dome Sutheron",
  2141.     [3877] =    "Eco-Dome Midrealm",
  2142.     [3878] =    "Ethereum Staging Grounds",
  2143.     [3879] =    "Chapel Yard",
  2144.     [3880] =    "Access Shaft Zeon",
  2145.     [3881] =    "Trelleum Mine",
  2146.     [3882] =    "Invasion Point: Destroyer",
  2147.     [3883] =    "Camp of Boom",
  2148.     [3884] =    "Spinebreaker Pass",
  2149.     [3885] =    "Netherweb Ridge",
  2150.     [3886] =    "Derelict Caravan",
  2151.     [3887] =    "Refugee Caravan",
  2152.     [3888] =    "Shadow Tomb",
  2153.     [3889] =    "Veil Rhaze",
  2154.     [3890] =    "Tomb of Lights",
  2155.     [3891] =    "Carrion Hill",
  2156.     [3892] =    "Writhing Mound",
  2157.     [3893] =    "Ring of Observance",
  2158.     [3894] =    "Auchenai Grounds",
  2159.     [3895] =    "Cenarion Watchpost",
  2160.     [3896] =    "Aldor Rise",
  2161.     [3897] =    "Terrace of Light",
  2162.     [3898] =    "Scryer's Tier",
  2163.     [3899] =    "Lower City",
  2164.     [3900] =    "Invasion Point: Overlord",
  2165.     [3901] =    "Allerian Post",
  2166.     [3902] =    "Stonebreaker Camp",
  2167.     [3903] =    "Boulder'mok",
  2168.     [3904] =    "Cursed Hollow",
  2169.     [3905] =    "Coilfang Reservoir",
  2170.     [3906] =    "The Bloodwash",
  2171.     [3907] =    "Veridian Point",
  2172.     [3908] =    "Middenvale",
  2173.     [3909] =    "The Lost Fold",
  2174.     [3910] =    "Mystwood",
  2175.     [3911] =    "Tranquil Shore",
  2176.     [3912] =    "Goldenbough Pass",
  2177.     [3913] =    "Runestone Falithas",
  2178.     [3914] =    "Runestone Shan'dor",
  2179.     [3915] =    "Fairbridge Strand",
  2180.     [3916] =    "Moongraze Woods",
  2181.     [3917] =    "Auchindoun",
  2182.     [3918] =    "Toshley's Station",
  2183.     [3919] =    "Singing Ridge",
  2184.     [3920] =    "Shatter Point",
  2185.     [3921] =    "Arklonis Ridge",
  2186.     [3922] =    "Bladespire Outpost",
  2187.     [3923] =    "Gruul's Lair",
  2188.     [3924] =    "Northmaul Tower",
  2189.     [3925] =    "Southmaul Tower",
  2190.     [3926] =    "Shattered Plains",
  2191.     [3927] =    "Oronok's Farm",
  2192.     [3928] =    "The Altar of Damnation",
  2193.     [3929] =    "The Path of Conquest",
  2194.     [3930] =    "Eclipsion Fields",
  2195.     [3931] =    "Bladespire Grounds",
  2196.     [3932] =    "Sketh'lon Base Camp",
  2197.     [3933] =    "Sketh'lon Wreckage",
  2198.     [3934] =    "Town Square",
  2199.     [3935] =    "Wizard Row",
  2200.     [3936] =    "Deathforge Tower",
  2201.     [3937] =    "Slag Watch",
  2202.     [3938] =    "Sanctum of the Stars",
  2203.     [3939] =    "Dragonmaw Fortress",
  2204.     [3940] =    "The Fetid Pool",
  2205.     [3941] =    "Test",
  2206.     [3942] =    "Razaan's Landing",
  2207.     [3943] =    "Invasion Point: Cataclysm",
  2208.     [3944] =    "The Altar of Shadows",
  2209.     [3945] =    "Netherwing Pass",
  2210.     [3946] =    "Wayne's Refuge",
  2211.     [3947] =    "The Scalding Pools",
  2212.     [3948] =    "Brian and Pat Test",
  2213.     [3949] =    "Magma Fields",
  2214.     [3950] =    "Crimson Watch",
  2215.     [3951] =    "Evergrove",
  2216.     [3952] =    "Wyrmskull Bridge",
  2217.     [3953] =    "Scalewing Shelf",
  2218.     [3954] =    "Wyrmskull Tunnel",
  2219.     [3955] =    "Hellfire Basin",
  2220.     [3956] =    "The Shadow Stair",
  2221.     [3957] =    "Sha'tari Outpost",
  2222.     [3958] =    "Sha'tari Base Camp",
  2223.     [3959] =    "Black Temple",
  2224.     [3960] =    "Soulgrinder's Barrow",
  2225.     [3961] =    "Sorrow Wing Point",
  2226.     [3962] =    "Vim'gol's Circle",
  2227.     [3963] =    "Dragonspine Ridge",
  2228.     [3964] =    "Skyguard Outpost",
  2229.     [3965] =    "Netherwing Mines",
  2230.     [3966] =    "Dragonmaw Base Camp",
  2231.     [3967] =    "Dragonmaw Skyway",
  2232.     [3968] =    "Ruins of Lordaeron",
  2233.     [3969] =    "Rivendark's Perch",
  2234.     [3970] =    "Obsidia's Perch",
  2235.     [3971] =    "Insidion's Perch",
  2236.     [3972] =    "Furywing's Perch",
  2237.     [3973] =    "Blackwind Landing",
  2238.     [3974] =    "Veil Harr'ik",
  2239.     [3975] =    "Terokk's Rest",
  2240.     [3976] =    "Veil Ala'rak",
  2241.     [3977] =    "Upper Veil Shil'ak",
  2242.     [3978] =    "Lower Veil Shil'ak",
  2243.     [3979] =    "The Frozen Sea",
  2244.     [3980] =    "Daggercap Bay",
  2245.     [3981] =    "Valgarde",
  2246.     [3982] =    "Wyrmskull Village",
  2247.     [3983] =    "Utgarde Keep",
  2248.     [3984] =    "Nifflevar",
  2249.     [3985] =    "Falls of Ymiron",
  2250.     [3986] =    "Echo Reach",
  2251.     [3987] =    "The Isle of Spears",
  2252.     [3988] =    "Kamagua",
  2253.     [3989] =    "Garvan's Reef",
  2254.     [3990] =    "Scalawag Point",
  2255.     [3991] =    "New Agamand",
  2256.     [3992] =    "The Ancient Lift",
  2257.     [3993] =    "Westguard Turret",
  2258.     [3994] =    "Halgrind",
  2259.     [3995] =    "The Laughing Stand",
  2260.     [3996] =    "Baelgun's Excavation Site",
  2261.     [3997] =    "Explorers' League Outpost",
  2262.     [3998] =    "Westguard Keep",
  2263.     [3999] =    "Steel Gate",
  2264.     [4000] =    "Vengeance Landing",
  2265.     [4001] =    "Baleheim",
  2266.     [4002] =    "Skorn",
  2267.     [4003] =    "Fort Wildervar",
  2268.     [4004] =    "Vileprey Village",
  2269.     [4005] =    "Ivald's Ruin",
  2270.     [4006] =    "Gjalerbron",
  2271.     [4007] =    "Tomb of the Lost Kings",
  2272.     [4008] =    "Shartuul's Transporter",
  2273.     [4009] =    "Illidari Training Grounds",
  2274.     [4010] =    "Mudsprocket",
  2275.     [4018] =    "Camp Winterhoof",
  2276.     [4019] =    "Development Land",
  2277.     [4020] =    "Mightstone Quarry",
  2278.     [4021] =    "Bloodspore Plains",
  2279.     [4022] =    "Gammoth",
  2280.     [4023] =    "Amber Ledge",
  2281.     [4024] =    "Coldarra",
  2282.     [4025] =    "The Westrift",
  2283.     [4026] =    "The Transitus Stair",
  2284.     [4027] =    "Coast of Echoes",
  2285.     [4028] =    "Riplash Strand",
  2286.     [4029] =    "Riplash Ruins",
  2287.     [4030] =    "Coast of Idols",
  2288.     [4031] =    "Pal'ea",
  2289.     [4032] =    "Valiance Keep",
  2290.     [4033] =    "Winterfin Village",
  2291.     [4034] =    "The Borean Wall",
  2292.     [4035] =    "The Geyser Fields",
  2293.     [4036] =    "Fizzcrank Pumping Station",
  2294.     [4037] =    "Taunka'le Village",
  2295.     [4038] =    "Magnamoth Caverns",
  2296.     [4039] =    "Coldrock Quarry",
  2297.     [4040] =    "Njord's Breath Bay",
  2298.     [4041] =    "Kaskala",
  2299.     [4042] =    "Transborea",
  2300.     [4043] =    "The Flood Plains",
  2301.     [4046] =    "Direhorn Post",
  2302.     [4047] =    "Nat's Landing",
  2303.     [4048] =    "Ember Clutch",
  2304.     [4049] =    "Tabetha's Farm",
  2305.     [4050] =    "Derelict Strand",
  2306.     [4051] =    "The Frozen Glade",
  2307.     [4052] =    "The Vibrant Glade",
  2308.     [4053] =    "The Twisted Glade",
  2309.     [4054] =    "Rivenwood",
  2310.     [4055] =    "Caldemere Lake",
  2311.     [4056] =    "Utgarde Catacombs",
  2312.     [4057] =    "Shield Hill",
  2313.     [4058] =    "Lake Cauldros",
  2314.     [4059] =    "Cauldros Isle",
  2315.     [4060] =    "Bleeding Vale",
  2316.     [4061] =    "Giants' Run",
  2317.     [4062] =    "Apothecary Camp",
  2318.     [4063] =    "Ember Spear Tower",
  2319.     [4064] =    "Shattered Straits",
  2320.     [4065] =    "Gjalerhorn",
  2321.     [4066] =    "Frostblade Peak",
  2322.     [4067] =    "Plaguewood Tower",
  2323.     [4068] =    "West Spear Tower",
  2324.     [4069] =    "North Spear Tower",
  2325.     [4070] =    "Chillmere Coast",
  2326.     [4071] =    "Whisper Gulch",
  2327.     [4072] =    "Sub zone",
  2328.     [4073] =    "Winter's Terrace",
  2329.     [4074] =    "The Waking Halls",
  2330.     [4075] =    "Sunwell Plateau",
  2331.     [4076] =    "Reuse Me 7",
  2332.     [4077] =    "Sorlof's Strand",
  2333.     [4078] =    "Razorthorn Rise",
  2334.     [4079] =    "Frostblade Pass",
  2335.     [4080] =    "Isle of Quel'Danas",
  2336.     [4081] =    "The Dawnchaser",
  2337.     [4082] =    "The Sin'loren",
  2338.     [4083] =    "Silvermoon's Pride",
  2339.     [4084] =    "The Bloodoath",
  2340.     [4085] =    "Shattered Sun Staging Area",
  2341.     [4086] =    "Sun's Reach Sanctum",
  2342.     [4087] =    "Sun's Reach Harbor",
  2343.     [4088] =    "Sun's Reach Armory",
  2344.     [4089] =    "Dawnstar Village",
  2345.     [4090] =    "The Dawning Square",
  2346.     [4091] =    "Greengill Coast",
  2347.     [4092] =    "The Dead Scar",
  2348.     [4093] =    "The Sun Forge",
  2349.     [4094] =    "Sunwell Plateau",
  2350.     [4095] =    "Magisters' Terrace",
  2351.     [4096] =    "Claytön's WoWEdit Land",
  2352.     [4097] =    "Winterfin Caverns",
  2353.     [4098] =    "Glimmer Bay",
  2354.     [4099] =    "Winterfin Retreat",
  2355.     [4100] =    "The Culling of Stratholme",
  2356.     [4101] =    "Sands of Nasam",
  2357.     [4102] =    "Krom's Landing",
  2358.     [4103] =    "Nasam's Talon",
  2359.     [4104] =    "Echo Cove",
  2360.     [4105] =    "Beryl Point",
  2361.     [4106] =    "Garrosh's Landing",
  2362.     [4107] =    "Warsong Jetty",
  2363.     [4108] =    "Fizzcrank Airstrip",
  2364.     [4109] =    "Lake Kum'uya",
  2365.     [4110] =    "Farshire Fields",
  2366.     [4111] =    "Farshire",
  2367.     [4112] =    "Farshire Lighthouse",
  2368.     [4113] =    "Unu'pe",
  2369.     [4114] =    "Death's Stand",
  2370.     [4115] =    "The Abandoned Reach",
  2371.     [4116] =    "Scalding Pools",
  2372.     [4117] =    "Steam Springs",
  2373.     [4118] =    "Talramas",
  2374.     [4119] =    "Festering Pools",
  2375.     [4120] =    "The Nexus",
  2376.     [4121] =    "Transitus Shield",
  2377.     [4122] =    "Bor'gorok Outpost",
  2378.     [4123] =    "Magmoth",
  2379.     [4124] =    "The Dens of Dying",
  2380.     [4125] =    "Temple City of En'kilah",
  2381.     [4126] =    "The Wailing Ziggurat",
  2382.     [4127] =    "Steeljaw's Caravan",
  2383.     [4128] =    "Naxxanar",
  2384.     [4129] =    "Warsong Hold",
  2385.     [4130] =    "Plains of Nasam",
  2386.     [4131] =    "Magisters' Terrace",
  2387.     [4132] =    "Ruins of Eldra'nath",
  2388.     [4133] =    "Charred Rise",
  2389.     [4134] =    "Blistering Pool",
  2390.     [4135] =    "Spire of Blood",
  2391.     [4136] =    "Spire of Decay",
  2392.     [4137] =    "Spire of Pain",
  2393.     [4138] =    "Frozen Reach",
  2394.     [4139] =    "Parhelion Plaza",
  2395.     [4140] =    "The Dead Scar",
  2396.     [4141] =    "Torp's Farm",
  2397.     [4142] =    "Warsong Granary",
  2398.     [4143] =    "Warsong Slaughterhouse",
  2399.     [4144] =    "Warsong Farms Outpost",
  2400.     [4145] =    "West Point Station",
  2401.     [4146] =    "North Point Station",
  2402.     [4147] =    "Mid Point Station",
  2403.     [4148] =    "South Point Station",
  2404.     [4149] =    "D.E.H.T.A. Encampment",
  2405.     [4150] =    "Kaw's Roost",
  2406.     [4151] =    "Westwind Refugee Camp",
  2407.     [4152] =    "Moa'ki Harbor",
  2408.     [4153] =    "Indu'le Village",
  2409.     [4154] =    "Snowfall Glade",
  2410.     [4155] =    "The Half Shell",
  2411.     [4156] =    "Surge Needle",
  2412.     [4157] =    "Moonrest Gardens",
  2413.     [4158] =    "Stars' Rest",
  2414.     [4159] =    "Westfall Brigade Encampment",
  2415.     [4160] =    "Lothalor Woodlands",
  2416.     [4161] =    "Wyrmrest Temple",
  2417.     [4162] =    "Icemist Falls",
  2418.     [4163] =    "Icemist Village",
  2419.     [4164] =    "The Pit of Narjun",
  2420.     [4165] =    "Agmar's Hammer",
  2421.     [4166] =    "Lake Indu'le",
  2422.     [4167] =    "Obsidian Dragonshrine",
  2423.     [4168] =    "Ruby Dragonshrine",
  2424.     [4169] =    "Fordragon Hold",
  2425.     [4170] =    "Kor'kron Vanguard",
  2426.     [4171] =    "The Court of Skulls",
  2427.     [4172] =    "Angrathar the Wrathgate",
  2428.     [4173] =    "Galakrond's Rest",
  2429.     [4174] =    "The Wicked Coil",
  2430.     [4175] =    "Bronze Dragonshrine",
  2431.     [4176] =    "The Mirror of Dawn",
  2432.     [4177] =    "Wintergarde Keep",
  2433.     [4178] =    "Wintergarde Mine",
  2434.     [4179] =    "Emerald Dragonshrine",
  2435.     [4180] =    "New Hearthglen",
  2436.     [4181] =    "Crusader's Landing",
  2437.     [4182] =    "Sinner's Folly",
  2438.     [4183] =    "Azure Dragonshrine",
  2439.     [4184] =    "Path of the Titans",
  2440.     [4185] =    "The Forgotten Shore",
  2441.     [4186] =    "Venomspite",
  2442.     [4187] =    "The Crystal Vice",
  2443.     [4188] =    "The Carrion Fields",
  2444.     [4189] =    "Onslaught Base Camp",
  2445.     [4190] =    "Thorson's Post",
  2446.     [4191] =    "Light's Trust",
  2447.     [4192] =    "Frostmourne Cavern",
  2448.     [4193] =    "Scarlet Point",
  2449.     [4194] =    "Jintha'kalar",
  2450.     [4195] =    "Ice Heart Cavern",
  2451.     [4196] =    "Drak'Tharon Keep",
  2452.     [4197] =    "Wintergrasp",
  2453.     [4198] =    "Kili'ua's Atoll",
  2454.     [4199] =    "Silverbrook",
  2455.     [4200] =    "Vordrassil's Heart",
  2456.     [4201] =    "Vordrassil's Tears",
  2457.     [4202] =    "Vordrassil's Tears",
  2458.     [4203] =    "Vordrassil's Limb",
  2459.     [4204] =    "Amberpine Lodge",
  2460.     [4205] =    "Solstice Village",
  2461.     [4206] =    "Conquest Hold",
  2462.     [4207] =    "Voldrune",
  2463.     [4208] =    "Granite Springs",
  2464.     [4209] =    "Zeb'Halak",
  2465.     [4210] =    "Drak'Tharon Keep",
  2466.     [4211] =    "Camp Oneqwah",
  2467.     [4212] =    "Eastwind Shore",
  2468.     [4213] =    "The Broken Bluffs",
  2469.     [4214] =    "Boulder Hills",
  2470.     [4215] =    "Rage Fang Shrine",
  2471.     [4216] =    "Drakil'jin Ruins",
  2472.     [4217] =    "Blackriver Logging Camp",
  2473.     [4218] =    "Heart's Blood Shrine",
  2474.     [4219] =    "Hollowstone Mine",
  2475.     [4220] =    "Dun Argol",
  2476.     [4221] =    "Thor Modan",
  2477.     [4222] =    "Blue Sky Logging Grounds",
  2478.     [4223] =    "Maw of Neltharion",
  2479.     [4224] =    "The Briny Pinnacle",
  2480.     [4225] =    "Glittering Strand",
  2481.     [4226] =    "Iskaal",
  2482.     [4227] =    "Dragon's Fall",
  2483.     [4228] =    "The Oculus",
  2484.     [4229] =    "Prospector's Point",
  2485.     [4230] =    "Coldwind Heights",
  2486.     [4231] =    "Redwood Trading Post",
  2487.     [4232] =    "Vengeance Pass",
  2488.     [4233] =    "Dawn's Reach",
  2489.     [4234] =    "Naxxramas",
  2490.     [4235] =    "Heartwood Trading Post",
  2491.     [4236] =    "Evergreen Trading Post",
  2492.     [4237] =    "Spruce Point Post",
  2493.     [4238] =    "White Pine Trading Post",
  2494.     [4239] =    "Aspen Grove Post",
  2495.     [4240] =    "Forest's Edge Post",
  2496.     [4241] =    "Eldritch Heights",
  2497.     [4242] =    "Venture Bay",
  2498.     [4243] =    "Wintergarde Crypt",
  2499.     [4244] =    "Bloodmoon Isle",
  2500.     [4245] =    "Shadowfang Tower",
  2501.     [4246] =    "Wintergarde Mausoleum",
  2502.     [4247] =    "Duskhowl Den",
  2503.     [4248] =    "The Conquest Pit",
  2504.     [4249] =    "The Path of Iron",
  2505.     [4250] =    "Ruins of Tethys",
  2506.     [4251] =    "Silverbrook Hills",
  2507.     [4252] =    "The Broken Bluffs",
  2508.     [4253] =    "7th Legion Front",
  2509.     [4254] =    "The Dragon Wastes",
  2510.     [4255] =    "Ruins of Drak'Zin",
  2511.     [4256] =    "Drak'Mar Lake",
  2512.     [4257] =    "Dragonspine Tributary",
  2513.     [4258] =    "The North Sea",
  2514.     [4259] =    "Drak'ural",
  2515.     [4260] =    "Thorvald's Camp",
  2516.     [4261] =    "Ghostblade Post",
  2517.     [4262] =    "Ashwood Post",
  2518.     [4263] =    "Lydell's Ambush",
  2519.     [4264] =    "Halls of Stone",
  2520.     [4265] =    "The Nexus",
  2521.     [4266] =    "Harkor's Camp",
  2522.     [4267] =    "Vordrassil Pass",
  2523.     [4268] =    "Ruuna's Camp",
  2524.     [4269] =    "Shrine of Scales",
  2525.     [4270] =    "Drak'atal Passage",
  2526.     [4271] =    "Utgarde Pinnacle",
  2527.     [4272] =    "Halls of Lightning",
  2528.     [4273] =    "Ulduar",
  2529.     [4275] =    "The Argent Stand",
  2530.     [4276] =    "Altar of Sseratus",
  2531.     [4277] =    "Azjol-Nerub",
  2532.     [4278] =    "Drak'Sotra Fields",
  2533.     [4279] =    "Drak'Sotra",
  2534.     [4280] =    "Drak'Agal",
  2535.     [4281] =    "Acherus: The Ebon Hold",
  2536.     [4282] =    "The Avalanche",
  2537.     [4283] =    "The Lost Lands",
  2538.     [4284] =    "Nesingwary Base Camp",
  2539.     [4285] =    "The Seabreach Flow",
  2540.     [4286] =    "The Bones of Nozronn",
  2541.     [4287] =    "Kartak's Hold",
  2542.     [4288] =    "Sparktouched Haven",
  2543.     [4289] =    "The Path of the Lifewarden",
  2544.     [4290] =    "River's Heart",
  2545.     [4291] =    "Rainspeaker Canopy",
  2546.     [4292] =    "Frenzyheart Hill",
  2547.     [4293] =    "Wildgrowth Mangal",
  2548.     [4294] =    "Heb'Valok",
  2549.     [4295] =    "The Sundered Shard",
  2550.     [4296] =    "The Lifeblood Pillar",
  2551.     [4297] =    "Mosswalker Village",
  2552.     [4298] =    "Plaguelands: The Scarlet Enclave",
  2553.     [4299] =    "Kolramas",
  2554.     [4300] =    "Waygate",
  2555.     [4302] =    "The Skyreach Pillar",
  2556.     [4303] =    "Hardknuckle Clearing",
  2557.     [4304] =    "Sapphire Hive",
  2558.     [4306] =    "Mistwhisper Refuge",
  2559.     [4307] =    "The Glimmering Pillar",
  2560.     [4308] =    "Spearborn Encampment",
  2561.     [4309] =    "Drak'Tharon Keep",
  2562.     [4310] =    "Zeramas",
  2563.     [4311] =    "Reliquary of Agony",
  2564.     [4312] =    "Ebon Watch",
  2565.     [4313] =    "Thrym's End",
  2566.     [4314] =    "Voltarus",
  2567.     [4315] =    "Reliquary of Pain",
  2568.     [4316] =    "Rageclaw Den",
  2569.     [4317] =    "Light's Breach",
  2570.     [4318] =    "Pools of Zha'Jin",
  2571.     [4319] =    "Zim'Abwa",
  2572.     [4320] =    "Amphitheater of Anguish",
  2573.     [4321] =    "Altar of Rhunok",
  2574.     [4322] =    "Altar of Har'koa",
  2575.     [4323] =    "Zim'Torga",
  2576.     [4324] =    "Pools of Jin'Alai",
  2577.     [4325] =    "Altar of Quetz'lun",
  2578.     [4326] =    "Heb'Drakkar",
  2579.     [4327] =    "Drak'Mabwa",
  2580.     [4328] =    "Zim'Rhuk",
  2581.     [4329] =    "Altar of Mam'toth",
  2582.     [4342] =    "Acherus: The Ebon Hold",
  2583.     [4343] =    "New Avalon",
  2584.     [4344] =    "New Avalon Fields",
  2585.     [4345] =    "New Avalon Orchard",
  2586.     [4346] =    "New Avalon Town Hall",
  2587.     [4347] =    "Havenshire",
  2588.     [4348] =    "Havenshire Farms",
  2589.     [4349] =    "Havenshire Lumber Mill",
  2590.     [4350] =    "Havenshire Stables",
  2591.     [4351] =    "Scarlet Hold",
  2592.     [4352] =    "Chapel of the Crimson Flame",
  2593.     [4353] =    "Light's Point Tower",
  2594.     [4354] =    "Light's Point",
  2595.     [4355] =    "Crypt of Remembrance",
  2596.     [4356] =    "Death's Breach",
  2597.     [4357] =    "The Noxious Glade",
  2598.     [4358] =    "Tyr's Hand",
  2599.     [4359] =    "King's Harbor",
  2600.     [4360] =    "Scarlet Overlook",
  2601.     [4361] =    "Light's Hope Chapel",
  2602.     [4362] =    "Sinner's Folly",
  2603.     [4363] =    "Pestilent Scar",
  2604.     [4364] =    "Browman Mill",
  2605.     [4365] =    "Havenshire Mine",
  2606.     [4366] =    "Ursoc's Den",
  2607.     [4367] =    "The Blight Line",
  2608.     [4368] =    "The Bonefields",
  2609.     [4369] =    "Dorian's Outpost",
  2610.     [4371] =    "Mam'toth Crater",
  2611.     [4372] =    "Zol'Maz Stronghold",
  2612.     [4373] =    "Zol'Heb",
  2613.     [4374] =    "Rageclaw Lake",
  2614.     [4375] =    "Gundrak",
  2615.     [4376] =    "The Savage Thicket",
  2616.     [4377] =    "New Avalon Forge",
  2617.     [4378] =    "Dalaran Arena",
  2618.     [4379] =    "Valgarde",
  2619.     [4380] =    "Westguard Inn",
  2620.     [4381] =    "Waygate",
  2621.     [4382] =    "The Shaper's Terrace",
  2622.     [4383] =    "Lakeside Landing",
  2623.     [4384] =    "Strand of the Ancients",
  2624.     [4385] =    "Bittertide Lake",
  2625.     [4386] =    "Rainspeaker Rapids",
  2626.     [4387] =    "Frenzyheart River",
  2627.     [4388] =    "Wintergrasp River",
  2628.     [4389] =    "The Suntouched Pillar",
  2629.     [4390] =    "Frigid Breach",
  2630.     [4391] =    "Swindlegrin's Dig",
  2631.     [4392] =    "The Stormwright's Shelf",
  2632.     [4393] =    "Death's Hand Encampment",
  2633.     [4394] =    "Scarlet Tavern",
  2634.     [4395] =    "Dalaran",
  2635.     [4396] =    "Nozzlerust Post",
  2636.     [4399] =    "Farshire Mine",
  2637.     [4400] =    "The Mosslight Pillar",
  2638.     [4401] =    "Saragosa's Landing",
  2639.     [4402] =    "Vengeance Lift",
  2640.     [4403] =    "Balejar Watch",
  2641.     [4404] =    "New Agamand Inn",
  2642.     [4405] =    "Passage of Lost Fiends",
  2643.     [4406] =    "The Ring of Valor",
  2644.     [4407] =    "Hall of the Frostwolf",
  2645.     [4408] =    "Hall of the Stormpike",
  2646.     [4411] =    "Stormwind Harbor",
  2647.     [4412] =    "The Makers' Overlook",
  2648.     [4413] =    "The Makers' Perch",
  2649.     [4414] =    "Scarlet Tower",
  2650.     [4415] =    "The Violet Hold",
  2651.     [4416] =    "Gundrak",
  2652.     [4417] =    "Onslaught Harbor",
  2653.     [4418] =    "K3",
  2654.     [4419] =    "Snowblind Hills",
  2655.     [4420] =    "Snowblind Terrace",
  2656.     [4421] =    "Garm",
  2657.     [4422] =    "Brunnhildar Village",
  2658.     [4423] =    "Sifreldar Village",
  2659.     [4424] =    "Valkyrion",
  2660.     [4425] =    "The Forlorn Mine",
  2661.     [4426] =    "Bor's Breath River",
  2662.     [4427] =    "Argent Vanguard",
  2663.     [4428] =    "Frosthold",
  2664.     [4429] =    "Grom'arsh Crash-Site",
  2665.     [4430] =    "Temple of Storms",
  2666.     [4431] =    "Engine of the Makers",
  2667.     [4432] =    "The Foot Steppes",
  2668.     [4433] =    "Dragonspine Peaks",
  2669.     [4434] =    "Nidavelir",
  2670.     [4435] =    "Narvir's Cradle",
  2671.     [4436] =    "Snowdrift Plains",
  2672.     [4437] =    "Valley of Ancient Winters",
  2673.     [4438] =    "Dun Niffelem",
  2674.     [4439] =    "Frostfield Lake",
  2675.     [4440] =    "Thunderfall",
  2676.     [4441] =    "Camp Tunka'lo",
  2677.     [4442] =    "Brann's Base-Camp",
  2678.     [4443] =    "Gate of Echoes",
  2679.     [4444] =    "Plain of Echoes",
  2680.     [4445] =    "Ulduar",
  2681.     [4446] =    "Terrace of the Makers",
  2682.     [4447] =    "Gate of Lightning",
  2683.     [4448] =    "Path of the Titans",
  2684.     [4449] =    "Uldis",
  2685.     [4450] =    "Loken's Bargain",
  2686.     [4451] =    "Bor's Fall",
  2687.     [4452] =    "Bor's Breath",
  2688.     [4453] =    "Rohemdal Pass",
  2689.     [4454] =    "The Storm Foundry",
  2690.     [4455] =    "Hibernal Cavern",
  2691.     [4456] =    "Voldrune Dwelling",
  2692.     [4457] =    "Torseg's Rest",
  2693.     [4458] =    "Sparksocket Minefield",
  2694.     [4459] =    "Ricket's Folly",
  2695.     [4460] =    "Garm's Bane",
  2696.     [4461] =    "Garm's Rise",
  2697.     [4462] =    "Crystalweb Cavern",
  2698.     [4463] =    "Temple of Life",
  2699.     [4464] =    "Temple of Order",
  2700.     [4465] =    "Temple of Winter",
  2701.     [4466] =    "Temple of Invention",
  2702.     [4467] =    "Death's Rise",
  2703.     [4468] =    "The Dead Fields",
  2704.     [4469] =    "Dargath's Demise",
  2705.     [4470] =    "The Hidden Hollow",
  2706.     [4471] =    "Bernau's Happy Fun Land",
  2707.     [4472] =    "Frostgrip's Hollow",
  2708.     [4473] =    "The Frigid Tomb",
  2709.     [4474] =    "Twin Shores",
  2710.     [4475] =    "Zim'bo's Hideout",
  2711.     [4476] =    "Abandoned Camp",
  2712.     [4477] =    "The Shadow Vault",
  2713.     [4478] =    "Coldwind Pass",
  2714.     [4479] =    "Winter's Breath Lake",
  2715.     [4480] =    "The Forgotten Overlook",
  2716.     [4481] =    "Jintha'kalar Passage",
  2717.     [4482] =    "Arriga Footbridge",
  2718.     [4483] =    "The Lost Passage",
  2719.     [4484] =    "Bouldercrag's Refuge",
  2720.     [4485] =    "The Inventor's Library",
  2721.     [4486] =    "The Frozen Mine",
  2722.     [4487] =    "Frostfloe Deep",
  2723.     [4488] =    "The Howling Hollow",
  2724.     [4489] =    "Crusader Forward Camp",
  2725.     [4490] =    "Stormcrest",
  2726.     [4491] =    "Bonesnap's Camp",
  2727.     [4492] =    "Ufrang's Hall",
  2728.     [4493] =    "The Obsidian Sanctum",
  2729.     [4494] =    "Ahn'kahet: The Old Kingdom",
  2730.     [4495] =    "Fjorn's Anvil",
  2731.     [4496] =    "Jotunheim",
  2732.     [4497] =    "Savage Ledge",
  2733.     [4498] =    "Halls of the Ancestors",
  2734.     [4499] =    "The Blighted Pool",
  2735.     [4500] =    "The Eye of Eternity",
  2736.     [4501] =    "The Argent Vanguard",
  2737.     [4502] =    "Mimir's Workshop",
  2738.     [4503] =    "Ironwall Dam",
  2739.     [4504] =    "Valley of Echoes",
  2740.     [4505] =    "The Breach",
  2741.     [4506] =    "Scourgeholme",
  2742.     [4507] =    "The Broken Front",
  2743.     [4508] =    "Mord'rethar: The Death Gate",
  2744.     [4509] =    "The Bombardment",
  2745.     [4510] =    "Aldur'thar: The Desolation Gate",
  2746.     [4511] =    "The Skybreaker",
  2747.     [4512] =    "Orgrim's Hammer",
  2748.     [4513] =    "Ymirheim",
  2749.     [4514] =    "Saronite Mines",
  2750.     [4515] =    "The Conflagration",
  2751.     [4516] =    "Ironwall Rampart",
  2752.     [4517] =    "Weeping Quarry",
  2753.     [4518] =    "Corp'rethar: The Horror Gate",
  2754.     [4519] =    "The Court of Bones",
  2755.     [4520] =    "Malykriss: The Vile Hold",
  2756.     [4521] =    "Cathedral of Darkness",
  2757.     [4522] =    "Icecrown Citadel",
  2758.     [4523] =    "Icecrown Glacier",
  2759.     [4524] =    "Valhalas",
  2760.     [4525] =    "The Underhalls",
  2761.     [4526] =    "Njorndar Village",
  2762.     [4527] =    "Balargarde Fortress",
  2763.     [4528] =    "Kul'galar Keep",
  2764.     [4529] =    "The Crimson Cathedral",
  2765.     [4530] =    "Sanctum of Reanimation",
  2766.     [4531] =    "The Fleshwerks",
  2767.     [4532] =    "Vengeance Landing Inn",
  2768.     [4533] =    "Sindragosa's Fall",
  2769.     [4534] =    "Wildervar Mine",
  2770.     [4535] =    "The Pit of the Fang",
  2771.     [4536] =    "Frosthowl Cavern",
  2772.     [4537] =    "The Valley of Lost Hope",
  2773.     [4538] =    "The Sunken Ring",
  2774.     [4539] =    "The Broken Temple",
  2775.     [4540] =    "The Valley of Fallen Heroes",
  2776.     [4541] =    "Vanguard Infirmary",
  2777.     [4542] =    "Hall of the Shaper",
  2778.     [4543] =    "Temple of Wisdom",
  2779.     [4544] =    "Death's Breach",
  2780.     [4545] =    "Abandoned Mine",
  2781.     [4546] =    "Ruins of the Scarlet Enclave",
  2782.     [4547] =    "Halls of Stone",
  2783.     [4548] =    "Halls of Lightning",
  2784.     [4549] =    "The Great Tree",
  2785.     [4550] =    "The Mirror of Twilight",
  2786.     [4551] =    "The Twilight Rivulet",
  2787.     [4552] =    "The Decrepit Flow",
  2788.     [4553] =    "Forlorn Woods",
  2789.     [4554] =    "Ruins of Shandaral",
  2790.     [4555] =    "The Azure Front",
  2791.     [4556] =    "Violet Stand",
  2792.     [4557] =    "The Unbound Thicket",
  2793.     [4558] =    "Sunreaver's Command",
  2794.     [4559] =    "Windrunner's Overlook",
  2795.     [4560] =    "The Underbelly",
  2796.     [4564] =    "Krasus' Landing",
  2797.     [4567] =    "The Violet Hold",
  2798.     [4568] =    "The Eventide",
  2799.     [4569] =    "Sewer Exit Pipe",
  2800.     [4570] =    "Circle of Wills",
  2801.     [4571] =    "Silverwing Flag Room",
  2802.     [4572] =    "Warsong Flag Room",
  2803.     [4575] =    "Wintergrasp Fortress",
  2804.     [4576] =    "Central Bridge",
  2805.     [4577] =    "Eastern Bridge",
  2806.     [4578] =    "Western Bridge",
  2807.     [4579] =    "Dubra'Jin",
  2808.     [4580] =    "Crusaders' Pinnacle",
  2809.     [4581] =    "Flamewatch Tower",
  2810.     [4582] =    "Winter's Edge Tower",
  2811.     [4583] =    "Shadowsight Tower",
  2812.     [4584] =    "The Cauldron of Flames",
  2813.     [4585] =    "Glacial Falls",
  2814.     [4586] =    "Windy Bluffs",
  2815.     [4587] =    "The Forest of Shadows",
  2816.     [4588] =    "Blackwatch",
  2817.     [4589] =    "The Chilled Quagmire",
  2818.     [4590] =    "The Steppe of Life",
  2819.     [4591] =    "Silent Vigil",
  2820.     [4592] =    "Gimorak's Den",
  2821.     [4593] =    "The Pit of Fiends",
  2822.     [4594] =    "Battlescar Spire",
  2823.     [4595] =    "Hall of Horrors",
  2824.     [4596] =    "The Circle of Suffering",
  2825.     [4597] =    "Rise of Suffering",
  2826.     [4598] =    "Krasus' Landing",
  2827.     [4599] =    "Sewer Exit Pipe",
  2828.     [4601] =    "Dalaran Island",
  2829.     [4602] =    "Force Interior",
  2830.     [4603] =    "Vault of Archavon",
  2831.     [4604] =    "Gate of the Red Sun",
  2832.     [4605] =    "Gate of the Blue Sapphire",
  2833.     [4606] =    "Gate of the Green Emerald",
  2834.     [4607] =    "Gate of the Purple Amethyst",
  2835.     [4608] =    "Gate of the Yellow Moon",
  2836.     [4609] =    "Courtyard of the Ancients",
  2837.     [4610] =    "Landing Beach",
  2838.     [4611] =    "Westspark Workshop",
  2839.     [4612] =    "Eastspark Workshop",
  2840.     [4613] =    "Dalaran City",
  2841.     [4614] =    "The Violet Citadel Spire",
  2842.     [4615] =    "Naz'anak: The Forgotten Depths",
  2843.     [4616] =    "Sunreaver's Sanctuary",
  2844.     [4617] =    "Elevator",
  2845.     [4618] =    "Antonidas Memorial",
  2846.     [4619] =    "The Violet Citadel",
  2847.     [4620] =    "Magus Commerce Exchange",
  2848.     [4621] =    "UNUSED",
  2849.     [4622] =    "First Legion Forward Camp",
  2850.     [4623] =    "Hall of the Conquered Kings",
  2851.     [4624] =    "Befouled Terrace",
  2852.     [4625] =    "The Desecrated Altar",
  2853.     [4626] =    "Shimmering Bog",
  2854.     [4627] =    "Fallen Temple of Ahn'kahet",
  2855.     [4628] =    "Halls of Binding",
  2856.     [4629] =    "Winter's Heart",
  2857.     [4630] =    "The North Sea",
  2858.     [4631] =    "The Broodmother's Nest",
  2859.     [4632] =    "Dalaran Floating Rocks",
  2860.     [4633] =    "Raptor Pens",
  2861.     [4635] =    "Drak'Tharon Keep",
  2862.     [4636] =    "The Noxious Pass",
  2863.     [4637] =    "Vargoth's Retreat",
  2864.     [4638] =    "Violet Citadel Balcony",
  2865.     [4639] =    "Band of Variance",
  2866.     [4640] =    "Band of Acceleration",
  2867.     [4641] =    "Band of Transmutation",
  2868.     [4642] =    "Band of Alignment",
  2869.     [4646] =    "Ashwood Lake",
  2870.     [4650] =    "Iron Concourse",
  2871.     [4652] =    "Formation Grounds",
  2872.     [4653] =    "Razorscale's Aerie",
  2873.     [4654] =    "The Colossal Forge",
  2874.     [4655] =    "The Scrapyard",
  2875.     [4656] =    "The Conservatory of Life",
  2876.     [4657] =    "The Archivum",
  2877.     [4658] =    "Argent Tournament Grounds",
  2878.     [4665] =    "Expedition Base Camp",
  2879.     [4666] =    "Sunreaver Pavilion",
  2880.     [4667] =    "Silver Covenant Pavilion",
  2881.     [4668] =    "The Cooper Residence",
  2882.     [4669] =    "The Ring of Champions",
  2883.     [4670] =    "The Aspirants' Ring",
  2884.     [4671] =    "The Argent Valiants' Ring",
  2885.     [4672] =    "The Alliance Valiants' Ring",
  2886.     [4673] =    "The Horde Valiants' Ring",
  2887.     [4674] =    "Argent Pavilion",
  2888.     [4676] =    "Sunreaver Pavilion",
  2889.     [4677] =    "Silver Covenant Pavilion",
  2890.     [4679] =    "The Forlorn Cavern",
  2891.     [4688] =    "claytonio test area",
  2892.     [4692] =    "Quel'Delar's Rest",
  2893.     [4710] =    "Isle of Conquest",
  2894.     [4722] =    "Trial of the Crusader",
  2895.     [4723] =    "Trial of the Champion",
  2896.     [4739] =    "Runeweaver Square",
  2897.     [4740] =    "The Silver Enclave",
  2898.     [4741] =    "Isle of Conquest No Man's Land",
  2899.     [4742] =    "Hrothgar's Landing",
  2900.     [4743] =    "Deathspeaker's Watch",
  2901.     [4747] =    "Workshop",
  2902.     [4748] =    "Quarry",
  2903.     [4749] =    "Docks",
  2904.     [4750] =    "Hangar",
  2905.     [4751] =    "Refinery",
  2906.     [4752] =    "Horde Keep",
  2907.     [4753] =    "Alliance Keep",
  2908.     [4760] =    "The Sea Reaver's Run",
  2909.     [4763] =    "Transport: Alliance Gunship",
  2910.     [4764] =    "Transport: Horde Gunship",
  2911.     [4769] =    "Hrothgar's Landing",
  2912.     [4809] =    "The Forge of Souls",
  2913.     [4812] =    "Icecrown Citadel",
  2914.     [4813] =    "Pit of Saron",
  2915.     [4820] =    "Halls of Reflection",
  2916.     [4832] =    "Transport: Alliance Gunship (IGB)",
  2917.     [4833] =    "Transport: Horde Gunship (IGB)",
  2918.     [4859] =    "The Frozen Throne",
  2919.     [4862] =    "The Frozen Halls",
  2920.     [4889] =    "The Frost Queen's Lair",
  2921.     [4890] =    "Putricide's Laboratory of Alchemical Horrors and Fun",
  2922.     [4891] =    "The Sanctum of Blood",
  2923.     [4892] =    "The Crimson Hall",
  2924.     [4893] =    "The Frost Queen's Lair",
  2925.     [4894] =    "Putricide's Laboratory of Alchemical Horrors and Fun",
  2926.     [4895] =    "The Crimson Hall",
  2927.     [4896] =    "The Frozen Throne",
  2928.     [4897] =    "The Sanctum of Blood",
  2929.     [4898] =    "Frostmourne",
  2930.     [4904] =    "The Dark Approach",
  2931.     [4905] =    "Scourgelord's Command",
  2932.     [4906] =    "The Shadow Throne",
  2933.     [4908] =    "The Hidden Passage",
  2934.     [4910] =    "Frostmourne",
  2935.     [4987] =    "The Ruby Sanctum",
  2936. }
  2937.  
  2938. RegisterServerHook(2, Kill)
  2939. RegisterServerHook(19, LogIn)
  2940. RegisterServerHook(13, LogOut)
  2941. RegisterUnitGossipEvent(Entry, 1, Hello)
  2942. RegisterUnitGossipEvent(Entry, 2, Select)
  2943. RegisterUnitEvent(Entry, 18, function(pUnit) pUnit:RegisterEvent(function() for Victim, Hunter in pairs(B) do Game(Victim); end; end, 60000, 0); end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement